pax_global_header00006660000000000000000000000064126571660470014530gustar00rootroot0000000000000052 comment=777fef5287218003fecb2d2d55a7b23bdbf3acf6 tweepy-3.5.0/000077500000000000000000000000001265716604700130525ustar00rootroot00000000000000tweepy-3.5.0/.coveragerc000066400000000000000000000001131265716604700151660ustar00rootroot00000000000000[run] source = tweepy [report] omit = */python?.?/* */site-packages/* tweepy-3.5.0/.gitignore000066400000000000000000000001271265716604700150420ustar00rootroot00000000000000*.pyc *.swp env.sh .coverage .env .idea .pdbrc .tox build dist htmlcov tweepy.egg-info tweepy-3.5.0/.travis.yml000066400000000000000000000034241265716604700151660ustar00rootroot00000000000000sudo: false language: python python: - '2.6' - '2.7' - '3.3' - '3.4' - '3.5' env: global: - TWITTER_USERNAME="tweepytest" - AWS_BUCKET="tweepy" - USE_REPLAY=1 - secure: ! 'MZv5O5E5E1074sT14wnRThOeFoDTZy+AdIUy+S6XqY/DMVWF2utSx09GLbvM EM+cnKavRLHTbKpoHPIzzhKx9DQLrxtYy+s3Rw9AeGo8K3LA7mcn4T4eCH7s RGaEkEqH4wTbe01zsmBJ9n9pALmtFgDk9WeDlpAY9wc5cAPgrZ4=' - secure: ! 'f4nCh413cDJF3llGsUdaSz8Rw8WaEDzsSAqa7rK8IcozvS6+S82nm8A/xKYg i6A6uC081XWa6JqQ9hyTxHam3OWGAYrytELrEUfkX4ZYMM8lmQYCmnhrN9r/ FaX1haT4lRfm9r0zAYZileLVmcTg8LSZzpRowA/DH9ZO8QD76b4=' - secure: ! 'YxZerqEAifcNS3qTbWyr2MAxDl1hMGv2p87nmw+AHP62LoTGEhHtulQdadjG CNdhLzyIY+GgRotWVu39OfVPRKyfMBFrpPdUY7tKSZ/O8Ct9792mrSvCOpOV Li/TYytFtrNQiB7yjcoaub1RabffBcLbu5YzbWN4gPrukQV03Jc=' - secure: ! 'nKkytraqLGUm33K1GpwkjOyxACDHYw4GMvOGyDwVTX7VNwqxbkUojB7qXYoQ JjlEyFWS487IFteR87U9pt18qongJJIphaBdT9/lDVLsMWZ0Jh5ZLQfX+2jS aF2UwsrYkzBUMrqMqYCc2+X6CuswLEZTVXDAlNh+emvhxZ5faMI=' - secure: TPQSFGqdl6khXqQqTZ6euROoAmFRnONAlPXD6npvTIIN+fNfnz8lvZtOEWHo2jRPLoU3FyVUhYvTynj6B2hJinulP+RKOMbQ65HCZVHrsitwl1n1QZB5HegQDOYc5q6VTTYn/r8r5tGy35U0O80y1zycTLqSJiXlkdqsSq564pI= install: - pip install -r test_requirements.txt -r requirements.txt - pip install coveralls script: - nosetests -v --with-coverage -c tests/travis-tests.cfg after_success: - if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then coveralls; fi before_deploy: - pip install twine deploy: provider: pypi user: jroesslein password: secure: agApkjsKOSkFI6DiNydyW26r8ASFsTsFK/RHsV1F7CqoERoeAaRAehYy9EGW2Jn2aJzNlagDByfh5xNfClXuRh0GoEfOyjj5AmBm4hMrzc3bwsH+IPU3OQhQtS3aFGNmIkaz2Bz+Dcl5zTmV914N3mqcoGpyMtxyn1Hwc0Xgn6Q= distributions: sdist bdist_wheel on: repo: tweepy/tweepy tags: true matrix: fast_finish: true tweepy-3.5.0/ASCII_LOGO.txt000066400000000000000000000004071265716604700152640ustar00rootroot00000000000000 ______ /_ __/_ __ ___ ___ ____ __ __ / / | | /| / // _ \ / _ \ / __ \ / / / / / / | |/ |/ // __// __// /_/ // /_/ / /_/ |__/|__/ \___/ \___// .___/ \__, / /_/ /____/ tweepy-3.5.0/CHANGELOG.md000066400000000000000000000106351265716604700146700ustar00rootroot00000000000000See https://github.com/tweepy/tweepy/releases for change logs. Version 3.3.0 ------------- - Loosen our dependency requirements for Requests (>= 2.4.3) - Fix issue with streams freezing up on Python 3 (Issue #556) - Add keep_alive() callback to StreamListener when keep alive messages arrive - Fix issue with stream session headers not being used when restarting connection - Fix issue with streams getting stuck in a loop when connection dies. (PR #561) Version 3.2.0 ------------- - Remove deprecated trends methods. - Fix tweepy.debug() to work in Python 3. - Fixed issue #529 - StreamListener language filter stopped working. - Add Documentation Page for streaming. - Add media/upload endpoint. - Add media_ids parameter to update_status(). Version 3.1.0 ------------- - Allow specifying your own ssl certificates for streaming client. - Distribute Python Wheels instead of dumb binaries. - Fix cursor invocation, passing args to underlying method. (https://github.com/tweepy/tweepy/issues/515) - Upgrade to Request 2.4.3 Version 3.0 ----------- - Added multiple list members operation api methods (add_list_members, remove_list_members). - Added sitestream endpoint. - Switch to using Requests instead of httplib. - Fully removed support for non-secure HTTP. - Proxy support. - Add API method for /statuses/lookup.json - Add missing 'count' parameter to followers_ids - Added allowed_param to update_profile_image - Comparison between Status objects - Extend on_data method by including a conditional to process warning messages and add the definition of the method to manage those warning messages - Better Python 3 support. Version 2.2 ----------- - Added update_profile_banner endpoint. - Don't treat HTTP status codes in 200 range as errors. - Tests no longer packaged into egg releases. - Improve test stability and enable CI testing on pull requests. - Removed Basic Auth. - Use built-in timeout feature of httplib to fix appengine. - Added retweeters() endpoint. - Removed deprecated retweeted_by and retweeted_by_ids. - Improved datetime parsing. Should be more thread safe. - Enable coverage reporting. Upload reports to Coveralls. - https://coveralls.io/r/tweepy/tweepy - Removed deprecated test() endpoint. - New stream listeners callback on_disconnect(). Called whenever "disconnect" messages arrive from Twitter before connection is killed. - https://dev.twitter.com/docs/streaming-apis/messages#Disconnect_messages_disconnect - [Compare View](https://github.com/tweepy/tweepy/compare/2.1...2.2) - Use HTTPS by default. - Support setting the starting cursor postion (ex: Ex: Cursor(api.friends_ids, cursor=123456)) - Added API.cached_result instance flag that is "True" when cached result is returned. - New Streaming client callbacks - on_event(status): called when new events arrive - on_direct_message(status): called when a new direct message arrives. - Improvements to streaming client re-connection behavior / configuration. (https://github.com/tweepy/tweepy/commit/447f69cd3de67b0d241b9d4f669ecc9b9c0cdb54) Version 2.1 ----------- - Added get_oembed(). - friends() and followers() are back and updated to v1.1. - Fixed report_spam() endpoint. - Added "languages" parameter to streaming filter() method. - Added "timeout" support for API object. Ex: API(timeout=1000). - Python 2.5 no longer supported. - Added compression support. Ex: API(compression=True). - Added on_connect() callback to StreamListener. - Switched API search() to v1.1 endpoint. Some breaking changes. - Drop "page" based cursors and use "ID" based ones instead. - [Compare View](https://github.com/tweepy/tweepy/compare/2.0...2.1) Version 2.0 ----------- _Dedicated in memory of Aaron Swartz_ - Twitter API 1.1 support. - Basic Authentication deprecated. - friends_timeline() removed. - mentions() removed and replaced by mentions_timeline(). - retweeted_by_user() removed. - retweeted_by_me() removed. - retweeted_to_me() removed. - retweeted_by_user() removed. - friends() removed. - followers() removed. - enable_notifications() removed. - disable_notifications() removed. - exists_block() removed. - lists() removed and replaced by lists_all(). - is_list_member() removed. - show_list_member added. - is_subscribed_list() removed. - show_list_subscriber() added. - trends_location() removed. - nearby_places() removed. tweepy-3.5.0/CONTRIBUTORS000066400000000000000000000011621265716604700147320ustar00rootroot00000000000000Thank you to all who have contributed to this project! If you contributed and not listed below please let me know. Aaron Hill Aaron Swartz Adam Miskiewicz AlanBell Arthur Debert Bas Westerbaan Chris Kelly Clay McClure Ferenc Szalai Gergely Imreh Guan Yang Ivo Wetzel Jared Stefanowicz James Rowe Jenny Loomis Johannes Faigle Kumar Appaiah Michael (Doc) Norton Pascal Jürgens Robin Houston Sam Kaufman Thomas Bohmbach, Jr Wayne Moore Will McCutchen gilles Can Duruk Jan Schaumann (@jschauma) Stuart Powers Jeff Hull (@jsh2134) Mike (mikeandmore) Kohei YOSHIDA Mark Smith (@judy2k) Steven Skoczen (@skoczen) Samuel (@obskyr) tweepy-3.5.0/LICENSE000066400000000000000000000020651265716604700140620ustar00rootroot00000000000000MIT License Copyright (c) 2013-2014 Joshua Roesslein Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tweepy-3.5.0/MANIFEST.in000066400000000000000000000000311265716604700146020ustar00rootroot00000000000000include requirements.txt tweepy-3.5.0/README.md000066400000000000000000000026451265716604700143400ustar00rootroot00000000000000Tweepy: Twitter for Python! ====== [![Join the chat at https://gitter.im/tweepy/tweepy](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/tweepy/tweepy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](http://img.shields.io/travis/tweepy/tweepy/master.svg?style=flat)](https://travis-ci.org/tweepy/tweepy) [![Documentation Status](http://img.shields.io/badge/docs-v3.1.0-brightgreen.svg?style=flat)](http://docs.tweepy.org) [![Downloads](http://img.shields.io/pypi/dm/tweepy.svg?style=flat)](https://crate.io/packages/tweepy) [![Version](http://img.shields.io/pypi/v/tweepy.svg?style=flat)](https://crate.io/packages/tweepy) [![Coverage Status](https://img.shields.io/coveralls/tweepy/tweepy/master.svg?style=flat)](https://coveralls.io/r/tweepy/tweepy?branch=master) Installation ------------ The easiest way to install the latest version is by using pip/easy_install to pull it from PyPI: pip install tweepy You may also use Git to clone the repository from Github and install it manually: git clone https://github.com/tweepy/tweepy.git cd tweepy python setup.py install Python 2.6 and 2.7, 3.3, 3.4 & 3.5 are supported. Documentation ------------- - [Website (Work in-progress)](http://tweepy.github.com/) - [Twitter Developers](http://dev.twitter.com/) Community --------- - [Discussion Forum](http://discuss.tweepy.org) - IRC Chat (Freenode.net #tweepy) tweepy-3.5.0/bindings_url_parser.py000066400000000000000000000015041265716604700174570ustar00rootroot00000000000000""" script to parse the url of bindings and find if the page exists or not """ import pprint import re import os import requests __author__ = 'jordiriera' url_root = 'https://dev.twitter.com' reference_line = re.compile(':reference: ({}.*) "'.format(url_root)) def parse(filename): dead_links = [] with open(filename, 'r') as file_: for line in file_.readlines(): res = reference_line.search(line) if res: if not exists(res.group(1)): dead_links.append(res.group(1)) return dead_links def exists(path): r = requests.head(path) return r.status_code == requests.codes.ok if __name__ == '__main__': root = os.path.dirname(os.path.abspath(__file__)) filename = os.path.join(root, 'tweepy', 'api.py') pprint.pprint(parse(filename)) tweepy-3.5.0/cassettes/000077500000000000000000000000001265716604700150505ustar00rootroot00000000000000tweepy-3.5.0/cassettes/testaddremovelistmember.json000066400000000000000000000573761265716604700227170ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/create.json?owner_screen_name=tweepytest&slug=test&screen_name=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "f4c860bd5e1e5e33" ], "content-length": [ "1845" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:40:59 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCL5YbwJKAToHaWQiJTM5NmZkYTUzZDViNDJm%250AMzA3OTI0ZDk4NTc3NTRjZGIyOgxjc3JmX2lkIiVmZTA2MTY0MGI0YWFhOWUx%250AOTZhN2FkYmFhYzdkOGZjYw%253D%253D--9fd9c5d1d4052d4af8de21359b037626205512e6; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738005915050200; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:40:59 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:40:59 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:40:59 UTC" ], "x-connection-hash": [ "5d65d3cd3c9ba3c1a2fcbe1c947496ac" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.16101" ], "status": [ "200 OK" ], "x-mid": [ "c00966bd7ec1bb7ecc05e0e814a3bf3a70fc9c08" ], "etag": [ "\"a74fecea22381eb34bba63e20bc1fac3\"" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"is_translator\":false,\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"statuses_count\":539,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":2,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/destroy.json?owner_screen_name=tweepytest&slug=test&screen_name=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "760b6b76852460f2" ], "content-length": [ "1845" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:03 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCChobwJKAToHaWQiJWI1YTQwODFmOGY5NTI0%250AZjU2OGUxYmZiMDI0OGY1ZTMzOgxjc3JmX2lkIiUxNzAzNjBmODU3YjY3MmYy%250ANmM0ZDM5YTYyZTk2NzBkMA%253D%253D--6d1f0b4cdc71f86cd4a697ed0b0e7e089468fa94; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738006305468490; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:03 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:03 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:03 UTC" ], "x-connection-hash": [ "2dcadaa16c1d1f9b6819b16683cf161e" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.20137" ], "status": [ "200 OK" ], "x-mid": [ "c2e0f183a792c250a3aa8e9606375c1ab19541f5" ], "etag": [ "\"b7efea1af85633970f1a1c7b542f4586\"" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"listed_count\":0,\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"statuses_count\":539,\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"lang\":\"en\",\"id_str\":\"82301637\",\"contributors_enabled\":false,\"favourites_count\":1,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"follow_request_sent\":false,\"default_profile_image\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"description\":\"A test account for testing stuff.\",\"friends_count\":11,\"default_profile\":false,\"profile_use_background_image\":false,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_text_color\":\"000000\",\"is_translator\":false,\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":1,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/create.json?slug=test&screen_name=twitter&owner_screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "faee7468d4080c28" ], "content-length": [ "1845" ], "etag": [ "\"2d018af01b490f2118758894d0e7db7b\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:38 GMT" ], "x-runtime": [ "0.33364" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:14:38 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCDvQoANKAToHaWQiJTRhZmI2NWM2MmFlZDE1%250AMWZiYTRiMWQyMGJmYzJlMTI5Ogxjc3JmX2lkIiVjMDZjMzExNTQ0YTc3MGUw%250AZDA1ZmEwNmU2YzgyMDVkYg%253D%253D--3fe25d33c058768b4aeb3744a6ea38a9b2a9c7be; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740007818676077; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:38 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:38 UTC" ], "x-connection-hash": [ "8b2d37c6f6fdc7165645e91e5405b0f1" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "1bb3da24277a9f2c375156805fea018b28056729" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"statuses_count\":540,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"is_translator\":false,\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":2,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/destroy.json?slug=test&screen_name=twitter&owner_screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "ce05c75303a33dca" ], "content-length": [ "1845" ], "etag": [ "\"7f1105c37b9f9cf0fe1fcb5d09992c1f\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:42 GMT" ], "x-runtime": [ "0.19745" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:14:42 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCLrgoANKAToHaWQiJWMwZDY3NjcyNDAyNzgz%250AYjNhMDlmZTI4ZjJhMGE2Yjc5Ogxjc3JmX2lkIiU3NTFjYjg1YTA0ZTU0MGZh%250AMjZmMjhiMWJmYWM5NmE1MQ%253D%253D--5003520bbf0bb53f57de1a36506d4d4fb7fa4053; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740008235365207; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:42 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:42 UTC" ], "x-connection-hash": [ "2738c131e6baef93086c12069c41a7a9" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "c78bfe35aa7d54b359e6f03a30a598c34ecb48a9" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"statuses_count\":540,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"favourites_count\":1,\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"is_translator\":false,\"default_profile_image\":false,\"utc_offset\":-21600,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"friends_count\":11,\"default_profile\":false,\"description\":\"A test account for testing stuff.\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"listed_count\":0,\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":1,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } } ] }tweepy-3.5.0/cassettes/testaddremovelistmembers.json000066400000000000000000000575321265716604700230740ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/create_all.json?slug=test&screen_name=twitterapi%2Ctwittermobile&owner_screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "b0a88c156f647ba0" ], "content-length": [ "1845" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:04 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCEJsbwJKAToHaWQiJTMxNDI4ODM3MjM2YTI0%250ANDc4NWY5YmMxZDZmOGExMWNhOgxjc3JmX2lkIiU4NjA5ODQ3ODNjMDE2OTg1%250AYTA2MTFmNTk1MTA2YjQyYg%253D%253D--a29927e3eb3512de2681f5a246c0f26a084ac92e; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738006411449098; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:04 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:04 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:04 UTC" ], "x-connection-hash": [ "07e4029b1dce23a59ea06f31b338e720" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.40469" ], "status": [ "200 OK" ], "x-mid": [ "f2e69409e88d8ecca1e69a710147e85d35ff96e1" ], "etag": [ "\"eb361f4b80353a834a383523cece3a83\"" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"favourites_count\":1,\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"default_profile_image\":false,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"friends_count\":11,\"default_profile\":false,\"is_translator\":false,\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"listed_count\":0,\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"description\":\"A test account for testing stuff.\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_use_background_image\":false,\"statuses_count\":539,\"profile_text_color\":\"000000\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":3,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/destroy_all.json?slug=test&screen_name=twitterapi%2Ctwittermobile&owner_screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "743924ed7150968f" ], "content-length": [ "1845" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:05 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCFtxbwJKAToHaWQiJWU2MTc3M2M3YTJlNDQy%250AN2IzM2Q5Y2QwY2YyOTI2MmViOgxjc3JmX2lkIiUwNzdkODgxMGZhYWZhMDJk%250ANjJmYzIzY2M5OTc5MzU4YQ%253D%253D--d6bcda40e541628a91e1ebd751f01ccd46fc15da; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738006538966510; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:05 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:05 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:05 UTC" ], "x-connection-hash": [ "0cb2128dae37293d14a8eac726b13233" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.22243" ], "status": [ "200 OK" ], "x-mid": [ "0fff4d9cf49ccb5a863674803a6fc8a7b1ad4ef1" ], "etag": [ "\"9fa599f1e7facadde171f6c64288e5ba\"" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"statuses_count\":539,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"is_translator\":false,\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":2,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/create_all.json?slug=test&screen_name=twitterapi%2Ctwittermobile&owner_screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "8d4e658375bd95f0" ], "content-length": [ "1845" ], "etag": [ "\"3a9ec61c795fff67fbf5f8b300bb409d\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:43 GMT" ], "x-runtime": [ "0.35160" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:14:43 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCNDloANKAToHaWQiJWMzMmY2YzVhNGYwZTYw%250AMjRlNzQ0NjVhOGQ3YmU1Y2E4Ogxjc3JmX2lkIiVhMThiYWUzZTU4MjRhN2Fk%250AMDNmMjA4MThmNWU1OGI3OA%253D%253D--d3311f4ec97a70a78d3f32349d5a7f114506320a; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740008369126264; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:44 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:44 UTC" ], "x-connection-hash": [ "153f318e9f60941ae638917f0b094882" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "3ee014be9fed71eb0f9793bf53a13e50946e55f9" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"is_translator\":false,\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"statuses_count\":540,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_use_background_image\":false,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":3,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/members/destroy_all.json?slug=test&screen_name=twitterapi%2Ctwittermobile&owner_screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "391d19006c67be2d" ], "content-length": [ "1845" ], "etag": [ "\"40367b5bf5e8f23637cf00ef0db170c5\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:44 GMT" ], "x-runtime": [ "0.22566" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:14:44 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCATqoANKAToHaWQiJWIyMjU2ODAxMDkwN2Zm%250AMzA1YThkNDE5ZmE4OTFiMDkyOgxjc3JmX2lkIiU0ZDU4ZDQ1ODgwYzUyMzdj%250ANDIxZjY4MDg5ZDBkNDM4NQ%253D%253D--10304bafecf321fb6996e8154d46c8ac07325e8e; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740008469506080; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:45 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:45 UTC" ], "x-connection-hash": [ "f6aae6241942af55a4e9e0b0a39a2fe7" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "edcf73e3376793125cd207fb26e03c10cc3f519f" ] }, "body": { "string": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"is_translator\":false,\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"statuses_count\":540,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true},\"uri\":\"\\/tweepytest\\/lists\\/test\",\"subscriber_count\":1,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id_str\":\"3021021\",\"id\":3021021,\"following\":false,\"mode\":\"public\",\"slug\":\"test\",\"member_count\":2,\"description\":\"This is a simple little test list\",\"name\":\"test\"}" } } } ] }tweepy-3.5.0/cassettes/testblocks.json000066400000000000000000000372741265716604700201350ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/blocks/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:06 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1d5b777ebf7aacf182c14f9ecd554535" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "3a0221edc29d466e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "4635" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006610469294; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:06 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:06 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380966" ] }, "body": { "string": "{\"users\":[{\"id\":81928310,\"id_str\":\"81928310\",\"name\":\"asaf\",\"screen_name\":\"locksmithvista\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":1674,\"listed_count\":1,\"created_at\":\"Mon Oct 12 21:04:45 +0000 2009\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Oct 27 18:06:52 +0000 2009\",\"id\":5206788265,\"id_str\":\"5206788265\",\"text\":\"--------------------- http:\\/\\/www.lockersmith.com\\/ ------------ dont get stuck out of yore car\\/appartment\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/44574448\\/2.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/44574448\\/2.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/467120707\\/8318_101780806506521_100000238068041_50269_8288754_n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/467120707\\/8318_101780806506521_100000238068041_50269_8288754_n_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":52573909,\"id_str\":\"52573909\",\"name\":\"ISABEL CITRINY\",\"screen_name\":\"isacauzadera\",\"location\":\"Rio de Janeiro - RJ\",\"profile_location\":null,\"description\":\"Brasil. 15 anos. Comer. Dormir. Zoeira. Potaria\",\"url\":\"http:\\/\\/t.co\\/ZaZoq73bre\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZaZoq73bre\",\"expanded_url\":\"http:\\/\\/ask.fm\\/icitriny\",\"display_url\":\"ask.fm\\/icitriny\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2073,\"friends_count\":1467,\"listed_count\":346,\"created_at\":\"Wed Jul 01 00:26:55 +0000 2009\",\"favourites_count\":304,\"utc_offset\":-39600,\"time_zone\":\"International Date Line West\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20523,\"lang\":\"pt\",\"status\":{\"created_at\":\"Thu May 02 16:12:29 +0000 2013\",\"id\":329991796329431042,\"id_str\":\"329991796329431042\",\"text\":\"krl esqueci a senha do meu tt to fudidaaaaaaaa\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"pt\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/858212120\\/6b2080ca641e6c0d1fa06fa9fb4ca5aa.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/858212120\\/6b2080ca641e6c0d1fa06fa9fb4ca5aa.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3603154671\\/2720d557a78a2c358a365de48cacd987_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3603154671\\/2720d557a78a2c358a365de48cacd987_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/52573909\\/1367468630\",\"profile_link_color\":\"42BD2A\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/blocks/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:45 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "3f6a1c495ccd4c6afd387b44ff3f9961" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400985" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "4635" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:45 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008592262621; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:45 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "1f5c4544c1d4a410" ] }, "body": { "string": "{\"users\":[{\"id\":81928310,\"id_str\":\"81928310\",\"name\":\"asaf\",\"screen_name\":\"locksmithvista\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"friends_count\":1674,\"listed_count\":1,\"created_at\":\"Mon Oct 12 21:04:45 +0000 2009\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Oct 27 18:06:52 +0000 2009\",\"id\":5206788265,\"id_str\":\"5206788265\",\"text\":\"--------------------- http:\\/\\/www.lockersmith.com\\/ ------------ dont get stuck out of yore car\\/appartment\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/44574448\\/2.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/44574448\\/2.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/467120707\\/8318_101780806506521_100000238068041_50269_8288754_n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/467120707\\/8318_101780806506521_100000238068041_50269_8288754_n_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":52573909,\"id_str\":\"52573909\",\"name\":\"ISABEL CITRINY\",\"screen_name\":\"isacauzadera\",\"location\":\"Rio de Janeiro - RJ\",\"profile_location\":null,\"description\":\"Brasil. 15 anos. Comer. Dormir. Zoeira. Potaria\",\"url\":\"http:\\/\\/t.co\\/ZaZoq73bre\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZaZoq73bre\",\"expanded_url\":\"http:\\/\\/ask.fm\\/icitriny\",\"display_url\":\"ask.fm\\/icitriny\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2073,\"friends_count\":1467,\"listed_count\":346,\"created_at\":\"Wed Jul 01 00:26:55 +0000 2009\",\"favourites_count\":304,\"utc_offset\":-39600,\"time_zone\":\"International Date Line West\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":20523,\"lang\":\"pt\",\"status\":{\"created_at\":\"Thu May 02 16:12:29 +0000 2013\",\"id\":329991796329431042,\"id_str\":\"329991796329431042\",\"text\":\"krl esqueci a senha do meu tt to fudidaaaaaaaa\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"pt\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/858212120\\/6b2080ca641e6c0d1fa06fa9fb4ca5aa.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/858212120\\/6b2080ca641e6c0d1fa06fa9fb4ca5aa.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3603154671\\/2720d557a78a2c358a365de48cacd987_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3603154671\\/2720d557a78a2c358a365de48cacd987_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/52573909\\/1367468630\",\"profile_link_color\":\"42BD2A\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testblocksids.json000066400000000000000000000136521265716604700206270ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/blocks/ids.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:06 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9efbf2eda97efe7239bd62b99d01e47d" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "5f5fc7bd50f07933" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "111" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006645977787; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:06 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:06 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380966" ] }, "body": { "string": "{\"ids\":[81928310,52573909],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/blocks/ids.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:46 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "8c80e86133987c9229b16ad37616ff1e" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400986" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "111" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:46 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008634274846; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:46 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "a597325d8f821157" ] }, "body": { "string": "{\"ids\":[81928310,52573909],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testcachedresult.json000066400000000000000000005750531265716604700213300ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/home_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:06 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "910ab784c86e8bf4d3fdd343fde61274" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "51cadc6a5aeddc2b" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "83844" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006670853994; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:06 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:06 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380966" ] }, "body": { "string": "[{\"created_at\":\"Sun Nov 30 20:00:07 +0000 2014\",\"id\":539146877577748480,\"id_str\":\"539146877577748480\",\"text\":\"A solid case for napping at work tomorrow. http:\\/\\/t.co\\/YgMWdT85Uh http:\\/\\/t.co\\/4G4vLeyWEw\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":72,\"favorite_count\":240,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YgMWdT85Uh\",\"expanded_url\":\"http:\\/\\/goo.gl\\/VKiJEZ\",\"display_url\":\"goo.gl\\/VKiJEZ\",\"indices\":[43,65]}],\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:15:13 +0000 2014\",\"id\":539120481270378497,\"id_str\":\"539120481270378497\",\"text\":\"Enter @VisaCheckout.com for chance at @SuperBowl XLIX. NoPurcNec 18+USRes Ends1\\/04 Rules http:\\/\\/t.co\\/ftiMq6CvFi https:\\/\\/t.co\\/EsMKS33M1Q\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"profile_location\":null,\"description\":\"#everywhere isn\\u2019t just a place. It can be the journey. It could be the destination. But it\\u2019s always a new state of mind.\",\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":239356,\"friends_count\":1185,\"listed_count\":746,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":463,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":13024,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1405461475\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":6,\"favorite_count\":8,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VisaCheckout\",\"name\":\"Checkout with Visa\",\"id\":2460280304,\"id_str\":\"2460280304\",\"indices\":[6,19]},{\"screen_name\":\"SuperBowl\",\"name\":\"Super Bowl\",\"id\":19425947,\"id_str\":\"19425947\",\"indices\":[38,48]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ftiMq6CvFi\",\"expanded_url\":\"http:\\/\\/vi.sa\\/1A4lPz9\",\"display_url\":\"vi.sa\\/1A4lPz9\",\"indices\":[89,111]},{\"url\":\"https:\\/\\/t.co\\/EsMKS33M1Q\",\"expanded_url\":\"https:\\/\\/cards.twitter.com\\/cards\\/949uer\\/8mb0\",\"display_url\":\"cards.twitter.com\\/cards\\/949uer\\/8\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"da\"},{\"created_at\":\"Sun Nov 30 17:15:14 +0000 2014\",\"id\":539105384380633088,\"id_str\":\"539105384380633088\",\"text\":\"RT @GooglePlay: Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZx\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602826,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 15:00:58 +0000 2014\",\"id\":539071594698899456,\"id_str\":\"539071594698899456\",\"text\":\"Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZxUUQaY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4052930,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5004,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":118,\"favorite_count\":198,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[44,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[83,105]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":118,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[60,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[99,121]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 17:00:06 +0000 2014\",\"id\":539101575424524289,\"id_str\":\"539101575424524289\",\"text\":\"You can totally see our house from here! http:\\/\\/t.co\\/pxc82gCnq2 http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":307,\"favorite_count\":675,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pxc82gCnq2\",\"expanded_url\":\"http:\\/\\/goo.gl\\/lyFZ8C\",\"display_url\":\"goo.gl\\/lyFZ8C\",\"indices\":[41,63]}],\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 01:43:00 +0000 2014\",\"id\":538870779103158272,\"id_str\":\"538870779103158272\",\"text\":\"RT @USCBookstore: Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4248276,\"friends_count\":263,\"listed_count\":6486,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2138,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 17:00:07 +0000 2014\",\"id\":538739192843350021,\"id_str\":\"538739192843350021\",\"text\":\"Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":39372927,\"id_str\":\"39372927\",\"name\":\"USC Bookstore\",\"screen_name\":\"USCBookstore\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Serving the academic and spirit needs of USC community.\",\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"expanded_url\":\"http:\\/\\/www.uscbookstore.com\",\"display_url\":\"uscbookstore.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2559,\"friends_count\":247,\"listed_count\":133,\"created_at\":\"Mon May 11 23:26:33 +0000 2009\",\"favourites_count\":52,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":882,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A80B10\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/39372927\\/1405548397\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"ED315B\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":40,\"favorite_count\":17,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[62,70]},{\"text\":\"USC\",\"indices\":[71,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[76,99]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":40,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[80,88]},{\"text\":\"USC\",\"indices\":[89,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USCBookstore\",\"name\":\"USC Bookstore\",\"id\":39372927,\"id_str\":\"39372927\",\"indices\":[3,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[94,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 23:00:07 +0000 2014\",\"id\":538829791345246209,\"id_str\":\"538829791345246209\",\"text\":\"Do 8-bit turtles dream of pixelated pizza? http:\\/\\/t.co\\/BdzDyEn4a9 http:\\/\\/t.co\\/OUDE3wUgVb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":254,\"favorite_count\":536,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BdzDyEn4a9\",\"expanded_url\":\"http:\\/\\/goo.gl\\/BSF2Mv\",\"display_url\":\"goo.gl\\/BSF2Mv\",\"indices\":[43,65]}],\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 20:00:07 +0000 2014\",\"id\":538784489510813696,\"id_str\":\"538784489510813696\",\"text\":\"We\\u2019ll take one #LoveMeHarder cover \\u2013 shaken, not stirred. http:\\/\\/t.co\\/Cdkc5x3K5L http:\\/\\/t.co\\/Pksbi9KPVi\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":167,\"favorite_count\":580,\"entities\":{\"hashtags\":[{\"text\":\"LoveMeHarder\",\"indices\":[15,28]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Cdkc5x3K5L\",\"expanded_url\":\"http:\\/\\/goo.gl\\/vYL4nn\",\"display_url\":\"goo.gl\\/vYL4nn\",\"indices\":[58,80]}],\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 17:00:15 +0000 2014\",\"id\":538739227178315776,\"id_str\":\"538739227178315776\",\"text\":\".@devinsupertramp travels to Nepal to give the gift of selfies. http:\\/\\/t.co\\/Eqds8Pg6ul http:\\/\\/t.co\\/7lbU35x7Wo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":228,\"favorite_count\":678,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"devinsupertramp\",\"name\":\"Devin Graham\",\"id\":56030318,\"id_str\":\"56030318\",\"indices\":[1,17]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Eqds8Pg6ul\",\"expanded_url\":\"http:\\/\\/goo.gl\\/WhqPmI\",\"display_url\":\"goo.gl\\/WhqPmI\",\"indices\":[64,86]}],\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 02:00:11 +0000 2014\",\"id\":538512718089969664,\"id_str\":\"538512718089969664\",\"text\":\"Can you rap without rhyming? http:\\/\\/t.co\\/LXc2g92eZW http:\\/\\/t.co\\/gUyOQdmAEZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":241,\"favorite_count\":696,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/LXc2g92eZW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0PAQnX\",\"display_url\":\"goo.gl\\/0PAQnX\",\"indices\":[29,51]}],\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 23:00:18 +0000 2014\",\"id\":538467448430022656,\"id_str\":\"538467448430022656\",\"text\":\".@FifthHarmony makes our heart beat like a #Sledgehammer. http:\\/\\/t.co\\/d39bI9XCCV http:\\/\\/t.co\\/yowHYN5BwA\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2856,\"favorite_count\":3598,\"entities\":{\"hashtags\":[{\"text\":\"Sledgehammer\",\"indices\":[43,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FifthHarmony\",\"name\":\"Fifth Harmony\",\"id\":872374136,\"id_str\":\"872374136\",\"indices\":[1,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/d39bI9XCCV\",\"expanded_url\":\"http:\\/\\/goo.gl\\/bJRiYD\",\"display_url\":\"goo.gl\\/bJRiYD\",\"indices\":[58,80]}],\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 20:00:08 +0000 2014\",\"id\":538422107659853825,\"id_str\":\"538422107659853825\",\"text\":\"For those on the fence about rocking, AC\\/DC busts you. http:\\/\\/t.co\\/qRMoBNApG0 http:\\/\\/t.co\\/C6fnqE4Ksg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":313,\"favorite_count\":642,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qRMoBNApG0\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0aPg5v\",\"display_url\":\"goo.gl\\/0aPg5v\",\"indices\":[55,77]}],\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 19:15:36 +0000 2014\",\"id\":538410899405828096,\"id_str\":\"538410899405828096\",\"text\":\"RT @GooglePlay: Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602826,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Nov 28 14:30:33 +0000 2014\",\"id\":538339165675720704,\"id_str\":\"538339165675720704\",\"text\":\"Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4052930,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5004,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":101,\"favorite_count\":209,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[42,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[75,97]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"3376992a082d67c7\",\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":101,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[58,70]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[91,113]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 18:00:05 +0000 2014\",\"id\":538391897698738177,\"id_str\":\"538391897698738177\",\"text\":\"In #TimesSquare? Entertain yourself using http:\\/\\/t.co\\/tTokS6S6bg. Not in NYC? Entertain these guys. #NotTheSame http:\\/\\/t.co\\/nzPI6KxtoG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.wildfireapp.com\\/?utm_source=Twitter&utm_medium=Tweet&utm_campaign=via%2BWildfire%2BSuite\\\" rel=\\\"nofollow\\\"\\u003eWildfire Suite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602826,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":95,\"favorite_count\":170,\"entities\":{\"hashtags\":[{\"text\":\"TimesSquare\",\"indices\":[3,15]},{\"text\":\"NotTheSame\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tTokS6S6bg\",\"expanded_url\":\"http:\\/\\/androidify.com\",\"display_url\":\"androidify.com\",\"indices\":[42,64]}],\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 17:17:33 +0000 2014\",\"id\":538381192794767360,\"id_str\":\"538381192794767360\",\"text\":\"RT @google: Gadgets from Google for everyone on your list \\u2192 http:\\/\\/t.co\\/O8vVQr0lAU http:\\/\\/t.co\\/aFHnlVl7DF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602826,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Nov 28 15:37:25 +0000 2014\",\"id\":538355993126522880,\"id_str\":\"538355993126522880\",\"text\":\"Gadgets from Google for everyone on your list \\u2192 http:\\/\\/t.co\\/O8vVQr0lAU http:\\/\\/t.co\\/aFHnlVl7DF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":20536157,\"id_str\":\"20536157\",\"name\":\"Google\",\"screen_name\":\"google\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News and updates from Google\",\"url\":\"http:\\/\\/t.co\\/twxHxOtTvy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/twxHxOtTvy\",\"expanded_url\":\"http:\\/\\/www.google.com\",\"display_url\":\"google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9426298,\"friends_count\":414,\"listed_count\":88350,\"created_at\":\"Tue Feb 10 19:14:39 +0000 2009\",\"favourites_count\":316,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5582,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000163714586\\/yY9JMq3S.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000163714586\\/yY9JMq3S.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522909800191901697\\/FHCGSQg0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522909800191901697\\/FHCGSQg0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20536157\\/1405528161\",\"profile_link_color\":\"0000CC\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EBEFF9\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":192,\"favorite_count\":325,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/O8vVQr0lAU\",\"expanded_url\":\"http:\\/\\/goo.gl\\/dEOTzQ\",\"display_url\":\"goo.gl\\/dEOTzQ\",\"indices\":[48,70]}],\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[71,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[71,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":192,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"google\",\"name\":\"Google\",\"id\":20536157,\"id_str\":\"20536157\",\"indices\":[3,10]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/O8vVQr0lAU\",\"expanded_url\":\"http:\\/\\/goo.gl\\/dEOTzQ\",\"display_url\":\"goo.gl\\/dEOTzQ\",\"indices\":[60,82]}],\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[83,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":538355993126522880,\"source_status_id_str\":\"538355993126522880\"}]},\"extended_entities\":{\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[83,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":538355993126522880,\"source_status_id_str\":\"538355993126522880\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 17:00:17 +0000 2014\",\"id\":538376845239255041,\"id_str\":\"538376845239255041\",\"text\":\"Follow us on Poof before it\\u2019s too \\u2026 http:\\/\\/t.co\\/N2KI64T3DK http:\\/\\/t.co\\/Ul0HnFeguS\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777246,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":121,\"favorite_count\":473,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/N2KI64T3DK\",\"expanded_url\":\"http:\\/\\/goo.gl\\/sHJ3AF\",\"display_url\":\"goo.gl\\/sHJ3AF\",\"indices\":[36,58]}],\"media\":[{\"id\":538376845117648896,\"id_str\":\"538376845117648896\",\"indices\":[59,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"url\":\"http:\\/\\/t.co\\/Ul0HnFeguS\",\"display_url\":\"pic.twitter.com\\/Ul0HnFeguS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538376845239255041\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":831,\"h\":465,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":335,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538376845117648896,\"id_str\":\"538376845117648896\",\"indices\":[59,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"url\":\"http:\\/\\/t.co\\/Ul0HnFeguS\",\"display_url\":\"pic.twitter.com\\/Ul0HnFeguS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538376845239255041\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":831,\"h\":465,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":335,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 16:30:05 +0000 2014\",\"id\":538369247316299776,\"id_str\":\"538369247316299776\",\"text\":\"Snag the #LGGWatch until Monday for over 50% off on @GooglePlay in US, CAN & UK. #BlackFriday http:\\/\\/t.co\\/3lieaWsvNE http:\\/\\/t.co\\/nWTk8R2EXR\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.wildfireapp.com\\/?utm_source=Twitter&utm_medium=Tweet&utm_campaign=via%2BWildfire%2BSuite\\\" rel=\\\"nofollow\\\"\\u003eWildfire Suite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602826,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":128,\"favorite_count\":175,\"entities\":{\"hashtags\":[{\"text\":\"LGGWatch\",\"indices\":[9,18]},{\"text\":\"BlackFriday\",\"indices\":[85,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[52,63]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3lieaWsvNE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/C3UyQn\",\"display_url\":\"goo.gl\\/C3UyQn\",\"indices\":[98,120]}],\"media\":[{\"id\":538369247182094336,\"id_str\":\"538369247182094336\",\"indices\":[121,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"url\":\"http:\\/\\/t.co\\/nWTk8R2EXR\",\"display_url\":\"pic.twitter.com\\/nWTk8R2EXR\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538369247316299776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538369247182094336,\"id_str\":\"538369247182094336\",\"indices\":[121,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"url\":\"http:\\/\\/t.co\\/nWTk8R2EXR\",\"display_url\":\"pic.twitter.com\\/nWTk8R2EXR\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538369247316299776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 16:08:35 +0000 2014\",\"id\":538363834637885440,\"id_str\":\"538363834637885440\",\"text\":\"Get your casting queue ready for #BlackFriday: #Chromecast now $25 at select retailers, includes free @HuluPlus trial http:\\/\\/t.co\\/MNJlS3JQyt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":56505125,\"id_str\":\"56505125\",\"name\":\"Google Chrome\",\"screen_name\":\"googlechrome\",\"location\":\"Mountain View, California\",\"profile_location\":null,\"description\":\"The official Twitter account for the Google Chrome browser, OS, Chromebooks, Chromecast, and Web Store\",\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"expanded_url\":\"http:\\/\\/google.com\\/chrome\",\"display_url\":\"google.com\\/chrome\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4652751,\"friends_count\":84,\"listed_count\":14162,\"created_at\":\"Mon Jul 13 21:51:56 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":863,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":52,\"favorite_count\":64,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[33,45]},{\"text\":\"Chromecast\",\"indices\":[47,58]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HuluPlus\",\"name\":\"HuluPlus\",\"id\":478843932,\"id_str\":\"478843932\",\"indices\":[102,111]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MNJlS3JQyt\",\"expanded_url\":\"http:\\/\\/goo.gl\\/RoPLaF\",\"display_url\":\"goo.gl\\/RoPLaF\",\"indices\":[118,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/home_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:46 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9ff01cdad59aaa696f07f2cafab25ca9" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400986" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "84464" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:46 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008673551984; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:46 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "f130d4ee59bf8a9c" ] }, "body": { "string": "[{\"created_at\":\"Mon Dec 01 02:00:35 +0000 2014\",\"id\":539237595235237889,\"id_str\":\"539237595235237889\",\"text\":\"Here\\u2019s some gym-spiration in case you ate too many leftovers this weekend. http:\\/\\/t.co\\/S2f03hDmK6 http:\\/\\/t.co\\/gswAAnw0O8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":157,\"favorite_count\":268,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/S2f03hDmK6\",\"expanded_url\":\"http:\\/\\/goo.gl\\/Z5CM3v\",\"display_url\":\"goo.gl\\/Z5CM3v\",\"indices\":[75,97]}],\"media\":[{\"id\":539237595130372096,\"id_str\":\"539237595130372096\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"url\":\"http:\\/\\/t.co\\/gswAAnw0O8\",\"display_url\":\"pic.twitter.com\\/gswAAnw0O8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539237595235237889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":186,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539237595130372096,\"id_str\":\"539237595130372096\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"url\":\"http:\\/\\/t.co\\/gswAAnw0O8\",\"display_url\":\"pic.twitter.com\\/gswAAnw0O8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539237595235237889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":186,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:18:55 +0000 2014\",\"id\":539196909924413440,\"id_str\":\"539196909924413440\",\"text\":\"RT @CFL: .@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246358,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 22:53:26 +0000 2014\",\"id\":539190494191165440,\"id_str\":\"539190494191165440\",\"text\":\".@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":18194219,\"id_str\":\"18194219\",\"name\":\"CFL Official Feed\",\"screen_name\":\"CFL\",\"location\":\"Canada\",\"profile_location\":null,\"description\":\"Welcome to the CFL's official Twitter home. You're in the huddle with @RichardObrand and @LucasBarrett9. #GreyCup.\",\"url\":\"http:\\/\\/t.co\\/cEJGvV1RTF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cEJGvV1RTF\",\"expanded_url\":\"http:\\/\\/www.CFL.ca\",\"display_url\":\"CFL.ca\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99502,\"friends_count\":11440,\"listed_count\":1324,\"created_at\":\"Wed Dec 17 17:38:38 +0000 2008\",\"favourites_count\":534,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":47865,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"868686\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/454624544750202881\\/lWRfnLXi.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/454624544750202881\\/lWRfnLXi.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527589400318722049\\/n9Giuvbw_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527589400318722049\\/n9Giuvbw_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18194219\\/1416972405\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":537,\"favorite_count\":749,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[27,35]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[1,17]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[36,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[36,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":537,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[36,44]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]},{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[10,26]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[45,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}},\"source_status_id\":539190494191165440,\"source_status_id_str\":\"539190494191165440\"}]},\"extended_entities\":{\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[45,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}},\"source_status_id\":539190494191165440,\"source_status_id_str\":\"539190494191165440\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:00:13 +0000 2014\",\"id\":539192201692319744,\"id_str\":\"539192201692319744\",\"text\":\"Jennifer Aniston pranks a young journalist. http:\\/\\/t.co\\/oorh4tFjVC #awkward http:\\/\\/t.co\\/oPpeCJ1Pf7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":340,\"favorite_count\":853,\"entities\":{\"hashtags\":[{\"text\":\"awkward\",\"indices\":[67,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oorh4tFjVC\",\"expanded_url\":\"http:\\/\\/goo.gl\\/MU6F0C\",\"display_url\":\"goo.gl\\/MU6F0C\",\"indices\":[44,66]}],\"media\":[{\"id\":539192201553920001,\"id_str\":\"539192201553920001\",\"indices\":[76,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"url\":\"http:\\/\\/t.co\\/oPpeCJ1Pf7\",\"display_url\":\"pic.twitter.com\\/oPpeCJ1Pf7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539192201692319744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":332,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":188,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":833,\"h\":462,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539192201553920001,\"id_str\":\"539192201553920001\",\"indices\":[76,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"url\":\"http:\\/\\/t.co\\/oPpeCJ1Pf7\",\"display_url\":\"pic.twitter.com\\/oPpeCJ1Pf7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539192201692319744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":332,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":188,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":833,\"h\":462,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:00:07 +0000 2014\",\"id\":539146877577748480,\"id_str\":\"539146877577748480\",\"text\":\"A solid case for napping at work tomorrow. http:\\/\\/t.co\\/YgMWdT85Uh http:\\/\\/t.co\\/4G4vLeyWEw\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":143,\"favorite_count\":420,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YgMWdT85Uh\",\"expanded_url\":\"http:\\/\\/goo.gl\\/VKiJEZ\",\"display_url\":\"goo.gl\\/VKiJEZ\",\"indices\":[43,65]}],\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:15:13 +0000 2014\",\"id\":539120481270378497,\"id_str\":\"539120481270378497\",\"text\":\"Enter @VisaCheckout.com for chance at @SuperBowl XLIX. NoPurcNec 18+USRes Ends1\\/04 Rules http:\\/\\/t.co\\/ftiMq6CvFi https:\\/\\/t.co\\/EsMKS33M1Q\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"profile_location\":null,\"description\":\"#everywhere isn\\u2019t just a place. It can be the journey. It could be the destination. But it\\u2019s always a new state of mind.\",\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":239548,\"friends_count\":1185,\"listed_count\":746,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":463,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":13052,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1405461475\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":11,\"favorite_count\":12,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VisaCheckout\",\"name\":\"Checkout with Visa\",\"id\":2460280304,\"id_str\":\"2460280304\",\"indices\":[6,19]},{\"screen_name\":\"SuperBowl\",\"name\":\"Super Bowl\",\"id\":19425947,\"id_str\":\"19425947\",\"indices\":[38,48]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ftiMq6CvFi\",\"expanded_url\":\"http:\\/\\/vi.sa\\/1A4lPz9\",\"display_url\":\"vi.sa\\/1A4lPz9\",\"indices\":[89,111]},{\"url\":\"https:\\/\\/t.co\\/EsMKS33M1Q\",\"expanded_url\":\"https:\\/\\/cards.twitter.com\\/cards\\/949uer\\/8mb0\",\"display_url\":\"cards.twitter.com\\/cards\\/949uer\\/8\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"da\"},{\"created_at\":\"Sun Nov 30 17:15:14 +0000 2014\",\"id\":539105384380633088,\"id_str\":\"539105384380633088\",\"text\":\"RT @GooglePlay: Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZx\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603497,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 15:00:58 +0000 2014\",\"id\":539071594698899456,\"id_str\":\"539071594698899456\",\"text\":\"Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZxUUQaY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4053738,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5003,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":169,\"favorite_count\":249,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[44,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[83,105]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":169,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[60,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[99,121]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 17:00:06 +0000 2014\",\"id\":539101575424524289,\"id_str\":\"539101575424524289\",\"text\":\"You can totally see our house from here! http:\\/\\/t.co\\/pxc82gCnq2 http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":349,\"favorite_count\":756,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pxc82gCnq2\",\"expanded_url\":\"http:\\/\\/goo.gl\\/lyFZ8C\",\"display_url\":\"goo.gl\\/lyFZ8C\",\"indices\":[41,63]}],\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 01:43:00 +0000 2014\",\"id\":538870779103158272,\"id_str\":\"538870779103158272\",\"text\":\"RT @USCBookstore: Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246358,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 17:00:07 +0000 2014\",\"id\":538739192843350021,\"id_str\":\"538739192843350021\",\"text\":\"Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":39372927,\"id_str\":\"39372927\",\"name\":\"USC Bookstore\",\"screen_name\":\"USCBookstore\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Serving the academic and spirit needs of USC community.\",\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"expanded_url\":\"http:\\/\\/www.uscbookstore.com\",\"display_url\":\"uscbookstore.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2558,\"friends_count\":247,\"listed_count\":133,\"created_at\":\"Mon May 11 23:26:33 +0000 2009\",\"favourites_count\":52,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":882,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A80B10\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/39372927\\/1405548397\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"ED315B\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":41,\"favorite_count\":17,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[62,70]},{\"text\":\"USC\",\"indices\":[71,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[76,99]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":41,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[80,88]},{\"text\":\"USC\",\"indices\":[89,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USCBookstore\",\"name\":\"USC Bookstore\",\"id\":39372927,\"id_str\":\"39372927\",\"indices\":[3,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[94,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 23:00:07 +0000 2014\",\"id\":538829791345246209,\"id_str\":\"538829791345246209\",\"text\":\"Do 8-bit turtles dream of pixelated pizza? http:\\/\\/t.co\\/BdzDyEn4a9 http:\\/\\/t.co\\/OUDE3wUgVb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":259,\"favorite_count\":589,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BdzDyEn4a9\",\"expanded_url\":\"http:\\/\\/goo.gl\\/BSF2Mv\",\"display_url\":\"goo.gl\\/BSF2Mv\",\"indices\":[43,65]}],\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 20:00:07 +0000 2014\",\"id\":538784489510813696,\"id_str\":\"538784489510813696\",\"text\":\"We\\u2019ll take one #LoveMeHarder cover \\u2013 shaken, not stirred. http:\\/\\/t.co\\/Cdkc5x3K5L http:\\/\\/t.co\\/Pksbi9KPVi\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":169,\"favorite_count\":591,\"entities\":{\"hashtags\":[{\"text\":\"LoveMeHarder\",\"indices\":[15,28]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Cdkc5x3K5L\",\"expanded_url\":\"http:\\/\\/goo.gl\\/vYL4nn\",\"display_url\":\"goo.gl\\/vYL4nn\",\"indices\":[58,80]}],\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 17:00:15 +0000 2014\",\"id\":538739227178315776,\"id_str\":\"538739227178315776\",\"text\":\".@devinsupertramp travels to Nepal to give the gift of selfies. http:\\/\\/t.co\\/Eqds8Pg6ul http:\\/\\/t.co\\/7lbU35x7Wo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":242,\"favorite_count\":687,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"devinsupertramp\",\"name\":\"Devin Graham\",\"id\":56030318,\"id_str\":\"56030318\",\"indices\":[1,17]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Eqds8Pg6ul\",\"expanded_url\":\"http:\\/\\/goo.gl\\/WhqPmI\",\"display_url\":\"goo.gl\\/WhqPmI\",\"indices\":[64,86]}],\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 02:00:11 +0000 2014\",\"id\":538512718089969664,\"id_str\":\"538512718089969664\",\"text\":\"Can you rap without rhyming? http:\\/\\/t.co\\/LXc2g92eZW http:\\/\\/t.co\\/gUyOQdmAEZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":244,\"favorite_count\":703,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/LXc2g92eZW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0PAQnX\",\"display_url\":\"goo.gl\\/0PAQnX\",\"indices\":[29,51]}],\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 23:00:18 +0000 2014\",\"id\":538467448430022656,\"id_str\":\"538467448430022656\",\"text\":\".@FifthHarmony makes our heart beat like a #Sledgehammer. http:\\/\\/t.co\\/d39bI9XCCV http:\\/\\/t.co\\/yowHYN5BwA\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2910,\"favorite_count\":3637,\"entities\":{\"hashtags\":[{\"text\":\"Sledgehammer\",\"indices\":[43,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FifthHarmony\",\"name\":\"Fifth Harmony\",\"id\":872374136,\"id_str\":\"872374136\",\"indices\":[1,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/d39bI9XCCV\",\"expanded_url\":\"http:\\/\\/goo.gl\\/bJRiYD\",\"display_url\":\"goo.gl\\/bJRiYD\",\"indices\":[58,80]}],\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 20:00:08 +0000 2014\",\"id\":538422107659853825,\"id_str\":\"538422107659853825\",\"text\":\"For those on the fence about rocking, AC\\/DC busts you. http:\\/\\/t.co\\/qRMoBNApG0 http:\\/\\/t.co\\/C6fnqE4Ksg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781594,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":316,\"favorite_count\":644,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qRMoBNApG0\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0aPg5v\",\"display_url\":\"goo.gl\\/0aPg5v\",\"indices\":[55,77]}],\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 19:15:36 +0000 2014\",\"id\":538410899405828096,\"id_str\":\"538410899405828096\",\"text\":\"RT @GooglePlay: Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603497,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Nov 28 14:30:33 +0000 2014\",\"id\":538339165675720704,\"id_str\":\"538339165675720704\",\"text\":\"Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4053738,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5003,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":101,\"favorite_count\":211,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[42,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[75,97]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"3376992a082d67c7\",\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":101,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[58,70]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[91,113]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 18:00:05 +0000 2014\",\"id\":538391897698738177,\"id_str\":\"538391897698738177\",\"text\":\"In #TimesSquare? Entertain yourself using http:\\/\\/t.co\\/tTokS6S6bg. Not in NYC? Entertain these guys. #NotTheSame http:\\/\\/t.co\\/nzPI6KxtoG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.wildfireapp.com\\/?utm_source=Twitter&utm_medium=Tweet&utm_campaign=via%2BWildfire%2BSuite\\\" rel=\\\"nofollow\\\"\\u003eWildfire Suite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603497,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":95,\"favorite_count\":172,\"entities\":{\"hashtags\":[{\"text\":\"TimesSquare\",\"indices\":[3,15]},{\"text\":\"NotTheSame\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tTokS6S6bg\",\"expanded_url\":\"http:\\/\\/androidify.com\",\"display_url\":\"androidify.com\",\"indices\":[42,64]}],\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testcreatedestroyblock.json000066400000000000000000001040301265716604700225310ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/blocks/create.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "bffbe4a351ccc0f63d3253f36aa15362" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "a8e64fa59290fec9" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2806" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006737105957; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:07 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:07 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:07 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620546,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/blocks/destroy.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2ddb645433ca7e7a9105ccac0c5b9393" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "d178d31390cb5723" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2807" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006777195684; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:07 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:07 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:07 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620546,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/friendships/create.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6b127b45ec6fd34e22834daabdb282e2" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "b593c38a6120acf5" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2807" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006819437410; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:08 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:08 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:08 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620546,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/blocks/create.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "41d8089403699e00a2a02de5c2470a9d" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "371a8d8cce9f1b0f" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2806" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:47 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008778888442; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:47 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:47 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621102,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/blocks/destroy.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5f51bae33e72fed032f944f472e0373e" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "49eeb3caa060e7d0" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2807" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:48 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008817967429; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:48 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:48 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621101,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/friendships/create.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "4bb5547c10f3271aeddb33f23748ff6f" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "f23ebc976ce841d2" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2807" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:48 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008864389858; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:48 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:48 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621101,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } } ] }tweepy-3.5.0/cassettes/testcreatedestroyfavorite.json000066400000000000000000000502041265716604700232610ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/favorites/create.json?id=4901062372", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "84e8a82c1622a78f76341156367f69d3" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "0bded11bcafd89bd" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2195" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738006963261795; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:09 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:09 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:09 UTC" ] }, "body": { "string": "{\"created_at\":\"Thu Oct 15 23:08:56 +0000 2009\",\"id\":4901062372,\"id_str\":\"4901062372\",\"text\":\"hello world!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":6,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":true,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/favorites/destroy.json?id=4901062372", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "24d34d3f5d818c8fb95740ba23f63031" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "ac5cba9adcb9eb3c" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2196" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007001842741; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:10 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:10 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:10 UTC" ] }, "body": { "string": "{\"created_at\":\"Thu Oct 15 23:08:56 +0000 2009\",\"id\":4901062372,\"id_str\":\"4901062372\",\"text\":\"hello world!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/favorites/create.json?id=4901062372", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "aa5e1b52afd7e96d3e850ce73da4ae69" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "ca200ed2a9ef8282" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2195" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:49 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008910026237; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:49 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:49 UTC" ] }, "body": { "string": "{\"created_at\":\"Thu Oct 15 23:08:56 +0000 2009\",\"id\":4901062372,\"id_str\":\"4901062372\",\"text\":\"hello world!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":true,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/favorites/destroy.json?id=4901062372", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ded93b1a9adb8cddeeb410a4d152f47f" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "42ad9dd38160efa4" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2196" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:49 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008953232746; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:49 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:49 UTC" ] }, "body": { "string": "{\"created_at\":\"Thu Oct 15 23:08:56 +0000 2009\",\"id\":4901062372,\"id_str\":\"4901062372\",\"text\":\"hello world!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":4,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } } ] }tweepy-3.5.0/cassettes/testcreatedestroyfriendship.json000066400000000000000000000553301265716604700236020ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/friendships/destroy.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "15894b6e50c56b57f6858c6f20241b10" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "e6c5277856ef65b7" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2806" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007049493082; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:10 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:10 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:10 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620547,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/friendships/create.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "dedec37cf1907ea42e892423df26eeb9" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "42e0f4614edc7057" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2807" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007601069520; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:16 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:16 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:16 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620548,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/friendships/destroy.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1fbac1123600a22ed3cde4fbf98845f9" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "50caee0ed1be04ae" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2806" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:50 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740008999538855; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:50 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:50 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621102,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/friendships/create.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "7d3ce2bdd5bf6eed9eb036098eb175de" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "f7fbca7fcc1bb556" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2807" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:56 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740009640321920; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:56 UTC" ], "date": [ "Mon, 01 Dec 2014 02:14:56 UTC" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621102,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}" } } } ] }tweepy-3.5.0/cassettes/testcursorcursoritems.json000066400000000000000000000142541265716604700224660ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friends/ids.json?cursor=-1" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "13" ], "content-length": [ "193" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "5c503848f857e6e0" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "485524dcea678f4dcf71b6f6dec34bba" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430070537892; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:20 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:20 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455148" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:20 UTC" ], "x-rate-limit-limit": [ "15" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "{\"ids\":[783214,382267114,56505125,6844292,222953824,130649891,300392950,551373363,10228272,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/followers/ids.json?cursor=-1&id=tweepytest" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "13" ], "content-length": [ "193" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "699b1da95a5fba3f" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "60863e600c8d7b8f14263aa7ab4cd1f3" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430097925503; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:20 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:20 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455148" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:20 UTC" ], "x-rate-limit-limit": [ "15" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "{\"ids\":[2786453988,2300963106,1936745119,305754588,933938155,896350026,325253963,176506425,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testcursorcursorpages.json000066400000000000000000000142541265716604700224440ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friends/ids.json?cursor=-1" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "12" ], "content-length": [ "193" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "f9e87cf56c808da3" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "0c78677182eb831876d8d30675178164" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430126435964; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:21 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:21 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455148" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:21 UTC" ], "x-rate-limit-limit": [ "15" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "{\"ids\":[783214,382267114,56505125,6844292,222953824,130649891,300392950,551373363,10228272,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/followers/ids.json?cursor=-1&id=tweepytest" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "12" ], "content-length": [ "193" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "ee4340c900825beb" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "420aafaa49fba78e3d159725ad9c663e" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430151997221; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:21 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:21 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455148" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:21 UTC" ], "x-rate-limit-limit": [ "15" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "{\"ids\":[2786453988,2300963106,1936745119,305754588,933938155,896350026,325253963,176506425,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testcursornext.json000066400000000000000000002676661265716604700211060ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?id=twitter" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "177" ], "content-length": [ "81963" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "bd76131c1965e3ba" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "4ec84f2c608e89a027a49dafcf7b5ac4" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430176858147; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:21 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:21 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:21 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":302,\"favorite_count\":410,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 25 22:02:11 +0000 2014\",\"id\":537365660850876418,\"id_str\":\"537365660850876418\",\"text\":\"RT @vine: Never miss a Vine from your favorite Viners. Tap the star to favorite their accounts & be notified when they post. http:\\/\\/t.co\\/EP\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 16:05:28 +0000 2014\",\"id\":537275889411977217,\"id_str\":\"537275889411977217\",\"text\":\"Never miss a Vine from your favorite Viners. Tap the star to favorite their accounts & be notified when they post. http:\\/\\/t.co\\/EPAHSN69JP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":586671909,\"id_str\":\"586671909\",\"name\":\"Vine\",\"screen_name\":\"vine\",\"location\":\"\",\"profile_location\":null,\"description\":\"The best way to create and share short, looping videos. Free for iPhone, Android and Windows Phone. For support, tweet @VineHelp.\",\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"expanded_url\":\"http:\\/\\/vine.co\",\"display_url\":\"vine.co\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11719040,\"friends_count\":43,\"listed_count\":6643,\"created_at\":\"Mon May 21 14:34:36 +0000 2012\",\"favourites_count\":694,\"utc_offset\":-14400,\"time_zone\":\"Atlantic Time (Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":678,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F1F1EC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586671909\\/1408551006\",\"profile_link_color\":\"00BF8F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":291,\"favorite_count\":759,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":291,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vine\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[3,8]}],\"urls\":[],\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":537275889411977217,\"source_status_id_str\":\"537275889411977217\"}]},\"extended_entities\":{\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":537275889411977217,\"source_status_id_str\":\"537275889411977217\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 25 17:07:59 +0000 2014\",\"id\":537291621323128832,\"id_str\":\"537291621323128832\",\"text\":\"RT @TwitterAds: Introducing Twitter Offers, a new way for merchants to connect with customers and grow business through Twitter https:\\/\\/t.c\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 17:02:44 +0000 2014\",\"id\":537290298498379776,\"id_str\":\"537290298498379776\",\"text\":\"Introducing Twitter Offers, a new way for merchants to connect with customers and grow business through Twitter https:\\/\\/t.co\\/bYS05v258E\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":357750891,\"id_str\":\"357750891\",\"name\":\"Twitter Advertising\",\"screen_name\":\"TwitterAds\",\"location\":\"San Francisco, CA \",\"profile_location\":null,\"description\":\"Your source for Twitter Ads product updates, tips, success stories and support. Need help? http:\\/\\/t.co\\/8vxlEFmaE5\",\"url\":\"http:\\/\\/t.co\\/44ez09dJjJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/44ez09dJjJ\",\"expanded_url\":\"http:\\/\\/advertising.twitter.com\",\"display_url\":\"advertising.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8vxlEFmaE5\",\"expanded_url\":\"http:\\/\\/ow.ly\\/kshRw\",\"display_url\":\"ow.ly\\/kshRw\",\"indices\":[91,113]}]}},\"protected\":false,\"followers_count\":450138,\"friends_count\":75,\"listed_count\":2560,\"created_at\":\"Thu Aug 18 21:08:15 +0000 2011\",\"favourites_count\":507,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3818,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531882230440677376\\/HGgK3TBY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531882230440677376\\/HGgK3TBY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/357750891\\/1396959666\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":275,\"favorite_count\":288,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYS05v258E\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/introducing-twitter-offers\",\"display_url\":\"blog.twitter.com\\/2014\\/introduci\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":275,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterAds\",\"name\":\"Twitter Advertising\",\"id\":357750891,\"id_str\":\"357750891\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYS05v258E\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/introducing-twitter-offers\",\"display_url\":\"blog.twitter.com\\/2014\\/introduci\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 24 21:10:59 +0000 2014\",\"id\":536990385831047169,\"id_str\":\"536990385831047169\",\"text\":\"Via @Guardian, see how one journalist is using @Vine to raise awareness about the Ebola crisis in Sierra Leone: http:\\/\\/t.co\\/uAeHSfE6dy\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":254,\"favorite_count\":441,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[4,13]},{\"screen_name\":\"vine\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[47,52]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uAeHSfE6dy\",\"expanded_url\":\"http:\\/\\/www.theguardian.com\\/media\\/2014\\/nov\\/23\\/vine-comedy-clips-journalistic-tool-alex-thomson\",\"display_url\":\"theguardian.com\\/media\\/2014\\/nov\\u2026\",\"indices\":[112,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Nov 20 19:57:39 +0000 2014\",\"id\":535522377879146496,\"id_str\":\"535522377879146496\",\"text\":\"Starting today, we're rolling out the ability for you to share Tweets via Direct Messages: https:\\/\\/t.co\\/zRFhYTfKDP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1162,\"favorite_count\":901,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zRFhYTfKDP\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/share-a-tweet-through-direct-messages\",\"display_url\":\"blog.twitter.com\\/2014\\/share-a-t\\u2026\",\"indices\":[91,114]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 18:08:19 +0000 2014\",\"id\":535132476218150912,\"id_str\":\"535132476218150912\",\"text\":\"Giving #thanks in 140 characters: what are you grateful for? https:\\/\\/t.co\\/PyJnA1P41n\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":303,\"favorite_count\":465,\"entities\":{\"hashtags\":[{\"text\":\"thanks\",\"indices\":[7,14]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PyJnA1P41n\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/giving-thanks-in-140-characters\",\"display_url\":\"blog.twitter.com\\/2014\\/giving-th\\u2026\",\"indices\":[61,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 17:06:35 +0000 2014\",\"id\":535116943477313536,\"id_str\":\"535116943477313536\",\"text\":\"Move over, Cyber Monday, for \\u201cTwitter Wednesday\\u201d - biggest day for conversation around deals, sales (@mainstr): http:\\/\\/t.co\\/4Xp4r9EeFE\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":226,\"favorite_count\":385,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MainStr\",\"name\":\"MainStreet\",\"id\":15767621,\"id_str\":\"15767621\",\"indices\":[101,109]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4Xp4r9EeFE\",\"expanded_url\":\"http:\\/\\/www.mainstreet.com\\/article\\/twitter-wednesday-joins-black-friday-and-cyber-monday-for-bargains\\/page\\/2\",\"display_url\":\"mainstreet.com\\/article\\/twitte\\u2026\",\"indices\":[114,136]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 22:33:24 +0000 2014\",\"id\":534836800276410370,\"id_str\":\"534836800276410370\",\"text\":\"RT @twitterforgood: Find out what our offices around the globe did to support local organizations on #FridayforGood: https:\\/\\/t.co\\/h3sFVFJGMg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 18 22:30:03 +0000 2014\",\"id\":534835958710272003,\"id_str\":\"534835958710272003\",\"text\":\"Find out what our offices around the globe did to support local organizations on #FridayforGood: https:\\/\\/t.co\\/h3sFVFJGMg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1884191208,\"id_str\":\"1884191208\",\"name\":\"Twitter for Good\",\"screen_name\":\"twitterforgood\",\"location\":\"\",\"profile_location\":null,\"description\":\"Highlighting our social good initiatives in San Francisco, and around the world.\",\"url\":\"https:\\/\\/t.co\\/3IiN18On01\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3IiN18On01\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/twitter-for-good\",\"display_url\":\"blog.twitter.com\\/twitter-for-go\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5848,\"friends_count\":22,\"listed_count\":89,\"created_at\":\"Thu Sep 19 19:58:52 +0000 2013\",\"favourites_count\":222,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":220,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000545566440\\/b311670ee00df2c1ba62900a50b73e93_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000545566440\\/b311670ee00df2c1ba62900a50b73e93_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1884191208\\/1399586556\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":155,\"favorite_count\":227,\"entities\":{\"hashtags\":[{\"text\":\"FridayforGood\",\"indices\":[81,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h3sFVFJGMg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/lending-a-helping-hand-on-fridayforgood-november\",\"display_url\":\"blog.twitter.com\\/2014\\/lending-a\\u2026\",\"indices\":[97,120]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":155,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FridayforGood\",\"indices\":[101,115]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitterforgood\",\"name\":\"Twitter for Good\",\"id\":1884191208,\"id_str\":\"1884191208\",\"indices\":[3,18]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h3sFVFJGMg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/lending-a-helping-hand-on-fridayforgood-november\",\"display_url\":\"blog.twitter.com\\/2014\\/lending-a\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 19:16:14 +0000 2014\",\"id\":534787182938976256,\"id_str\":\"534787182938976256\",\"text\":\"All the world's a stage on #LoveTheatre day. Celebrate tomorrow with @TwitterUK and 300 theaters & organizations: https:\\/\\/t.co\\/rUmbrpd98g\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":295,\"favorite_count\":362,\"entities\":{\"hashtags\":[{\"text\":\"LoveTheatre\",\"indices\":[27,39]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterUK\",\"name\":\"Twitter UK\",\"id\":277761722,\"id_str\":\"277761722\",\"indices\":[69,79]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rUmbrpd98g\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/en-gb\\/2014\\/roll-up-for-lovetheatre-day-on-twitter\",\"display_url\":\"blog.twitter.com\\/en-gb\\/2014\\/rol\\u2026\",\"indices\":[118,141]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 18:15:56 +0000 2014\",\"id\":534772008198742017,\"id_str\":\"534772008198742017\",\"text\":\"RT @TwitterEng: We're rolling out the ability to search for every Tweet ever published. Learn about how we built this https:\\/\\/t.co\\/KhbgVHZt\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 18 17:40:30 +0000 2014\",\"id\":534763087757189120,\"id_str\":\"534763087757189120\",\"text\":\"We're rolling out the ability to search for every Tweet ever published. Learn about how we built this https:\\/\\/t.co\\/KhbgVHZtYE #TwitterSearch\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":642239,\"friends_count\":0,\"listed_count\":3471,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1423,\"favorite_count\":1059,\"entities\":{\"hashtags\":[{\"text\":\"TwitterSearch\",\"indices\":[126,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhbgVHZtYE\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/building-a-complete-tweet-index\",\"display_url\":\"blog.twitter.com\\/2014\\/building-\\u2026\",\"indices\":[102,125]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1423,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"TwitterSearch\",\"indices\":[139,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhbgVHZtYE\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/building-a-complete-tweet-index\",\"display_url\":\"blog.twitter.com\\/2014\\/building-\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 17 18:16:56 +0000 2014\",\"id\":534409871592943616,\"id_str\":\"534409871592943616\",\"text\":\"Correction: it\\u2019s @SethRogen & @evandgoldberg doing Twitter Q&A Tuesday Nov 18, 4pm PT. Send your questions using #TheInterviewMovie.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":283,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[121,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[17,27]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[34,48]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 17 17:20:06 +0000 2014\",\"id\":534395568269688832,\"id_str\":\"534395568269688832\",\"text\":\"Hey, @SethRogen & @EvanGoldberg are doing Twitter Q&A from our HQ Tuesday Nov 18, 4pm PT. Send your questions using #TheInterviewMovie.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":135,\"favorite_count\":267,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[124,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[5,15]},{\"screen_name\":\"evangoldberg\",\"name\":\"Evan Goldberg\",\"id\":17544053,\"id_str\":\"17544053\",\"indices\":[22,35]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Nov 13 15:01:21 +0000 2014\",\"id\":532911097175498752,\"id_str\":\"532911097175498752\",\"text\":\"The @WhiteHouse just debuted new #ItsOnUs PSA w\\/ Twitter video tool. Watch this important message here: https:\\/\\/t.co\\/k8XAk4Cp2n\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":459,\"favorite_count\":465,\"entities\":{\"hashtags\":[{\"text\":\"ItsOnUs\",\"indices\":[33,41]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[4,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k8XAk4Cp2n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/532908216019984384\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[104,127]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 19:07:23 +0000 2014\",\"id\":532610627382951936,\"id_str\":\"532610627382951936\",\"text\":\"Here are some insights into product improvements we\\u2019re bringing to Twitter in the coming months: https:\\/\\/t.co\\/Svds9V8UBW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":586,\"favorite_count\":661,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Svds9V8UBW\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/coming-soon-to-twitter\",\"display_url\":\"blog.twitter.com\\/2014\\/coming-so\\u2026\",\"indices\":[97,120]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 14:46:32 +0000 2014\",\"id\":532544981131481091,\"id_str\":\"532544981131481091\",\"text\":\"Wow! @ESA_Rosetta Tweets \\u2018farewell\\u2018 photo from space of @Philae2014 heading towards its historic #CometLanding http:\\/\\/t.co\\/AYRLHrpXVy\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":674,\"favorite_count\":778,\"entities\":{\"hashtags\":[{\"text\":\"CometLanding\",\"indices\":[97,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ESA_Rosetta\",\"name\":\"ESA Rosetta Mission\",\"id\":253536357,\"id_str\":\"253536357\",\"indices\":[5,17]},{\"screen_name\":\"Philae2014\",\"name\":\"Philae Lander\",\"id\":208442526,\"id_str\":\"208442526\",\"indices\":[56,67]}],\"urls\":[],\"media\":[{\"id\":532544980720443392,\"id_str\":\"532544980720443392\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"url\":\"http:\\/\\/t.co\\/AYRLHrpXVy\",\"display_url\":\"pic.twitter.com\\/AYRLHrpXVy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532544981131481091\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":556,\"h\":559,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":556,\"h\":559,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532544980720443392,\"id_str\":\"532544980720443392\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"url\":\"http:\\/\\/t.co\\/AYRLHrpXVy\",\"display_url\":\"pic.twitter.com\\/AYRLHrpXVy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532544981131481091\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":556,\"h\":559,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":556,\"h\":559,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 11 19:32:29 +0000 2014\",\"id\":532254554071769089,\"id_str\":\"532254554071769089\",\"text\":\"RT @TwitterSports: Our #NFL recap of week 10 takes your favorite sport, then turns it up to 11. https:\\/\\/t.co\\/NXjC8vQhyq http:\\/\\/t.co\\/PaFGlZI\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 11 19:25:30 +0000 2014\",\"id\":532252796225986560,\"id_str\":\"532252796225986560\",\"text\":\"Our #NFL recap of week 10 takes your favorite sport, then turns it up to 11. https:\\/\\/t.co\\/NXjC8vQhyq http:\\/\\/t.co\\/PaFGlZIWcQ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4250357,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":216,\"favorite_count\":306,\"entities\":{\"hashtags\":[{\"text\":\"NFL\",\"indices\":[4,8]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NXjC8vQhyq\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/the-nfl-on-twitter-week-10\",\"display_url\":\"blog.twitter.com\\/2014\\/the-nfl-o\\u2026\",\"indices\":[77,100]}],\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[101,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[101,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":216,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"NFL\",\"indices\":[23,27]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterSports\",\"name\":\"Twitter Sports\",\"id\":300392950,\"id_str\":\"300392950\",\"indices\":[3,17]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NXjC8vQhyq\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/the-nfl-on-twitter-week-10\",\"display_url\":\"blog.twitter.com\\/2014\\/the-nfl-o\\u2026\",\"indices\":[96,119]}],\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":532252796225986560,\"source_status_id_str\":\"532252796225986560\"}]},\"extended_entities\":{\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":532252796225986560,\"source_status_id_str\":\"532252796225986560\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 11 18:57:48 +0000 2014\",\"id\":532245825997398016,\"id_str\":\"532245825997398016\",\"text\":\"Last night @Jeopardy featured a category called Twitter Feeds. We'll take \\\"Best Category Ever\\\" for $500, Alex. http:\\/\\/t.co\\/RJ8OMh0vIW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":407,\"favorite_count\":676,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jeopardy\",\"name\":\"Jeopardy!\",\"id\":52554306,\"id_str\":\"52554306\",\"indices\":[11,20]}],\"urls\":[],\"media\":[{\"id\":532245825355673601,\"id_str\":\"532245825355673601\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"url\":\"http:\\/\\/t.co\\/RJ8OMh0vIW\",\"display_url\":\"pic.twitter.com\\/RJ8OMh0vIW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532245825997398016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":394,\"h\":419,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":394,\"h\":419,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532245825355673601,\"id_str\":\"532245825355673601\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"url\":\"http:\\/\\/t.co\\/RJ8OMh0vIW\",\"display_url\":\"pic.twitter.com\\/RJ8OMh0vIW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532245825997398016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":394,\"h\":419,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":394,\"h\":419,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 05 18:42:24 +0000 2014\",\"id\":530067625791868928,\"id_str\":\"530067625791868928\",\"text\":\"It just got easier to Tweet on http:\\/\\/t.co\\/SlNTFacp9A. You can now compose new Tweets at the top of your home timeline.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1162,\"favorite_count\":1179,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlNTFacp9A\",\"expanded_url\":\"http:\\/\\/Twitter.com\",\"display_url\":\"Twitter.com\",\"indices\":[31,53]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 04 15:47:00 +0000 2014\",\"id\":529661094508236800,\"id_str\":\"529661094508236800\",\"text\":\"RT @gov: #Election2014: keeping you informed on the midterms https:\\/\\/t.co\\/gzUv5lbvQC\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 04 14:35:26 +0000 2014\",\"id\":529643085022502912,\"id_str\":\"529643085022502912\",\"text\":\"#Election2014: keeping you informed on the midterms https:\\/\\/t.co\\/gzUv5lbvQC\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":749442,\"friends_count\":3,\"listed_count\":3344,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":191,\"favorite_count\":292,\"entities\":{\"hashtags\":[{\"text\":\"Election2014\",\"indices\":[0,13]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gzUv5lbvQC\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/election2014-keeping-you-informed-on-the-midterms\",\"display_url\":\"blog.twitter.com\\/2014\\/election2\\u2026\",\"indices\":[52,75]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":191,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Election2014\",\"indices\":[9,22]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gov\",\"name\":\"Twitter Government\",\"id\":222953824,\"id_str\":\"222953824\",\"indices\":[3,7]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gzUv5lbvQC\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/election2014-keeping-you-informed-on-the-midterms\",\"display_url\":\"blog.twitter.com\\/2014\\/election2\\u2026\",\"indices\":[61,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 01 22:53:33 +0000 2014\",\"id\":528681275725328384,\"id_str\":\"528681275725328384\",\"text\":\"RT @TwitterMovies: Check out the Twitter Q&A with @JimCarrey and @Jeff_Daniels here: https:\\/\\/t.co\\/0eRh8nBeOX #DumbTo\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33630137,\"friends_count\":101,\"listed_count\":86768,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 01 22:29:39 +0000 2014\",\"id\":528675264327581696,\"id_str\":\"528675264327581696\",\"text\":\"Check out the Twitter Q&A with @JimCarrey and @Jeff_Daniels here: https:\\/\\/t.co\\/0eRh8nBeOX #DumbTo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":436266454,\"id_str\":\"436266454\",\"name\":\"Twitter Movies\",\"screen_name\":\"TwitterMovies\",\"location\":\"\",\"profile_location\":null,\"description\":\"News, trailers, and fun facts from the silver screen.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2318591,\"friends_count\":180,\"listed_count\":2869,\"created_at\":\"Wed Dec 14 00:18:42 +0000 2011\",\"favourites_count\":124,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1874,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/436266454\\/1347404339\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":216,\"favorite_count\":384,\"entities\":{\"hashtags\":[{\"text\":\"DumbTo\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JimCarrey\",\"name\":\"Jim Carrey\",\"id\":52551600,\"id_str\":\"52551600\",\"indices\":[35,45]},{\"screen_name\":\"Jeff_Daniels\",\"name\":\"Jeff Daniels\",\"id\":506652594,\"id_str\":\"506652594\",\"indices\":[50,63]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0eRh8nBeOX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/528654634693320704\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[70,93]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":216,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"DumbTo\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterMovies\",\"name\":\"Twitter Movies\",\"id\":436266454,\"id_str\":\"436266454\",\"indices\":[3,17]},{\"screen_name\":\"JimCarrey\",\"name\":\"Jim Carrey\",\"id\":52551600,\"id_str\":\"52551600\",\"indices\":[54,64]},{\"screen_name\":\"Jeff_Daniels\",\"name\":\"Jeff Daniels\",\"id\":506652594,\"id_str\":\"506652594\",\"indices\":[69,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0eRh8nBeOX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/528654634693320704\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[89,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testdirectmessages.json000066400000000000000000000712541265716604700216560ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:16 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c256fe3c8de3883fd255c7a98e1cd50d" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "6cbcb97536134c20" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "10590" ], "set-cookie": [ "guest_id=v1%3A141738007643851362; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:16 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:16 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380976" ] }, "body": { "string": "[{\"id\":460271179152883712,\"id_str\":\"460271179152883712\",\"text\":\"test message\",\"sender\":{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":9302282,\"sender_id_str\":\"9302282\",\"sender_screen_name\":\"applepie\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Sun Apr 27 04:16:15 +0000 2014\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}},{\"id\":266403740574167040,\"id_str\":\"266403740574167040\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Nov 08 04:56:15 +0000 2012\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}},{\"id\":460163613,\"id_str\":\"460163613\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Oct 15 23:47:36 +0000 2009\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:56 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6e5c60f6cb9fd46cec3417edb2ee04b5" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400996" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "10590" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:56 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "guest_id=v1%3A141740009692589641; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:56 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "b4b576e5b28f1311" ] }, "body": { "string": "[{\"id\":460271179152883712,\"id_str\":\"460271179152883712\",\"text\":\"test message\",\"sender\":{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":9302282,\"sender_id_str\":\"9302282\",\"sender_screen_name\":\"applepie\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Sun Apr 27 04:16:15 +0000 2014\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}},{\"id\":266403740574167040,\"id_str\":\"266403740574167040\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Nov 08 04:56:15 +0000 2012\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}},{\"id\":460163613,\"id_str\":\"460163613\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Oct 15 23:47:36 +0000 2009\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}]" } } } ] }tweepy-3.5.0/cassettes/testfailure.json000066400000000000000000000225131265716604700202750ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "headers": { "Host": [ "api.twitter.com" ] }, "body": null }, "response": { "status": { "message": "Bad Request", "code": 400 }, "headers": { "x-response-time": [ "6" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "guest_id=v1%3A144655290597218733; Domain=.twitter.com; Path=/; Expires=Thu, 02-Nov-2017 12:15:05 UTC" ], "date": [ "Tue, 03 Nov 2015 12:15:05 GMT" ], "x-connection-hash": [ "bbad9c628533f023920a78c282b82a2e" ], "content-length": [ "62" ] }, "body": { "string": "{\"errors\":[{\"code\":215,\"message\":\"Bad Authentication data.\"}]}" } } }, { "request": { "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "headers": { "Cookie": [ "guest_id=v1%3A144655290597218733" ], "Host": [ "api.twitter.com" ] }, "body": null }, "response": { "status": { "message": "Bad Request", "code": 400 }, "headers": { "x-response-time": [ "5" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "strict-transport-security": [ "max-age=631138519" ], "date": [ "Tue, 03 Nov 2015 12:15:11 GMT" ], "x-connection-hash": [ "bbad9c628533f023920a78c282b82a2e" ], "content-length": [ "62" ] }, "body": { "string": "{\"errors\":[{\"code\":215,\"message\":\"Bad Authentication data.\"}]}" } } }, { "request": { "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "headers": { "Cookie": [ "guest_id=v1%3A144655290597218733" ], "Host": [ "api.twitter.com" ] }, "body": null }, "response": { "status": { "message": "Bad Request", "code": 400 }, "headers": { "x-response-time": [ "3" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "strict-transport-security": [ "max-age=631138519" ], "date": [ "Tue, 03 Nov 2015 12:15:16 GMT" ], "x-connection-hash": [ "bbad9c628533f023920a78c282b82a2e" ], "content-length": [ "62" ] }, "body": { "string": "{\"errors\":[{\"code\":215,\"message\":\"Bad Authentication data.\"}]}" } } }, { "request": { "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "headers": { "Host": [ "api.twitter.com" ] }, "body": null }, "response": { "status": { "message": "Bad Request", "code": 400 }, "headers": { "x-response-time": [ "4" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "guest_id=v1%3A144655293331152269; Domain=.twitter.com; Path=/; Expires=Thu, 02-Nov-2017 12:15:33 UTC" ], "date": [ "Tue, 03 Nov 2015 12:15:33 GMT" ], "x-connection-hash": [ "f3384743aac99980194e77031a6b9d66" ], "content-length": [ "62" ] }, "body": { "string": "{\"errors\":[{\"code\":215,\"message\":\"Bad Authentication data.\"}]}" } } }, { "request": { "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "headers": { "Cookie": [ "guest_id=v1%3A144655293331152269" ], "Host": [ "api.twitter.com" ] }, "body": null }, "response": { "status": { "message": "Bad Request", "code": 400 }, "headers": { "x-response-time": [ "4" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "strict-transport-security": [ "max-age=631138519" ], "date": [ "Tue, 03 Nov 2015 12:15:38 GMT" ], "x-connection-hash": [ "f3384743aac99980194e77031a6b9d66" ], "content-length": [ "62" ] }, "body": { "string": "{\"errors\":[{\"code\":215,\"message\":\"Bad Authentication data.\"}]}" } } }, { "request": { "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages.json", "headers": { "Cookie": [ "guest_id=v1%3A144655293331152269" ], "Host": [ "api.twitter.com" ] }, "body": null }, "response": { "status": { "message": "Bad Request", "code": 400 }, "headers": { "x-response-time": [ "6" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "strict-transport-security": [ "max-age=631138519" ], "date": [ "Tue, 03 Nov 2015 12:15:43 GMT" ], "x-connection-hash": [ "f3384743aac99980194e77031a6b9d66" ], "content-length": [ "62" ] }, "body": { "string": "{\"errors\":[{\"code\":215,\"message\":\"Bad Authentication data.\"}]}" } } } ] } tweepy-3.5.0/cassettes/testfavorites.json000066400000000000000000000247361265716604700206610ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/favorites/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:16 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "85c22396ead43927f8de4acd4e76b03b" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "34cd2dc18d88d89e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2198" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007680872028; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:16 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:16 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380976" ] }, "body": { "string": "[{\"created_at\":\"Thu Oct 15 23:09:06 +0000 2009\",\"id\":4901065281,\"id_str\":\"4901065281\",\"text\":\"another test!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":true,\"retweeted\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/favorites/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:58 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "11dc4c566b7efb7878b684a799947692" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400998" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2198" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:58 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740009832910004; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:58 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "7e6c4b73bc23080b" ] }, "body": { "string": "[{\"created_at\":\"Thu Oct 15 23:09:06 +0000 2009\",\"id\":4901065281,\"id_str\":\"4901065281\",\"text\":\"another test!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":true,\"retweeted\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testfollowers.json000066400000000000000000001745321265716604700206730ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/followers/list.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:17 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "eed083a032865bf8ce646340ebd725d9" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "e58a55dfe7946c92" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "26078" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007709282568; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:17 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:17 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380977" ] }, "body": { "string": "{\"users\":[{\"id\":2786453988,\"id_str\":\"2786453988\",\"name\":\"Drew August\",\"screen_name\":\"aaugust247\",\"location\":\"Planet Hollywood VTheater \",\"profile_location\":null,\"description\":\"50% OFF show tickets messages me for promo code\",\"url\":\"http:\\/\\/t.co\\/3zDMJ6e56p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3zDMJ6e56p\",\"expanded_url\":\"http:\\/\\/www.vtheaterboxoffice.com\",\"display_url\":\"vtheaterboxoffice.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":266,\"listed_count\":1,\"created_at\":\"Tue Sep 02 18:53:21 +0000 2014\",\"favourites_count\":246,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Sep 09 22:21:38 +0000 2014\",\"id\":509466686722813952,\"id_str\":\"509466686722813952\",\"text\":\"RT @2for1shows: Zombies Do Have.. Heart\\u2764 @zburlesque 1\\/2 off tix: http:\\/\\/t.co\\/vhIgiX1YDI http:\\/\\/t.co\\/YXEw12Rf9O\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Aug 13 23:01:27 +0000 2014\",\"id\":499692234472558593,\"id_str\":\"499692234472558593\",\"text\":\"Zombies Do Have.. Heart\\u2764 @zburlesque 1\\/2 off tix: http:\\/\\/t.co\\/vhIgiX1YDI http:\\/\\/t.co\\/YXEw12Rf9O\",\"source\":\"\\u003ca href=\\\"http:\\/\\/social.davidsaxe.com\\\" rel=\\\"nofollow\\\"\\u003eDavid Saxe\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":3,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZBurlesque\",\"name\":\"Zombie Burlesque\",\"id\":2359923678,\"id_str\":\"2359923678\",\"indices\":[25,36]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/vhIgiX1YDI\",\"expanded_url\":\"http:\\/\\/www.2for1shows.com\",\"display_url\":\"2for1shows.com\",\"indices\":[50,72]}],\"media\":[{\"id\":499692234157985792,\"id_str\":\"499692234157985792\",\"indices\":[73,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"url\":\"http:\\/\\/t.co\\/YXEw12Rf9O\",\"display_url\":\"pic.twitter.com\\/YXEw12Rf9O\",\"expanded_url\":\"http:\\/\\/twitter.com\\/2for1shows\\/status\\/499692234472558593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":234,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"2for1shows\",\"name\":\"2for1shows.com\",\"id\":275695866,\"id_str\":\"275695866\",\"indices\":[3,14]},{\"screen_name\":\"ZBurlesque\",\"name\":\"Zombie Burlesque\",\"id\":2359923678,\"id_str\":\"2359923678\",\"indices\":[41,52]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/vhIgiX1YDI\",\"expanded_url\":\"http:\\/\\/www.2for1shows.com\",\"display_url\":\"2for1shows.com\",\"indices\":[66,88]}],\"media\":[{\"id\":499692234157985792,\"id_str\":\"499692234157985792\",\"indices\":[89,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"url\":\"http:\\/\\/t.co\\/YXEw12Rf9O\",\"display_url\":\"pic.twitter.com\\/YXEw12Rf9O\",\"expanded_url\":\"http:\\/\\/twitter.com\\/2for1shows\\/status\\/499692234472558593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":234,\"resize\":\"fit\"}},\"source_status_id\":499692234472558593,\"source_status_id_str\":\"499692234472558593\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/507244068217163776\\/5MjMzp-I_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/507244068217163776\\/5MjMzp-I_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":2300963106,\"id_str\":\"2300963106\",\"name\":\"Farhan Ahmed Khan\",\"screen_name\":\"faksubhan123\",\"location\":\"Pakistan\",\"profile_location\":null,\"description\":\"Hey, This is Farhan Ahmed Khan from Pakistan. I do Affiliate Marketing on the internet....\",\"url\":\"http:\\/\\/t.co\\/96mHAqbf3d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/96mHAqbf3d\",\"expanded_url\":\"http:\\/\\/chickencoopideas.net78.net\\/\",\"display_url\":\"chickencoopideas.net78.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":112,\"listed_count\":2,\"created_at\":\"Mon Jan 20 07:43:22 +0000 2014\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Jul 24 01:01:55 +0000 2014\",\"id\":492112408677072896,\"id_str\":\"492112408677072896\",\"text\":\"I'm ready to work on @oDesk #oDesk http:\\/\\/t.co\\/K1cxyOehkn\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"oDesk\",\"indices\":[28,34]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"odesk\",\"name\":\"oDesk\",\"id\":15225375,\"id_str\":\"15225375\",\"indices\":[21,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/K1cxyOehkn\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1qB6hCe\",\"display_url\":\"bit.ly\\/1qB6hCe\",\"indices\":[35,57]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/487739580422967296\\/D7kJ3wSg_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/487739580422967296\\/D7kJ3wSg_normal.jpeg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":1936745119,\"id_str\":\"1936745119\",\"name\":\"John Medeiros\",\"screen_name\":\"BULLYJOHNRAY\",\"location\":\"SOME WHERE IN N.H.\",\"profile_location\":null,\"description\":\"LOVE WATCHING BOTH T.N.A. & W.W.E. WRESTLING & READING . DO YOU KNOW YOU I AM ? FOLLOW ME I FOLLOW YOU!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":330,\"friends_count\":1216,\"listed_count\":2,\"created_at\":\"Sat Oct 05 06:50:56 +0000 2013\",\"favourites_count\":272,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1103,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Nov 03 22:08:13 +0000 2014\",\"id\":529394643406839808,\"id_str\":\"529394643406839808\",\"text\":\"The ( UnderTaker) in the 15 plus yearz of Kicking azz an Taking Name's. http:\\/\\/t.co\\/P18kmWBWAf\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.facebook.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eFacebook\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/P18kmWBWAf\",\"expanded_url\":\"http:\\/\\/fb.me\\/1XNSoCIqO\",\"display_url\":\"fb.me\\/1XNSoCIqO\",\"indices\":[72,94]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000777545934\\/d2bbe05bd604442910f90096d01213fd_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000777545934\\/d2bbe05bd604442910f90096d01213fd_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1936745119\\/1387214759\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":305754588,\"id_str\":\"305754588\",\"name\":\"penny fink\",\"screen_name\":\"pennyefink\",\"location\":\"Campton city, KY, USA\",\"profile_location\":null,\"description\":\"Leadership - He who has learned how to obey will know how to command. #quote\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":999,\"friends_count\":1425,\"listed_count\":5,\"created_at\":\"Thu May 26 19:02:26 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":469,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Jul 28 23:48:35 +0000 2012\",\"id\":229362749862473728,\"id_str\":\"229362749862473728\",\"text\":\"RT @BrianTracy: Summer is a great time to plan vacations & make memories. Watch my @youtube vid to learn my favorite memory of summe ...\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Jul 28 21:35:04 +0000 2012\",\"id\":229329147405676544,\"id_str\":\"229329147405676544\",\"text\":\"Summer is a great time to plan vacations & make memories. Watch my @youtube vid to learn my favorite memory of summer: http:\\/\\/t.co\\/tFgojT86\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":68,\"favorite_count\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[71,79]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tFgojT86\",\"expanded_url\":\"http:\\/\\/ow.ly\\/cypD4\",\"display_url\":\"ow.ly\\/cypD4\",\"indices\":[123,143]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":68,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrianTracy\",\"name\":\"BrianTracy\",\"id\":16534711,\"id_str\":\"16534711\",\"indices\":[3,14]},{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[87,95]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tFgojT86\",\"expanded_url\":\"http:\\/\\/ow.ly\\/cypD4\",\"display_url\":\"ow.ly\\/cypD4\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/442231848\\/58320226287hkiwllg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/442231848\\/58320226287hkiwllg.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1875720419\\/951745158tyuj6a837089_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1875720419\\/951745158tyuj6a837089_normal.jpg\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"D3D2CF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":933938155,\"id_str\":\"933938155\",\"name\":\"soraya tifani\",\"screen_name\":\"padlikere\",\"location\":\"padlikeren@ymail.com\",\"profile_location\":null,\"description\":\"hhha msy a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_count\":0,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Nov 08 07:52:40 +0000 2012\",\"favourites_count\":2,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11,\"lang\":\"cs\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2821984764\\/fb71e6b97b674b883f4373ddf48fec36_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2821984764\\/fb71e6b97b674b883f4373ddf48fec36_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/933938155\\/1352620755\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":896350026,\"id_str\":\"896350026\",\"name\":\"Didn't you know?\",\"screen_name\":\"NoThatQuote\",\"location\":\"\",\"profile_location\":null,\"description\":\"Didn't you know is mostly tweets that will help you be informed on a number of topics. Also I do can you guess which is mostly highly magnified images.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":476,\"listed_count\":1,\"created_at\":\"Sun Oct 21 23:32:21 +0000 2012\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":247,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Feb 16 21:46:29 +0000 2014\",\"id\":435168331461439488,\"id_str\":\"435168331461439488\",\"text\":\"We can't believe these pictures are real! Especially #1! http:\\/\\/t.co\\/6kGsLt7js3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/mylikes.com\\\" rel=\\\"nofollow\\\"\\u003eMyLikes Network\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/6kGsLt7js3\",\"expanded_url\":\"http:\\/\\/nothatquote.tinybytes.me\\/crazy-images-that-are-actually-real\",\"display_url\":\"nothatquote.tinybytes.me\\/crazy-images-t\\u2026\",\"indices\":[57,79]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"030103\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000176955739\\/j3mlXRZi.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000176955739\\/j3mlXRZi.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/429271842835013632\\/fm3lxKk7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/429271842835013632\\/fm3lxKk7_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/896350026\\/1390894746\",\"profile_link_color\":\"0A38AD\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"FA8459\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":325253963,\"id_str\":\"325253963\",\"name\":\"Majid Rana\",\"screen_name\":\"MajidRana76\",\"location\":\"United Kingdom\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":156,\"friends_count\":1279,\"listed_count\":0,\"created_at\":\"Tue Jun 28 00:27:12 +0000 2011\",\"favourites_count\":2,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":98,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Sep 14 06:56:57 +0000 2014\",\"id\":511045922919178241,\"id_str\":\"511045922919178241\",\"text\":\"@LahoreLions \\nAsslamo Alieykum\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":511045771974561792,\"in_reply_to_status_id_str\":\"511045771974561792\",\"in_reply_to_user_id\":267702009,\"in_reply_to_user_id_str\":\"267702009\",\"in_reply_to_screen_name\":\"iplhome\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LahoreLions\",\"name\":\"LahoreLions Official\",\"id\":210816446,\"id_str\":\"210816446\",\"indices\":[0,12]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"tr\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3464162808\\/9ccbe234cd8fe711c2522ca481588832_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3464162808\\/9ccbe234cd8fe711c2522ca481588832_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/325253963\\/1364860936\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":176506425,\"id_str\":\"176506425\",\"name\":\"Claudia Asaeli\",\"screen_name\":\"xok_itc_hen_12\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":40,\"listed_count\":0,\"created_at\":\"Mon Aug 09 18:37:11 +0000 2010\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Sep 10 08:11:22 +0000 2010\",\"id\":24087208718,\"id_str\":\"24087208718\",\"text\":\"Het is tijd om wat serieuzer te worden, te beginnen met solliciteren!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"nl\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":82407351,\"id_str\":\"82407351\",\"name\":\"test\",\"screen_name\":\"tweepytest2\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"just testing things out\",\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"expanded_url\":\"http:\\/\\/www.example.com\",\"display_url\":\"example.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Wed Oct 14 17:13:03 +0000 2009\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 14 05:45:33 +0000 2009\",\"id\":5702713723,\"id_str\":\"5702713723\",\"text\":\"test 142\",\"source\":\"\\u003ca href=\\\"http:\\/\\/gitorious.org\\/tweepy\\\" rel=\\\"nofollow\\\"\\u003etweepy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 22:08:13 +0000 2014\",\"id\":537367178241409025,\"id_str\":\"537367178241409025\",\"text\":\"Two dots just got a dollar from me to get more moves. Sneaky in app purchases.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/followers/list.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:58 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "cf409dfcc75ea52155fdb5bf5c9ecfde" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400998" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "26078" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:58 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740009870269728; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:58 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "24b1bdfc632a364a" ] }, "body": { "string": "{\"users\":[{\"id\":2786453988,\"id_str\":\"2786453988\",\"name\":\"Drew August\",\"screen_name\":\"aaugust247\",\"location\":\"Planet Hollywood VTheater \",\"profile_location\":null,\"description\":\"50% OFF show tickets messages me for promo code\",\"url\":\"http:\\/\\/t.co\\/3zDMJ6e56p\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3zDMJ6e56p\",\"expanded_url\":\"http:\\/\\/www.vtheaterboxoffice.com\",\"display_url\":\"vtheaterboxoffice.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":53,\"friends_count\":266,\"listed_count\":1,\"created_at\":\"Tue Sep 02 18:53:21 +0000 2014\",\"favourites_count\":246,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":55,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Sep 09 22:21:38 +0000 2014\",\"id\":509466686722813952,\"id_str\":\"509466686722813952\",\"text\":\"RT @2for1shows: Zombies Do Have.. Heart\\u2764 @zburlesque 1\\/2 off tix: http:\\/\\/t.co\\/vhIgiX1YDI http:\\/\\/t.co\\/YXEw12Rf9O\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Aug 13 23:01:27 +0000 2014\",\"id\":499692234472558593,\"id_str\":\"499692234472558593\",\"text\":\"Zombies Do Have.. Heart\\u2764 @zburlesque 1\\/2 off tix: http:\\/\\/t.co\\/vhIgiX1YDI http:\\/\\/t.co\\/YXEw12Rf9O\",\"source\":\"\\u003ca href=\\\"http:\\/\\/social.davidsaxe.com\\\" rel=\\\"nofollow\\\"\\u003eDavid Saxe\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":3,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ZBurlesque\",\"name\":\"Zombie Burlesque\",\"id\":2359923678,\"id_str\":\"2359923678\",\"indices\":[25,36]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/vhIgiX1YDI\",\"expanded_url\":\"http:\\/\\/www.2for1shows.com\",\"display_url\":\"2for1shows.com\",\"indices\":[50,72]}],\"media\":[{\"id\":499692234157985792,\"id_str\":\"499692234157985792\",\"indices\":[73,95],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"url\":\"http:\\/\\/t.co\\/YXEw12Rf9O\",\"display_url\":\"pic.twitter.com\\/YXEw12Rf9O\",\"expanded_url\":\"http:\\/\\/twitter.com\\/2for1shows\\/status\\/499692234472558593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":234,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"2for1shows\",\"name\":\"2for1shows.com\",\"id\":275695866,\"id_str\":\"275695866\",\"indices\":[3,14]},{\"screen_name\":\"ZBurlesque\",\"name\":\"Zombie Burlesque\",\"id\":2359923678,\"id_str\":\"2359923678\",\"indices\":[41,52]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/vhIgiX1YDI\",\"expanded_url\":\"http:\\/\\/www.2for1shows.com\",\"display_url\":\"2for1shows.com\",\"indices\":[66,88]}],\"media\":[{\"id\":499692234157985792,\"id_str\":\"499692234157985792\",\"indices\":[89,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu9DcIICEAAOEIN.jpg\",\"url\":\"http:\\/\\/t.co\\/YXEw12Rf9O\",\"display_url\":\"pic.twitter.com\\/YXEw12Rf9O\",\"expanded_url\":\"http:\\/\\/twitter.com\\/2for1shows\\/status\\/499692234472558593\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":817,\"h\":564,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":414,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":234,\"resize\":\"fit\"}},\"source_status_id\":499692234472558593,\"source_status_id_str\":\"499692234472558593\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/507244068217163776\\/5MjMzp-I_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/507244068217163776\\/5MjMzp-I_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":2300963106,\"id_str\":\"2300963106\",\"name\":\"Farhan Ahmed Khan\",\"screen_name\":\"faksubhan123\",\"location\":\"Pakistan\",\"profile_location\":null,\"description\":\"Hey, This is Farhan Ahmed Khan from Pakistan. I do Affiliate Marketing on the internet....\",\"url\":\"http:\\/\\/t.co\\/96mHAqbf3d\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/96mHAqbf3d\",\"expanded_url\":\"http:\\/\\/chickencoopideas.net78.net\\/\",\"display_url\":\"chickencoopideas.net78.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":112,\"listed_count\":2,\"created_at\":\"Mon Jan 20 07:43:22 +0000 2014\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Jul 24 01:01:55 +0000 2014\",\"id\":492112408677072896,\"id_str\":\"492112408677072896\",\"text\":\"I'm ready to work on @oDesk #oDesk http:\\/\\/t.co\\/K1cxyOehkn\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"oDesk\",\"indices\":[28,34]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"odesk\",\"name\":\"oDesk\",\"id\":15225375,\"id_str\":\"15225375\",\"indices\":[21,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/K1cxyOehkn\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1qB6hCe\",\"display_url\":\"bit.ly\\/1qB6hCe\",\"indices\":[35,57]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/487739580422967296\\/D7kJ3wSg_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/487739580422967296\\/D7kJ3wSg_normal.jpeg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":1936745119,\"id_str\":\"1936745119\",\"name\":\"John Medeiros\",\"screen_name\":\"BULLYJOHNRAY\",\"location\":\"SOME WHERE IN N.H.\",\"profile_location\":null,\"description\":\"LOVE WATCHING BOTH T.N.A. & W.W.E. WRESTLING & READING . DO YOU KNOW YOU I AM ? FOLLOW ME I FOLLOW YOU!!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":330,\"friends_count\":1216,\"listed_count\":2,\"created_at\":\"Sat Oct 05 06:50:56 +0000 2013\",\"favourites_count\":272,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1103,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Nov 03 22:08:13 +0000 2014\",\"id\":529394643406839808,\"id_str\":\"529394643406839808\",\"text\":\"The ( UnderTaker) in the 15 plus yearz of Kicking azz an Taking Name's. http:\\/\\/t.co\\/P18kmWBWAf\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.facebook.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eFacebook\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/P18kmWBWAf\",\"expanded_url\":\"http:\\/\\/fb.me\\/1XNSoCIqO\",\"display_url\":\"fb.me\\/1XNSoCIqO\",\"indices\":[72,94]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000777545934\\/d2bbe05bd604442910f90096d01213fd_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000777545934\\/d2bbe05bd604442910f90096d01213fd_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1936745119\\/1387214759\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":305754588,\"id_str\":\"305754588\",\"name\":\"penny fink\",\"screen_name\":\"pennyefink\",\"location\":\"Campton city, KY, USA\",\"profile_location\":null,\"description\":\"Leadership - He who has learned how to obey will know how to command. #quote\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":999,\"friends_count\":1425,\"listed_count\":6,\"created_at\":\"Thu May 26 19:02:26 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":469,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Jul 28 23:48:35 +0000 2012\",\"id\":229362749862473728,\"id_str\":\"229362749862473728\",\"text\":\"RT @BrianTracy: Summer is a great time to plan vacations & make memories. Watch my @youtube vid to learn my favorite memory of summe ...\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Jul 28 21:35:04 +0000 2012\",\"id\":229329147405676544,\"id_str\":\"229329147405676544\",\"text\":\"Summer is a great time to plan vacations & make memories. Watch my @youtube vid to learn my favorite memory of summer: http:\\/\\/t.co\\/tFgojT86\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":68,\"favorite_count\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[71,79]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tFgojT86\",\"expanded_url\":\"http:\\/\\/ow.ly\\/cypD4\",\"display_url\":\"ow.ly\\/cypD4\",\"indices\":[123,143]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":68,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrianTracy\",\"name\":\"BrianTracy\",\"id\":16534711,\"id_str\":\"16534711\",\"indices\":[3,14]},{\"screen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indices\":[87,95]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tFgojT86\",\"expanded_url\":\"http:\\/\\/ow.ly\\/cypD4\",\"display_url\":\"ow.ly\\/cypD4\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/442231848\\/58320226287hkiwllg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/442231848\\/58320226287hkiwllg.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1875720419\\/951745158tyuj6a837089_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1875720419\\/951745158tyuj6a837089_normal.jpg\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"D3D2CF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":933938155,\"id_str\":\"933938155\",\"name\":\"soraya tifani\",\"screen_name\":\"padlikere\",\"location\":\"padlikeren@ymail.com\",\"profile_location\":null,\"description\":\"hhha msy a\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_count\":0,\"friends_count\":20,\"listed_count\":0,\"created_at\":\"Thu Nov 08 07:52:40 +0000 2012\",\"favourites_count\":2,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":11,\"lang\":\"cs\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2821984764\\/fb71e6b97b674b883f4373ddf48fec36_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2821984764\\/fb71e6b97b674b883f4373ddf48fec36_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/933938155\\/1352620755\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":896350026,\"id_str\":\"896350026\",\"name\":\"Didn't you know?\",\"screen_name\":\"NoThatQuote\",\"location\":\"\",\"profile_location\":null,\"description\":\"Didn't you know is mostly tweets that will help you be informed on a number of topics. Also I do can you guess which is mostly highly magnified images.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":221,\"friends_count\":476,\"listed_count\":1,\"created_at\":\"Sun Oct 21 23:32:21 +0000 2012\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":247,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Feb 16 21:46:29 +0000 2014\",\"id\":435168331461439488,\"id_str\":\"435168331461439488\",\"text\":\"We can't believe these pictures are real! Especially #1! http:\\/\\/t.co\\/6kGsLt7js3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/mylikes.com\\\" rel=\\\"nofollow\\\"\\u003eMyLikes Network\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/6kGsLt7js3\",\"expanded_url\":\"http:\\/\\/nothatquote.tinybytes.me\\/crazy-images-that-are-actually-real\",\"display_url\":\"nothatquote.tinybytes.me\\/crazy-images-t\\u2026\",\"indices\":[57,79]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"030103\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000176955739\\/j3mlXRZi.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000176955739\\/j3mlXRZi.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/429271842835013632\\/fm3lxKk7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/429271842835013632\\/fm3lxKk7_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/896350026\\/1390894746\",\"profile_link_color\":\"0A38AD\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"FA8459\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":325253963,\"id_str\":\"325253963\",\"name\":\"Majid Rana\",\"screen_name\":\"MajidRana76\",\"location\":\"United Kingdom\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":156,\"friends_count\":1279,\"listed_count\":0,\"created_at\":\"Tue Jun 28 00:27:12 +0000 2011\",\"favourites_count\":2,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":98,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Sep 14 06:56:57 +0000 2014\",\"id\":511045922919178241,\"id_str\":\"511045922919178241\",\"text\":\"@LahoreLions \\nAsslamo Alieykum\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":511045771974561792,\"in_reply_to_status_id_str\":\"511045771974561792\",\"in_reply_to_user_id\":267702009,\"in_reply_to_user_id_str\":\"267702009\",\"in_reply_to_screen_name\":\"iplhome\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LahoreLions\",\"name\":\"LahoreLions Official\",\"id\":210816446,\"id_str\":\"210816446\",\"indices\":[0,12]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"tr\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0099B9\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3464162808\\/9ccbe234cd8fe711c2522ca481588832_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3464162808\\/9ccbe234cd8fe711c2522ca481588832_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/325253963\\/1364860936\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_border_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":176506425,\"id_str\":\"176506425\",\"name\":\"Claudia Asaeli\",\"screen_name\":\"xok_itc_hen_12\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":40,\"listed_count\":0,\"created_at\":\"Mon Aug 09 18:37:11 +0000 2010\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Sep 10 08:11:22 +0000 2010\",\"id\":24087208718,\"id_str\":\"24087208718\",\"text\":\"Het is tijd om wat serieuzer te worden, te beginnen met solliciteren!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"nl\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":82407351,\"id_str\":\"82407351\",\"name\":\"test\",\"screen_name\":\"tweepytest2\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"just testing things out\",\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"expanded_url\":\"http:\\/\\/www.example.com\",\"display_url\":\"example.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Wed Oct 14 17:13:03 +0000 2009\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 14 05:45:33 +0000 2009\",\"id\":5702713723,\"id_str\":\"5702713723\",\"text\":\"test 142\",\"source\":\"\\u003ca href=\\\"http:\\/\\/gitorious.org\\/tweepy\\\" rel=\\\"nofollow\\\"\\u003etweepy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 22:08:13 +0000 2014\",\"id\":537367178241409025,\"id_str\":\"537367178241409025\",\"text\":\"Two dots just got a dollar from me to get more moves. Sneaky in app purchases.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testfollowersids.json000066400000000000000000000141601265716604700213610ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/followers/ids.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:17 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1947ed29402bb4051f14ef3aa3244067" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "577338e09bb4a407" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "193" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007789094878; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:17 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:17 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380977" ] }, "body": { "string": "{\"ids\":[2786453988,2300963106,1936745119,305754588,933938155,896350026,325253963,176506425,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/followers/ids.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:59 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "71c1d4a93e7fcbd43b8234a0573a3894" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400999" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "193" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:59 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740009946906158; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:59 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "3255b204b471ce84" ] }, "body": { "string": "{\"ids\":[2786453988,2300963106,1936745119,305754588,933938155,896350026,325253963,176506425,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testfriends.json000066400000000000000000002507561265716604700203140ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friends/list.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:18 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "4e587ae0f96bd962cc7680d09193e54f" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "cc917fed9e877270" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "35821" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007824728226; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:18 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:18 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380978" ] }, "body": { "string": "{\"users\":[{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620550,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602828,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:15:14 +0000 2014\",\"id\":539105384380633088,\"id_str\":\"539105384380633088\",\"text\":\"RT @GooglePlay: Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZx\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 15:00:58 +0000 2014\",\"id\":539071594698899456,\"id_str\":\"539071594698899456\",\"text\":\"Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZxUUQaY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":118,\"favorite_count\":198,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[44,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[83,105]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":118,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[60,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[99,121]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":56505125,\"id_str\":\"56505125\",\"name\":\"Google Chrome\",\"screen_name\":\"googlechrome\",\"location\":\"Mountain View, California\",\"profile_location\":null,\"description\":\"The official Twitter account for the Google Chrome browser, OS, Chromebooks, Chromecast, and Web Store\",\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"expanded_url\":\"http:\\/\\/google.com\\/chrome\",\"display_url\":\"google.com\\/chrome\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4652752,\"friends_count\":84,\"listed_count\":14162,\"created_at\":\"Mon Jul 13 21:51:56 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":863,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 16:08:35 +0000 2014\",\"id\":538363834637885440,\"id_str\":\"538363834637885440\",\"text\":\"Get your casting queue ready for #BlackFriday: #Chromecast now $25 at select retailers, includes free @HuluPlus trial http:\\/\\/t.co\\/MNJlS3JQyt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":52,\"favorite_count\":64,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[33,45]},{\"text\":\"Chromecast\",\"indices\":[47,58]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HuluPlus\",\"name\":\"HuluPlus\",\"id\":478843932,\"id_str\":\"478843932\",\"indices\":[102,111]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MNJlS3JQyt\",\"expanded_url\":\"http:\\/\\/goo.gl\\/RoPLaF\",\"display_url\":\"goo.gl\\/RoPLaF\",\"indices\":[118,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641775,\"friends_count\":0,\"listed_count\":3474,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 21 17:56:07 +0000 2014\",\"id\":535854182360576001,\"id_str\":\"535854182360576001\",\"text\":\"RT @ApacheMesos: Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 20 23:57:53 +0000 2014\",\"id\":535582834585776129,\"id_str\":\"535582834585776129\",\"text\":\"Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/PC1FaxEiR2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":80,\"favorite_count\":41,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[26,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[110,132]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":80,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[43,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ApacheMesos\",\"name\":\"Apache Mesos\",\"id\":519262288,\"id_str\":\"519262288\",\"indices\":[3,15]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":748853,\"friends_count\":3,\"listed_count\":3343,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:30:04 +0000 2014\",\"id\":537644465092304898,\"id_str\":\"537644465092304898\",\"text\":\"RT @twitter: We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wM\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":289,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[71,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[124,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":130649891,\"id_str\":\"130649891\",\"name\":\"Twitter Media\",\"screen_name\":\"twittermedia\",\"location\":\"San Francisco\",\"profile_location\":null,\"description\":\"Tracking cool, meaningful uses of Tweets in media, tv, sports, entertainment and journalism. Send us tips! https:\\/\\/t.co\\/KM5HvDzxl1\",\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KM5HvDzxl1\",\"expanded_url\":\"https:\\/\\/media.twitter.com\\/\",\"display_url\":\"media.twitter.com\",\"indices\":[107,130]}]}},\"protected\":false,\"followers_count\":4171333,\"friends_count\":295,\"listed_count\":10068,\"created_at\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count\":125,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1280,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 19 01:53:31 +0000 2014\",\"id\":534887161640677377,\"id_str\":\"534887161640677377\",\"text\":\"#TheInterviewMovie co-directors @Sethrogen and @evandgoldberg visited Twitter HQ today for a Q&A. Check it out: https:\\/\\/t.co\\/kxYjT4WF7K\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":51,\"favorite_count\":38,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[0,18]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[32,42]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[47,61]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kxYjT4WF7K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/534884919961329664\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/1396978668\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4248277,\"friends_count\":263,\"listed_count\":6486,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2138,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 01:43:00 +0000 2014\",\"id\":538870779103158272,\"id_str\":\"538870779103158272\",\"text\":\"RT @USCBookstore: Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 17:00:07 +0000 2014\",\"id\":538739192843350021,\"id_str\":\"538739192843350021\",\"text\":\"Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":40,\"favorite_count\":17,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[62,70]},{\"text\":\"USC\",\"indices\":[71,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[76,99]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":40,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[80,88]},{\"text\":\"USC\",\"indices\":[89,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USCBookstore\",\"name\":\"USC Bookstore\",\"id\":39372927,\"id_str\":\"39372927\",\"indices\":[3,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[94,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"profile_location\":null,\"description\":\"#everywhere isn\\u2019t just a place. It can be the journey. It could be the destination. But it\\u2019s always a new state of mind.\",\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":239356,\"friends_count\":1185,\"listed_count\":746,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":463,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":13024,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:56:53 +0000 2014\",\"id\":539146065992503297,\"id_str\":\"539146065992503297\",\"text\":\"@marleenvkammen Thanks for sharing. You could win $500!\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539145217597652992,\"in_reply_to_status_id_str\":\"539145217597652992\",\"in_reply_to_user_id\":799347870,\"in_reply_to_user_id_str\":\"799347870\",\"in_reply_to_screen_name\":\"marleenvkammen\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"marleenvkammen\",\"name\":\"Marleen van Kammen\",\"id\":799347870,\"id_str\":\"799347870\",\"indices\":[0,15]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1405461475\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777264,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:00:07 +0000 2014\",\"id\":539146877577748480,\"id_str\":\"539146877577748480\",\"text\":\"A solid case for napping at work tomorrow. http:\\/\\/t.co\\/YgMWdT85Uh http:\\/\\/t.co\\/4G4vLeyWEw\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":72,\"favorite_count\":240,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YgMWdT85Uh\",\"expanded_url\":\"http:\\/\\/goo.gl\\/VKiJEZ\",\"display_url\":\"goo.gl\\/VKiJEZ\",\"indices\":[43,65]}],\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":82407351,\"id_str\":\"82407351\",\"name\":\"test\",\"screen_name\":\"tweepytest2\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"just testing things out\",\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"expanded_url\":\"http:\\/\\/www.example.com\",\"display_url\":\"example.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Wed Oct 14 17:13:03 +0000 2009\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 14 05:45:33 +0000 2009\",\"id\":5702713723,\"id_str\":\"5702713723\",\"text\":\"test 142\",\"source\":\"\\u003ca href=\\\"http:\\/\\/gitorious.org\\/tweepy\\\" rel=\\\"nofollow\\\"\\u003etweepy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 22:08:13 +0000 2014\",\"id\":537367178241409025,\"id_str\":\"537367178241409025\",\"text\":\"Two dots just got a dollar from me to get more moves. Sneaky in app purchases.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friends/list.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:14:59 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "0f62586cbf06823c53a4490452ac6e22" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400999" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "36636" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:14:59 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740009982655307; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:14:59 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "4203f59ab3b4c292" ] }, "body": { "string": "{\"users\":[{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621106,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603497,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:15:14 +0000 2014\",\"id\":539105384380633088,\"id_str\":\"539105384380633088\",\"text\":\"RT @GooglePlay: Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZx\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 15:00:58 +0000 2014\",\"id\":539071594698899456,\"id_str\":\"539071594698899456\",\"text\":\"Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZxUUQaY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":169,\"favorite_count\":249,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[44,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[83,105]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":169,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[60,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[99,121]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":56505125,\"id_str\":\"56505125\",\"name\":\"Google Chrome\",\"screen_name\":\"googlechrome\",\"location\":\"Mountain View, California\",\"profile_location\":null,\"description\":\"The official Twitter account for the Google Chrome browser, OS, Chromebooks, Chromecast, and Web Store\",\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"expanded_url\":\"http:\\/\\/google.com\\/chrome\",\"display_url\":\"google.com\\/chrome\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4653107,\"friends_count\":84,\"listed_count\":14157,\"created_at\":\"Mon Jul 13 21:51:56 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":863,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 16:08:35 +0000 2014\",\"id\":538363834637885440,\"id_str\":\"538363834637885440\",\"text\":\"Get your casting queue ready for #BlackFriday: #Chromecast now $25 at select retailers, includes free @HuluPlus trial http:\\/\\/t.co\\/MNJlS3JQyt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":54,\"favorite_count\":65,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[33,45]},{\"text\":\"Chromecast\",\"indices\":[47,58]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HuluPlus\",\"name\":\"HuluPlus\",\"id\":478843932,\"id_str\":\"478843932\",\"indices\":[102,111]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MNJlS3JQyt\",\"expanded_url\":\"http:\\/\\/goo.gl\\/RoPLaF\",\"display_url\":\"goo.gl\\/RoPLaF\",\"indices\":[118,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641907,\"friends_count\":0,\"listed_count\":3473,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 21 17:56:07 +0000 2014\",\"id\":535854182360576001,\"id_str\":\"535854182360576001\",\"text\":\"RT @ApacheMesos: Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 20 23:57:53 +0000 2014\",\"id\":535582834585776129,\"id_str\":\"535582834585776129\",\"text\":\"Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/PC1FaxEiR2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":80,\"favorite_count\":41,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[26,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[110,132]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":80,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[43,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ApacheMesos\",\"name\":\"Apache Mesos\",\"id\":519262288,\"id_str\":\"519262288\",\"indices\":[3,15]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":749007,\"friends_count\":3,\"listed_count\":3343,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:30:04 +0000 2014\",\"id\":537644465092304898,\"id_str\":\"537644465092304898\",\"text\":\"RT @twitter: We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wM\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":290,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[71,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[124,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":130649891,\"id_str\":\"130649891\",\"name\":\"Twitter Media\",\"screen_name\":\"twittermedia\",\"location\":\"San Francisco\",\"profile_location\":null,\"description\":\"Tracking cool, meaningful uses of Tweets in media, tv, sports, entertainment and journalism. Send us tips! https:\\/\\/t.co\\/KM5HvDzxl1\",\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KM5HvDzxl1\",\"expanded_url\":\"https:\\/\\/media.twitter.com\\/\",\"display_url\":\"media.twitter.com\",\"indices\":[107,130]}]}},\"protected\":false,\"followers_count\":4173296,\"friends_count\":295,\"listed_count\":10070,\"created_at\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count\":125,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1280,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 19 01:53:31 +0000 2014\",\"id\":534887161640677377,\"id_str\":\"534887161640677377\",\"text\":\"#TheInterviewMovie co-directors @Sethrogen and @evandgoldberg visited Twitter HQ today for a Q&A. Check it out: https:\\/\\/t.co\\/kxYjT4WF7K\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":51,\"favorite_count\":38,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[0,18]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[32,42]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[47,61]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kxYjT4WF7K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/534884919961329664\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/1396978668\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246359,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 23:18:55 +0000 2014\",\"id\":539196909924413440,\"id_str\":\"539196909924413440\",\"text\":\"RT @CFL: .@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 22:53:26 +0000 2014\",\"id\":539190494191165440,\"id_str\":\"539190494191165440\",\"text\":\".@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":537,\"favorite_count\":749,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[27,35]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[1,17]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[36,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":537,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[36,44]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]},{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[10,26]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[45,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}},\"source_status_id\":539190494191165440,\"source_status_id_str\":\"539190494191165440\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"profile_location\":null,\"description\":\"#everywhere isn\\u2019t just a place. It can be the journey. It could be the destination. But it\\u2019s always a new state of mind.\",\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":239548,\"friends_count\":1185,\"listed_count\":746,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":463,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":13052,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 01:29:18 +0000 2014\",\"id\":539229721482235904,\"id_str\":\"539229721482235904\",\"text\":\"@coconuthead227 Thanks for sharing and good luck in the sweeps!\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539229021570367488,\"in_reply_to_status_id_str\":\"539229021570367488\",\"in_reply_to_user_id\":2309131632,\"in_reply_to_user_id_str\":\"2309131632\",\"in_reply_to_screen_name\":\"coconuthead227\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"coconuthead227\",\"name\":\"Cookie Monster\",\"id\":2309131632,\"id_str\":\"2309131632\",\"indices\":[0,15]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1405461475\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 02:00:35 +0000 2014\",\"id\":539237595235237889,\"id_str\":\"539237595235237889\",\"text\":\"Here\\u2019s some gym-spiration in case you ate too many leftovers this weekend. http:\\/\\/t.co\\/S2f03hDmK6 http:\\/\\/t.co\\/gswAAnw0O8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":158,\"favorite_count\":269,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/S2f03hDmK6\",\"expanded_url\":\"http:\\/\\/goo.gl\\/Z5CM3v\",\"display_url\":\"goo.gl\\/Z5CM3v\",\"indices\":[75,97]}],\"media\":[{\"id\":539237595130372096,\"id_str\":\"539237595130372096\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"url\":\"http:\\/\\/t.co\\/gswAAnw0O8\",\"display_url\":\"pic.twitter.com\\/gswAAnw0O8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539237595235237889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":186,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":82407351,\"id_str\":\"82407351\",\"name\":\"test\",\"screen_name\":\"tweepytest2\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"just testing things out\",\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"expanded_url\":\"http:\\/\\/www.example.com\",\"display_url\":\"example.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Wed Oct 14 17:13:03 +0000 2009\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 14 05:45:33 +0000 2009\",\"id\":5702713723,\"id_str\":\"5702713723\",\"text\":\"test 142\",\"source\":\"\\u003ca href=\\\"http:\\/\\/gitorious.org\\/tweepy\\\" rel=\\\"nofollow\\\"\\u003etweepy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false},{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 22:08:13 +0000 2014\",\"id\":537367178241409025,\"id_str\":\"537367178241409025\",\"text\":\"Two dots just got a dollar from me to get more moves. Sneaky in app purchases.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false,\"muting\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testfriendsids.json000066400000000000000000000141541265716604700210020ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friends/ids.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:18 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "852ea506051c5d57a2a68f64b7ae119b" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "7fa8a5c902916b6d" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "193" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738007879183090; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:18 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:18 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380978" ] }, "body": { "string": "{\"ids\":[783214,382267114,56505125,6844292,222953824,130649891,300392950,551373363,10228272,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friends/ids.json?id=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:00 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6afc2253a37ee79702ecf39091f4152f" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401000" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "193" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:00 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010044375701; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:00 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "105f02fd81cd1628" ] }, "body": { "string": "{\"ids\":[783214,382267114,56505125,6844292,222953824,130649891,300392950,551373363,10228272,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testgeoapis.json000066400000000000000000002116151265716604700203000ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/geo/similar_places.json?lat=37.7821120599&name=South+of+Market+Child+Care&long=-122.400612831", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:19 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9719a72383c3198a9e6bc7c803941454" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "856b0ab4c497ebc9" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "19925" ], "set-cookie": [ "guest_id=v1%3A141738007906456441; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:19 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:19 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380979" ] }, "body": { "string": "{\"result\":{\"places\":[{\"id\":\"1d019624e6b4dcff\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1d019624e6b4dcff.json\",\"place_type\":\"neighborhood\",\"name\":\"South of Market\",\"full_name\":\"South of Market, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.418714,37.764094],[-122.418714,37.789283],[-122.379692,37.789283],[-122.379692,37.764094],[-122.418714,37.764094]]]},\"attributes\":{}},{\"id\":\"5c92ab5379de3839\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5c92ab5379de3839.json\",\"place_type\":\"neighborhood\",\"name\":\"South Beach\",\"full_name\":\"South Beach, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.401378,37.7776245],[-122.401378,37.798014],[-122.3809835,37.798014],[-122.3809835,37.7776245],[-122.401378,37.7776245]]]},\"attributes\":{}},{\"id\":\"640e4689c80fb4c5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/640e4689c80fb4c5.json\",\"place_type\":\"neighborhood\",\"name\":\"Upper Market\",\"full_name\":\"Upper Market, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.446503,37.7617761],[-122.446503,37.769655],[-122.426242,37.769655],[-122.426242,37.7617761],[-122.446503,37.7617761]]]},\"attributes\":{}},{\"id\":\"746cc5651750e057\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/746cc5651750e057.json\",\"place_type\":\"city\",\"name\":\"South San Francisco\",\"full_name\":\"South San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-124.482003,42.009519],[-114.131212,42.009519],[-114.131212,32.528832],[-124.482003,32.528832]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.471871,37.6345111],[-122.471871,37.683086],[-122.374366,37.683086],[-122.374366,37.6345111],[-122.471871,37.6345111]]]},\"attributes\":{}},{\"id\":\"78f29e0fbc3e5c3b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/78f29e0fbc3e5c3b.json\",\"place_type\":\"neighborhood\",\"name\":\"South of Midtown\",\"full_name\":\"South of Midtown, Palo Alto\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"3ad0f706b3fa62a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3ad0f706b3fa62a8.json\",\"place_type\":\"city\",\"name\":\"Palo Alto\",\"full_name\":\"Palo Alto, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.190523,37.362824],[-122.190523,37.465918],[-122.097537,37.465918],[-122.097537,37.362824],[-122.190523,37.362824]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.131468,37.417566],[-122.131468,37.429148],[-122.114745,37.429148],[-122.114745,37.417566],[-122.131468,37.417566]]]},\"attributes\":{}},{\"id\":\"3412e9dd2250b64d\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3412e9dd2250b64d.json\",\"place_type\":\"neighborhood\",\"name\":\"University South\",\"full_name\":\"University South, Palo Alto\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"3ad0f706b3fa62a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3ad0f706b3fa62a8.json\",\"place_type\":\"city\",\"name\":\"Palo Alto\",\"full_name\":\"Palo Alto, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.190523,37.362824],[-122.190523,37.465918],[-122.097537,37.465918],[-122.097537,37.362824],[-122.190523,37.362824]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.164271,37.438302],[-122.164271,37.45074],[-122.143171,37.45074],[-122.143171,37.438302],[-122.164271,37.438302]]]},\"attributes\":{}},{\"id\":\"18cccad2227da65c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/18cccad2227da65c.json\",\"place_type\":\"neighborhood\",\"name\":\"Market Almaden\",\"full_name\":\"Market Almaden, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.890935,37.3243217],[-121.890935,37.330009],[-121.883041,37.330009],[-121.883041,37.3243217],[-121.890935,37.3243217]]]},\"attributes\":{}},{\"id\":\"2a240dbd5e3d0d60\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/2a240dbd5e3d0d60.json\",\"place_type\":\"neighborhood\",\"name\":\"Cumberland South\",\"full_name\":\"Cumberland South, Sunnyvale\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"45cadd6ef118ec9f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/45cadd6ef118ec9f.json\",\"place_type\":\"city\",\"name\":\"Sunnyvale\",\"full_name\":\"Sunnyvale, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.065206,37.3300682],[-122.065206,37.4267257],[-121.982475,37.4267257],[-121.982475,37.3300682],[-122.065206,37.3300682]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.050352,37.3594382],[-122.050352,37.3654137],[-122.0414998,37.3654137],[-122.0414998,37.3594382],[-122.050352,37.3594382]]]},\"attributes\":{}},{\"id\":\"2fa88dca68b9df96\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/2fa88dca68b9df96.json\",\"place_type\":\"neighborhood\",\"name\":\"South Los Altos\",\"full_name\":\"South Los Altos, Los Altos\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"6a4364ea6f987c10\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6a4364ea6f987c10.json\",\"place_type\":\"city\",\"name\":\"Los Altos\",\"full_name\":\"Los Altos, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.129474,37.329932],[-122.129474,37.406473],[-122.060782,37.406473],[-122.060782,37.329932],[-122.129474,37.329932]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.078002,37.337478],[-122.078002,37.3592652],[-122.05969,37.3592652],[-122.05969,37.337478],[-122.078002,37.337478]]]},\"attributes\":{}},{\"id\":\"18b634927abdd39d\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/18b634927abdd39d.json\",\"place_type\":\"neighborhood\",\"name\":\"Calabazas South\",\"full_name\":\"Calabazas South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.03155,37.2939709],[-122.03155,37.3011451],[-122.0236949,37.3011451],[-122.0236949,37.2939709],[-122.03155,37.2939709]]]},\"attributes\":{}},{\"id\":\"05eacbd8d1aa01cd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/05eacbd8d1aa01cd.json\",\"place_type\":\"neighborhood\",\"name\":\"Flickinger South\",\"full_name\":\"Flickinger South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.873283,37.379857],[-121.873283,37.3895353],[-121.862908,37.3895353],[-121.862908,37.379857],[-121.873283,37.379857]]]},\"attributes\":{}},{\"id\":\"7262a1ac091221f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7262a1ac091221f6.json\",\"place_type\":\"neighborhood\",\"name\":\"Vinci South\",\"full_name\":\"Vinci South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8786112,37.371757],[-121.8786112,37.385461],[-121.867352,37.385461],[-121.867352,37.371757],[-121.8786112,37.371757]]]},\"attributes\":{}},{\"id\":\"02d7ed9dda1ec670\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/02d7ed9dda1ec670.json\",\"place_type\":\"neighborhood\",\"name\":\"South Campus\",\"full_name\":\"South Campus, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.885042,37.326856],[-121.885042,37.335993],[-121.871896,37.335993],[-121.871896,37.326856],[-121.885042,37.326856]]]},\"attributes\":{}},{\"id\":\"4b0d4e092c2bbf38\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/4b0d4e092c2bbf38.json\",\"place_type\":\"neighborhood\",\"name\":\"Brookwood South\",\"full_name\":\"Brookwood South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.866968,37.331588],[-121.866968,37.340828],[-121.8615862,37.340828],[-121.8615862,37.331588],[-121.866968,37.331588]]]},\"attributes\":{}},{\"id\":\"6a2cd44438fa430a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6a2cd44438fa430a.json\",\"place_type\":\"neighborhood\",\"name\":\"Clayton South\",\"full_name\":\"Clayton South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.80151,37.3506109],[-121.80151,37.3556331],[-121.7948906,37.3556331],[-121.7948906,37.3506109],[-121.80151,37.3506109]]]},\"attributes\":{}},{\"id\":\"3f690c039272386c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3f690c039272386c.json\",\"place_type\":\"neighborhood\",\"name\":\"Little Portugal South\",\"full_name\":\"Little Portugal South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.861838,37.3463615],[-121.861838,37.3528054],[-121.8526191,37.3528054],[-121.8526191,37.3463615],[-121.861838,37.3463615]]]},\"attributes\":{}},{\"id\":\"5dfcb35d4822804e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5dfcb35d4822804e.json\",\"place_type\":\"neighborhood\",\"name\":\"Hillview South\",\"full_name\":\"Hillview South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8650841,37.241598],[-121.8650841,37.244396],[-121.860323,37.244396],[-121.860323,37.241598],[-121.8650841,37.241598]]]},\"attributes\":{}},{\"id\":\"27ae3d61c0cae65b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/27ae3d61c0cae65b.json\",\"place_type\":\"neighborhood\",\"name\":\"Mt Pleasant South\",\"full_name\":\"Mt Pleasant South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.814252,37.3446521],[-121.814252,37.35566],[-121.7999127,37.35566],[-121.7999127,37.3446521],[-121.814252,37.3446521]]]},\"attributes\":{}},{\"id\":\"6a138a4829d9e5e5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6a138a4829d9e5e5.json\",\"place_type\":\"neighborhood\",\"name\":\"Woodside of Almaden\",\"full_name\":\"Woodside of Almaden, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8338608,37.201186],[-121.8338608,37.2126851],[-121.8241277,37.2126851],[-121.8241277,37.201186],[-121.8338608,37.201186]]]},\"attributes\":{}},{\"id\":\"61582aaad5b1a0d1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/61582aaad5b1a0d1.json\",\"place_type\":\"neighborhood\",\"name\":\"Creekside South\",\"full_name\":\"Creekside South, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-124.482003,42.009519],[-114.131212,42.009519],[-114.131212,32.528832],[-124.482003,32.528832]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.833133,37.192618],[-121.833133,37.201186],[-121.823138,37.201186],[-121.823138,37.192618],[-121.833133,37.192618]]]},\"attributes\":{}},{\"id\":\"75daccb751921c62\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/75daccb751921c62.json\",\"place_type\":\"neighborhood\",\"name\":\"Willow Glen South Lincoln Glen\",\"full_name\":\"Willow Glen South Lincoln Glen, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.912366,37.268005],[-121.912366,37.2863064],[-121.8769364,37.2863064],[-121.8769364,37.268005],[-121.912366,37.268005]]]},\"attributes\":{}},{\"id\":\"610b1535bed93356\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/610b1535bed93356.json\",\"place_type\":\"neighborhood\",\"name\":\"Hidden Glen South\",\"full_name\":\"Hidden Glen South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8511872,37.2311979],[-121.8511872,37.238863],[-121.83949,37.238863],[-121.83949,37.2311979],[-121.8511872,37.2311979]]]},\"attributes\":{}},{\"id\":\"59f07a02656e458c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/59f07a02656e458c.json\",\"place_type\":\"city\",\"name\":\"South Woodbridge\",\"full_name\":\"South Woodbridge, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-124.482003,42.009519],[-114.131212,42.009519],[-114.131212,32.528832],[-124.482003,32.528832]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.318079,38.148486],[-121.318079,38.158738],[-121.298049,38.158738],[-121.298049,38.148486],[-121.318079,38.148486]]]},\"attributes\":{}}],\"token\":\"e70e5b2a1c04e2f38d507b4fab266ece\"},\"query\":{\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/similar_places.json?lat=37.7821120599&name=South+of+Market+Child+Care&long=-122.400612831\",\"type\":\"similar_places\",\"params\":{\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-122.400612831,37.7821120599]},\"name\":\"South of Market Child Care\",\"contained_within\":null,\"strict\":false,\"query\":null,\"autocomplete\":null,\"accuracy\":null,\"granularity\":\"\"}}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/geo/id/1ffd3558f2e98349.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:19 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "4b1b0ead5be444bf16c6539baabb05ec" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "4ec47c73c376fb8e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "907" ], "set-cookie": [ "guest_id=v1%3A141738007945355862; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:19 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:19 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380979" ] }, "body": { "string": "{\"id\":\"1ffd3558f2e98349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1ffd3558f2e98349.json\",\"place_type\":\"neighborhood\",\"name\":\"Dogpatch\",\"full_name\":\"Dogpatch, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"geometry\":null,\"polylines\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.39307792,37.75613103],[-122.39307792,37.764396],[-122.38719588,37.764396],[-122.38719588,37.75613103],[-122.39307792,37.75613103]]]},\"attributes\":{\"162834:id\":\"73222\"}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/geo/reverse_geocode.json?lat=30.2673701685&long=-97.7426147461", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:19 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "15690e28bd5a9291daefa14b46f33fde" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "fed511e426a6dc54" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "3146" ], "set-cookie": [ "guest_id=v1%3A141738007978508933; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:19 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:19 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380979" ] }, "body": { "string": "{\"result\":{\"places\":[{\"id\":\"c3f37afa9efcf94b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/c3f37afa9efcf94b.json\",\"place_type\":\"city\",\"name\":\"Austin\",\"full_name\":\"Austin, TX\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"e0060cda70f5f341\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e0060cda70f5f341.json\",\"place_type\":\"admin\",\"name\":\"Texas\",\"full_name\":\"Texas, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.645646,25.837092],[-106.645646,36.500695],[-93.508131,36.500695],[-93.508131,25.837092],[-106.645646,25.837092]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.928935,30.127892],[-97.928935,30.5187994],[-97.5805133,30.5187994],[-97.5805133,30.127892],[-97.928935,30.127892]]]},\"attributes\":{}},{\"id\":\"1fa5d78e5cf5f072\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1fa5d78e5cf5f072.json\",\"place_type\":\"neighborhood\",\"name\":\"Downtown\",\"full_name\":\"Downtown, Austin\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"c3f37afa9efcf94b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/c3f37afa9efcf94b.json\",\"place_type\":\"city\",\"name\":\"Austin\",\"full_name\":\"Austin, TX\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.928935,30.127892],[-97.928935,30.5187994],[-97.5805133,30.5187994],[-97.5805133,30.127892],[-97.928935,30.127892]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.7567,30.2505491],[-97.7567,30.283936],[-97.7314833,30.283936],[-97.7314833,30.2505491],[-97.7567,30.2505491]]]},\"attributes\":{}},{\"id\":\"e0060cda70f5f341\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e0060cda70f5f341.json\",\"place_type\":\"admin\",\"name\":\"Texas\",\"full_name\":\"Texas, US\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"96683cc9126741d1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/96683cc9126741d1.json\",\"place_type\":\"country\",\"name\":\"United States\",\"full_name\":\"United States\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-179.231086,17.623468],[-179.231086,71.434357],[179.859685,71.434357],[179.859685,17.623468],[-179.231086,17.623468]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.645646,25.837092],[-106.645646,36.500695],[-93.508131,36.500695],[-93.508131,25.837092],[-106.645646,25.837092]]]},\"attributes\":{}},{\"id\":\"96683cc9126741d1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/96683cc9126741d1.json\",\"place_type\":\"country\",\"name\":\"United States\",\"full_name\":\"United States\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-179.231086,17.623468],[-179.231086,71.434357],[179.859685,71.434357],[179.859685,17.623468],[-179.231086,17.623468]]]},\"attributes\":{}}]},\"query\":{\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/reverse_geocode.json?lat=30.2673701685&long=-97.7426147461\",\"type\":\"reverse_geocode\",\"params\":{\"accuracy\":0.0,\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-97.7426147461,30.2673701685]},\"granularity\":\"neighborhood\"}}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/geo/similar_places.json?name=South+of+Market+Child+Care&lat=37.7821120598956&long=-122.400612831116", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:00 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ac93e32987e8e91a2a57e1c67cbba7c8" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401000" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "19937" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:00 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "guest_id=v1%3A141740010078128286; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:00 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "d8ba97b028f76db1" ] }, "body": { "string": "{\"result\":{\"places\":[{\"id\":\"1d019624e6b4dcff\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1d019624e6b4dcff.json\",\"place_type\":\"neighborhood\",\"name\":\"South of Market\",\"full_name\":\"South of Market, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.418714,37.764094],[-122.418714,37.789283],[-122.379692,37.789283],[-122.379692,37.764094],[-122.418714,37.764094]]]},\"attributes\":{}},{\"id\":\"5c92ab5379de3839\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5c92ab5379de3839.json\",\"place_type\":\"neighborhood\",\"name\":\"South Beach\",\"full_name\":\"South Beach, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.401378,37.7776245],[-122.401378,37.798014],[-122.3809835,37.798014],[-122.3809835,37.7776245],[-122.401378,37.7776245]]]},\"attributes\":{}},{\"id\":\"640e4689c80fb4c5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/640e4689c80fb4c5.json\",\"place_type\":\"neighborhood\",\"name\":\"Upper Market\",\"full_name\":\"Upper Market, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.446503,37.7617761],[-122.446503,37.769655],[-122.426242,37.769655],[-122.426242,37.7617761],[-122.446503,37.7617761]]]},\"attributes\":{}},{\"id\":\"746cc5651750e057\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/746cc5651750e057.json\",\"place_type\":\"city\",\"name\":\"South San Francisco\",\"full_name\":\"South San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-124.482003,42.009519],[-114.131212,42.009519],[-114.131212,32.528832],[-124.482003,32.528832]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.471871,37.6345111],[-122.471871,37.683086],[-122.374366,37.683086],[-122.374366,37.6345111],[-122.471871,37.6345111]]]},\"attributes\":{}},{\"id\":\"78f29e0fbc3e5c3b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/78f29e0fbc3e5c3b.json\",\"place_type\":\"neighborhood\",\"name\":\"South of Midtown\",\"full_name\":\"South of Midtown, Palo Alto\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"3ad0f706b3fa62a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3ad0f706b3fa62a8.json\",\"place_type\":\"city\",\"name\":\"Palo Alto\",\"full_name\":\"Palo Alto, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.190523,37.362824],[-122.190523,37.465918],[-122.097537,37.465918],[-122.097537,37.362824],[-122.190523,37.362824]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.131468,37.417566],[-122.131468,37.429148],[-122.114745,37.429148],[-122.114745,37.417566],[-122.131468,37.417566]]]},\"attributes\":{}},{\"id\":\"3412e9dd2250b64d\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3412e9dd2250b64d.json\",\"place_type\":\"neighborhood\",\"name\":\"University South\",\"full_name\":\"University South, Palo Alto\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"3ad0f706b3fa62a8\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3ad0f706b3fa62a8.json\",\"place_type\":\"city\",\"name\":\"Palo Alto\",\"full_name\":\"Palo Alto, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.190523,37.362824],[-122.190523,37.465918],[-122.097537,37.465918],[-122.097537,37.362824],[-122.190523,37.362824]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.164271,37.438302],[-122.164271,37.45074],[-122.143171,37.45074],[-122.143171,37.438302],[-122.164271,37.438302]]]},\"attributes\":{}},{\"id\":\"18cccad2227da65c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/18cccad2227da65c.json\",\"place_type\":\"neighborhood\",\"name\":\"Market Almaden\",\"full_name\":\"Market Almaden, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.890935,37.3243217],[-121.890935,37.330009],[-121.883041,37.330009],[-121.883041,37.3243217],[-121.890935,37.3243217]]]},\"attributes\":{}},{\"id\":\"2a240dbd5e3d0d60\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/2a240dbd5e3d0d60.json\",\"place_type\":\"neighborhood\",\"name\":\"Cumberland South\",\"full_name\":\"Cumberland South, Sunnyvale\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"45cadd6ef118ec9f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/45cadd6ef118ec9f.json\",\"place_type\":\"city\",\"name\":\"Sunnyvale\",\"full_name\":\"Sunnyvale, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.065206,37.3300682],[-122.065206,37.4267257],[-121.982475,37.4267257],[-121.982475,37.3300682],[-122.065206,37.3300682]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.050352,37.3594382],[-122.050352,37.3654137],[-122.0414998,37.3654137],[-122.0414998,37.3594382],[-122.050352,37.3594382]]]},\"attributes\":{}},{\"id\":\"2fa88dca68b9df96\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/2fa88dca68b9df96.json\",\"place_type\":\"neighborhood\",\"name\":\"South Los Altos\",\"full_name\":\"South Los Altos, Los Altos\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"6a4364ea6f987c10\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6a4364ea6f987c10.json\",\"place_type\":\"city\",\"name\":\"Los Altos\",\"full_name\":\"Los Altos, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.129474,37.329932],[-122.129474,37.406473],[-122.060782,37.406473],[-122.060782,37.329932],[-122.129474,37.329932]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.078002,37.337478],[-122.078002,37.3592652],[-122.05969,37.3592652],[-122.05969,37.337478],[-122.078002,37.337478]]]},\"attributes\":{}},{\"id\":\"18b634927abdd39d\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/18b634927abdd39d.json\",\"place_type\":\"neighborhood\",\"name\":\"Calabazas South\",\"full_name\":\"Calabazas South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.03155,37.2939709],[-122.03155,37.3011451],[-122.0236949,37.3011451],[-122.0236949,37.2939709],[-122.03155,37.2939709]]]},\"attributes\":{}},{\"id\":\"05eacbd8d1aa01cd\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/05eacbd8d1aa01cd.json\",\"place_type\":\"neighborhood\",\"name\":\"Flickinger South\",\"full_name\":\"Flickinger South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.873283,37.379857],[-121.873283,37.3895353],[-121.862908,37.3895353],[-121.862908,37.379857],[-121.873283,37.379857]]]},\"attributes\":{}},{\"id\":\"7262a1ac091221f6\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7262a1ac091221f6.json\",\"place_type\":\"neighborhood\",\"name\":\"Vinci South\",\"full_name\":\"Vinci South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8786112,37.371757],[-121.8786112,37.385461],[-121.867352,37.385461],[-121.867352,37.371757],[-121.8786112,37.371757]]]},\"attributes\":{}},{\"id\":\"02d7ed9dda1ec670\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/02d7ed9dda1ec670.json\",\"place_type\":\"neighborhood\",\"name\":\"South Campus\",\"full_name\":\"South Campus, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.885042,37.326856],[-121.885042,37.335993],[-121.871896,37.335993],[-121.871896,37.326856],[-121.885042,37.326856]]]},\"attributes\":{}},{\"id\":\"4b0d4e092c2bbf38\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/4b0d4e092c2bbf38.json\",\"place_type\":\"neighborhood\",\"name\":\"Brookwood South\",\"full_name\":\"Brookwood South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.866968,37.331588],[-121.866968,37.340828],[-121.8615862,37.340828],[-121.8615862,37.331588],[-121.866968,37.331588]]]},\"attributes\":{}},{\"id\":\"6a2cd44438fa430a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6a2cd44438fa430a.json\",\"place_type\":\"neighborhood\",\"name\":\"Clayton South\",\"full_name\":\"Clayton South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.80151,37.3506109],[-121.80151,37.3556331],[-121.7948906,37.3556331],[-121.7948906,37.3506109],[-121.80151,37.3506109]]]},\"attributes\":{}},{\"id\":\"3f690c039272386c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3f690c039272386c.json\",\"place_type\":\"neighborhood\",\"name\":\"Little Portugal South\",\"full_name\":\"Little Portugal South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.861838,37.3463615],[-121.861838,37.3528054],[-121.8526191,37.3528054],[-121.8526191,37.3463615],[-121.861838,37.3463615]]]},\"attributes\":{}},{\"id\":\"5dfcb35d4822804e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5dfcb35d4822804e.json\",\"place_type\":\"neighborhood\",\"name\":\"Hillview South\",\"full_name\":\"Hillview South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8650841,37.241598],[-121.8650841,37.244396],[-121.860323,37.244396],[-121.860323,37.241598],[-121.8650841,37.241598]]]},\"attributes\":{}},{\"id\":\"27ae3d61c0cae65b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/27ae3d61c0cae65b.json\",\"place_type\":\"neighborhood\",\"name\":\"Mt Pleasant South\",\"full_name\":\"Mt Pleasant South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.814252,37.3446521],[-121.814252,37.35566],[-121.7999127,37.35566],[-121.7999127,37.3446521],[-121.814252,37.3446521]]]},\"attributes\":{}},{\"id\":\"6a138a4829d9e5e5\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/6a138a4829d9e5e5.json\",\"place_type\":\"neighborhood\",\"name\":\"Woodside of Almaden\",\"full_name\":\"Woodside of Almaden, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8338608,37.201186],[-121.8338608,37.2126851],[-121.8241277,37.2126851],[-121.8241277,37.201186],[-121.8338608,37.201186]]]},\"attributes\":{}},{\"id\":\"61582aaad5b1a0d1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/61582aaad5b1a0d1.json\",\"place_type\":\"neighborhood\",\"name\":\"Creekside South\",\"full_name\":\"Creekside South, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-124.482003,42.009519],[-114.131212,42.009519],[-114.131212,32.528832],[-124.482003,32.528832]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.833133,37.192618],[-121.833133,37.201186],[-121.823138,37.201186],[-121.823138,37.192618],[-121.833133,37.192618]]]},\"attributes\":{}},{\"id\":\"75daccb751921c62\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/75daccb751921c62.json\",\"place_type\":\"neighborhood\",\"name\":\"Willow Glen South Lincoln Glen\",\"full_name\":\"Willow Glen South Lincoln Glen, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.912366,37.268005],[-121.912366,37.2863064],[-121.8769364,37.2863064],[-121.8769364,37.268005],[-121.912366,37.268005]]]},\"attributes\":{}},{\"id\":\"610b1535bed93356\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/610b1535bed93356.json\",\"place_type\":\"neighborhood\",\"name\":\"Hidden Glen South\",\"full_name\":\"Hidden Glen South, San Jose\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"7d62cffe6f98f349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/7d62cffe6f98f349.json\",\"place_type\":\"city\",\"name\":\"San Jose\",\"full_name\":\"San Jose, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.035311,37.193164],[-122.035311,37.469154],[-121.71215,37.469154],[-121.71215,37.193164],[-122.035311,37.193164]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.8511872,37.2311979],[-121.8511872,37.238863],[-121.83949,37.238863],[-121.83949,37.2311979],[-121.8511872,37.2311979]]]},\"attributes\":{}},{\"id\":\"59f07a02656e458c\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/59f07a02656e458c.json\",\"place_type\":\"city\",\"name\":\"South Woodbridge\",\"full_name\":\"South Woodbridge, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-124.482003,42.009519],[-114.131212,42.009519],[-114.131212,32.528832],[-124.482003,32.528832]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.318079,38.148486],[-121.318079,38.158738],[-121.298049,38.158738],[-121.298049,38.148486],[-121.318079,38.148486]]]},\"attributes\":{}}],\"token\":\"e70e5b2a1c04e2f38d507b4fab266ece\"},\"query\":{\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/similar_places.json?name=South+of+Market+Child+Care&lat=37.7821120598956&long=-122.400612831116\",\"type\":\"similar_places\",\"params\":{\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-122.400612831116,37.7821120598956]},\"name\":\"South of Market Child Care\",\"contained_within\":null,\"strict\":false,\"query\":null,\"autocomplete\":null,\"accuracy\":null,\"granularity\":\"\"}}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/geo/id/1ffd3558f2e98349.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:01 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "e00c90ff8afc06c9e772b4245a9aa21e" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401001" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "907" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:01 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "guest_id=v1%3A141740010134827203; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:01 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "13cfdade0932d838" ] }, "body": { "string": "{\"id\":\"1ffd3558f2e98349\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1ffd3558f2e98349.json\",\"place_type\":\"neighborhood\",\"name\":\"Dogpatch\",\"full_name\":\"Dogpatch, San Francisco\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"5a110d312052166f\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/5a110d312052166f.json\",\"place_type\":\"city\",\"name\":\"San Francisco\",\"full_name\":\"San Francisco, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.514926,37.708075],[-122.514926,37.833238],[-122.357031,37.833238],[-122.357031,37.708075],[-122.514926,37.708075]]]},\"attributes\":{}}],\"geometry\":null,\"polylines\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.39307792,37.75613103],[-122.39307792,37.764396],[-122.38719588,37.764396],[-122.38719588,37.75613103],[-122.39307792,37.75613103]]]},\"attributes\":{\"162834:id\":\"73222\"}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/geo/reverse_geocode.json?lat=30.267370168467806&long=-97.74261474609375", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:01 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5bb53db4e2885b391f129707d3342126" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401001" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "3164" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:01 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "guest_id=v1%3A141740010172732275; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:01 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "e5f7951f1793a014" ] }, "body": { "string": "{\"result\":{\"places\":[{\"id\":\"c3f37afa9efcf94b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/c3f37afa9efcf94b.json\",\"place_type\":\"city\",\"name\":\"Austin\",\"full_name\":\"Austin, TX\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"e0060cda70f5f341\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e0060cda70f5f341.json\",\"place_type\":\"admin\",\"name\":\"Texas\",\"full_name\":\"Texas, US\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.645646,25.837092],[-106.645646,36.500695],[-93.508131,36.500695],[-93.508131,25.837092],[-106.645646,25.837092]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.928935,30.127892],[-97.928935,30.5187994],[-97.5805133,30.5187994],[-97.5805133,30.127892],[-97.928935,30.127892]]]},\"attributes\":{}},{\"id\":\"1fa5d78e5cf5f072\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/1fa5d78e5cf5f072.json\",\"place_type\":\"neighborhood\",\"name\":\"Downtown\",\"full_name\":\"Downtown, Austin\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"c3f37afa9efcf94b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/c3f37afa9efcf94b.json\",\"place_type\":\"city\",\"name\":\"Austin\",\"full_name\":\"Austin, TX\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.928935,30.127892],[-97.928935,30.5187994],[-97.5805133,30.5187994],[-97.5805133,30.127892],[-97.928935,30.127892]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.7567,30.2505491],[-97.7567,30.283936],[-97.7314833,30.283936],[-97.7314833,30.2505491],[-97.7567,30.2505491]]]},\"attributes\":{}},{\"id\":\"e0060cda70f5f341\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e0060cda70f5f341.json\",\"place_type\":\"admin\",\"name\":\"Texas\",\"full_name\":\"Texas, US\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"id\":\"96683cc9126741d1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/96683cc9126741d1.json\",\"place_type\":\"country\",\"name\":\"United States\",\"full_name\":\"United States\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-179.231086,17.623468],[-179.231086,71.434357],[179.859685,71.434357],[179.859685,17.623468],[-179.231086,17.623468]]]},\"attributes\":{}}],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.645646,25.837092],[-106.645646,36.500695],[-93.508131,36.500695],[-93.508131,25.837092],[-106.645646,25.837092]]]},\"attributes\":{}},{\"id\":\"96683cc9126741d1\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/96683cc9126741d1.json\",\"place_type\":\"country\",\"name\":\"United States\",\"full_name\":\"United States\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-179.231086,17.623468],[-179.231086,71.434357],[179.859685,71.434357],[179.859685,17.623468],[-179.231086,17.623468]]]},\"attributes\":{}}]},\"query\":{\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/reverse_geocode.json?lat=30.267370168467806&long=-97.74261474609375\",\"type\":\"reverse_geocode\",\"params\":{\"accuracy\":0.0,\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-97.74261474609375,30.267370168467806]},\"granularity\":\"neighborhood\"}}}" } } } ] }tweepy-3.5.0/cassettes/testgetlist.json000066400000000000000000000230601265716604700203170ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/show.json?slug=stars&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:20 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "de4da20bcf292d1361f4ccf335d2f4a8" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "9f32493943226051" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "1759" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008009843123; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:20 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:20 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"id\":8078,\"id_str\":\"8078\",\"name\":\"stars\",\"uri\":\"\\/applepie\\/lists\\/stars\",\"subscriber_count\":7,\"member_count\":55,\"mode\":\"public\",\"description\":\"\",\"slug\":\"stars\",\"full_name\":\"@applepie\\/stars\",\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"following\":false,\"user\":{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/show.json?owner_screen_name=applepie&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:02 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "8a3516c23ec1c997584dd0f6ab710c00" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401002" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1759" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:02 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010213116278; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:02 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "4cfe1933c3936ae5" ] }, "body": { "string": "{\"id\":8078,\"id_str\":\"8078\",\"name\":\"stars\",\"uri\":\"\\/applepie\\/lists\\/stars\",\"subscriber_count\":7,\"member_count\":55,\"mode\":\"public\",\"description\":\"\",\"slug\":\"stars\",\"full_name\":\"@applepie\\/stars\",\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"following\":false,\"user\":{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh Roesslein\",\"screen_name\":\"applepie\",\"location\":\"San Francisco Bay Area\",\"profile_location\":null,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":485,\"friends_count\":307,\"listed_count\":26,\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7649,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}}" } } } ] }tweepy-3.5.0/cassettes/testgetoembed.json000066400000000000000000000160721265716604700206040ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/oembed.json?id=266367358078169089", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:20 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "73dd25bc831a538b7208c4cab55a7339" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "50e88ccc7ca87c7d" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "must-revalidate, max-age=3153600000" ], "content-length": [ "913" ], "set-cookie": [ "guest_id=v1%3A141738008037832056; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:20 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:20 GMT" ], "expires": [ "Tue, 06 Nov 2114 20:41:20 GMT" ], "x-rate-limit-remaining": [ "179" ], "x-rate-limit-limit": [ "180" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"cache_age\":\"3153600000\",\"url\":\"https:\\/\\/twitter.com\\/twitter\\/statuses\\/266367358078169089\",\"height\":null,\"provider_url\":\"https:\\/\\/twitter.com\",\"provider_name\":\"Twitter\",\"author_name\":\"Twitter\",\"version\":\"1.0\",\"author_url\":\"https:\\/\\/twitter.com\\/twitter\",\"type\":\"rich\",\"html\":\"\\u003Cblockquote class=\\\"twitter-tweet\\\"\\u003E\\u003Cp\\u003ERT \\u003Ca href=\\\"https:\\/\\/twitter.com\\/TwitterEng\\\"\\u003E@TwitterEng\\u003C\\/a\\u003E: Bolstering our infrastructure. "As usage patterns change, Twitter can remain resilient." \\u003Ca href=\\\"http:\\/\\/t.co\\/uML86B6s\\\"\\u003Ehttp:\\/\\/t.co\\/uML86B6s\\u003C\\/a\\u003E\\u003C\\/p\\u003E— Twitter (@twitter) \\u003Ca href=\\\"https:\\/\\/twitter.com\\/twitter\\/status\\/266367358078169089\\\"\\u003ENovember 8, 2012\\u003C\\/a\\u003E\\u003C\\/blockquote\\u003E\\n\\u003Cscript async src=\\\"\\/\\/platform.twitter.com\\/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C\\/script\\u003E\",\"width\":550}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/oembed.json?id=266367358078169089", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:02 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "152014dc0203aa6e3a8d742e06b802e0" ], "cache-control": [ "must-revalidate, max-age=3153600000" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401002" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "expires": [ "Wed, 07 Nov 2114 02:15:02 GMT" ], "set-cookie": [ "guest_id=v1%3A141740010257203556; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:02 UTC" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:02 GMT" ], "content-length": [ "913" ], "x-rate-limit-remaining": [ "179" ], "x-rate-limit-limit": [ "180" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "aad83e7845d3b3b8" ] }, "body": { "string": "{\"cache_age\":\"3153600000\",\"url\":\"https:\\/\\/twitter.com\\/twitter\\/statuses\\/266367358078169089\",\"height\":null,\"provider_url\":\"https:\\/\\/twitter.com\",\"provider_name\":\"Twitter\",\"author_name\":\"Twitter\",\"version\":\"1.0\",\"author_url\":\"https:\\/\\/twitter.com\\/twitter\",\"type\":\"rich\",\"html\":\"\\u003Cblockquote class=\\\"twitter-tweet\\\"\\u003E\\u003Cp\\u003ERT \\u003Ca href=\\\"https:\\/\\/twitter.com\\/TwitterEng\\\"\\u003E@TwitterEng\\u003C\\/a\\u003E: Bolstering our infrastructure. "As usage patterns change, Twitter can remain resilient." \\u003Ca href=\\\"http:\\/\\/t.co\\/uML86B6s\\\"\\u003Ehttp:\\/\\/t.co\\/uML86B6s\\u003C\\/a\\u003E\\u003C\\/p\\u003E— Twitter (@twitter) \\u003Ca href=\\\"https:\\/\\/twitter.com\\/twitter\\/status\\/266367358078169089\\\"\\u003ENovember 8, 2012\\u003C\\/a\\u003E\\u003C\\/blockquote\\u003E\\n\\u003Cscript async src=\\\"\\/\\/platform.twitter.com\\/widgets.js\\\" charset=\\\"utf-8\\\"\\u003E\\u003C\\/script\\u003E\",\"width\":550}" } } } ] }tweepy-3.5.0/cassettes/testgetstatus.json000066400000000000000000000274421265716604700206770ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/show.json?id=266367358078169089", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:20 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "855d810713f0a052b62dfc9b4f494fe0" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "de19863d2a2731eb" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2797" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008063486896; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:20 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:20 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620551,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/show.json?id=266367358078169089", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:03 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "0a5b3bbf31825c38424f285d9af75ac6" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401003" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2797" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:03 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010330774756; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:03 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "67f6a332bc77104f" ] }, "body": { "string": "{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621108,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"}" } } } ] }tweepy-3.5.0/cassettes/testgetuser.json000066400000000000000000000566661265716604700203440ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:20 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6c9337cbf1fc47893ae3c55b8e107217" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "78b5a6891aeb0f34" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2791" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008093777146; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:20 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:20 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620551,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?id=783214", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:21 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "d80b2ee96ccf18aae8e5c17d84c50043" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "75646a7663124aa7" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2791" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008121208143; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:21 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:21 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "178" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620551,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:03 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "45a8aab22c380fdedcb30cf9d9c0c9e0" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401003" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2791" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:03 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010368752171; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:03 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "338ddfc6b4d1468d" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621108,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?id=783214", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:04 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "fe9c998614f008ae45b0aa8a51ac1d82" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401003" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2791" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:04 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "178" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010420277884; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:04 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "ae548874f875b4d1" ] }, "body": { "string": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621108,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}" } } } ] }tweepy-3.5.0/cassettes/testhometimeline.json000066400000000000000000005750531265716604700213410ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/home_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:21 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "bf5bf0c942d3a95cf90534a464b70e72" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "3ac8d4259bf3c683" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "83844" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008147369654; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:21 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:21 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "13" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380966" ] }, "body": { "string": "[{\"created_at\":\"Sun Nov 30 20:00:07 +0000 2014\",\"id\":539146877577748480,\"id_str\":\"539146877577748480\",\"text\":\"A solid case for napping at work tomorrow. http:\\/\\/t.co\\/YgMWdT85Uh http:\\/\\/t.co\\/4G4vLeyWEw\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":72,\"favorite_count\":240,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YgMWdT85Uh\",\"expanded_url\":\"http:\\/\\/goo.gl\\/VKiJEZ\",\"display_url\":\"goo.gl\\/VKiJEZ\",\"indices\":[43,65]}],\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:15:13 +0000 2014\",\"id\":539120481270378497,\"id_str\":\"539120481270378497\",\"text\":\"Enter @VisaCheckout.com for chance at @SuperBowl XLIX. NoPurcNec 18+USRes Ends1\\/04 Rules http:\\/\\/t.co\\/ftiMq6CvFi https:\\/\\/t.co\\/EsMKS33M1Q\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"profile_location\":null,\"description\":\"#everywhere isn\\u2019t just a place. It can be the journey. It could be the destination. But it\\u2019s always a new state of mind.\",\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":239356,\"friends_count\":1185,\"listed_count\":746,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":463,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":13024,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1405461475\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":6,\"favorite_count\":8,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VisaCheckout\",\"name\":\"Checkout with Visa\",\"id\":2460280304,\"id_str\":\"2460280304\",\"indices\":[6,19]},{\"screen_name\":\"SuperBowl\",\"name\":\"Super Bowl\",\"id\":19425947,\"id_str\":\"19425947\",\"indices\":[38,48]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ftiMq6CvFi\",\"expanded_url\":\"http:\\/\\/vi.sa\\/1A4lPz9\",\"display_url\":\"vi.sa\\/1A4lPz9\",\"indices\":[89,111]},{\"url\":\"https:\\/\\/t.co\\/EsMKS33M1Q\",\"expanded_url\":\"https:\\/\\/cards.twitter.com\\/cards\\/949uer\\/8mb0\",\"display_url\":\"cards.twitter.com\\/cards\\/949uer\\/8\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"da\"},{\"created_at\":\"Sun Nov 30 17:15:14 +0000 2014\",\"id\":539105384380633088,\"id_str\":\"539105384380633088\",\"text\":\"RT @GooglePlay: Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZx\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602828,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 15:00:58 +0000 2014\",\"id\":539071594698899456,\"id_str\":\"539071594698899456\",\"text\":\"Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZxUUQaY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4052930,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5004,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":118,\"favorite_count\":198,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[44,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[83,105]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":118,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[60,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[99,121]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 17:00:06 +0000 2014\",\"id\":539101575424524289,\"id_str\":\"539101575424524289\",\"text\":\"You can totally see our house from here! http:\\/\\/t.co\\/pxc82gCnq2 http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":307,\"favorite_count\":675,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pxc82gCnq2\",\"expanded_url\":\"http:\\/\\/goo.gl\\/lyFZ8C\",\"display_url\":\"goo.gl\\/lyFZ8C\",\"indices\":[41,63]}],\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 01:43:00 +0000 2014\",\"id\":538870779103158272,\"id_str\":\"538870779103158272\",\"text\":\"RT @USCBookstore: Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4248276,\"friends_count\":263,\"listed_count\":6486,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2138,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 17:00:07 +0000 2014\",\"id\":538739192843350021,\"id_str\":\"538739192843350021\",\"text\":\"Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":39372927,\"id_str\":\"39372927\",\"name\":\"USC Bookstore\",\"screen_name\":\"USCBookstore\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Serving the academic and spirit needs of USC community.\",\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"expanded_url\":\"http:\\/\\/www.uscbookstore.com\",\"display_url\":\"uscbookstore.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2559,\"friends_count\":247,\"listed_count\":133,\"created_at\":\"Mon May 11 23:26:33 +0000 2009\",\"favourites_count\":52,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":882,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A80B10\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/39372927\\/1405548397\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"ED315B\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":40,\"favorite_count\":17,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[62,70]},{\"text\":\"USC\",\"indices\":[71,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[76,99]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":40,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[80,88]},{\"text\":\"USC\",\"indices\":[89,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USCBookstore\",\"name\":\"USC Bookstore\",\"id\":39372927,\"id_str\":\"39372927\",\"indices\":[3,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[94,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 23:00:07 +0000 2014\",\"id\":538829791345246209,\"id_str\":\"538829791345246209\",\"text\":\"Do 8-bit turtles dream of pixelated pizza? http:\\/\\/t.co\\/BdzDyEn4a9 http:\\/\\/t.co\\/OUDE3wUgVb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":254,\"favorite_count\":536,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BdzDyEn4a9\",\"expanded_url\":\"http:\\/\\/goo.gl\\/BSF2Mv\",\"display_url\":\"goo.gl\\/BSF2Mv\",\"indices\":[43,65]}],\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 20:00:07 +0000 2014\",\"id\":538784489510813696,\"id_str\":\"538784489510813696\",\"text\":\"We\\u2019ll take one #LoveMeHarder cover \\u2013 shaken, not stirred. http:\\/\\/t.co\\/Cdkc5x3K5L http:\\/\\/t.co\\/Pksbi9KPVi\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":167,\"favorite_count\":580,\"entities\":{\"hashtags\":[{\"text\":\"LoveMeHarder\",\"indices\":[15,28]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Cdkc5x3K5L\",\"expanded_url\":\"http:\\/\\/goo.gl\\/vYL4nn\",\"display_url\":\"goo.gl\\/vYL4nn\",\"indices\":[58,80]}],\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 17:00:15 +0000 2014\",\"id\":538739227178315776,\"id_str\":\"538739227178315776\",\"text\":\".@devinsupertramp travels to Nepal to give the gift of selfies. http:\\/\\/t.co\\/Eqds8Pg6ul http:\\/\\/t.co\\/7lbU35x7Wo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":228,\"favorite_count\":678,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"devinsupertramp\",\"name\":\"Devin Graham\",\"id\":56030318,\"id_str\":\"56030318\",\"indices\":[1,17]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Eqds8Pg6ul\",\"expanded_url\":\"http:\\/\\/goo.gl\\/WhqPmI\",\"display_url\":\"goo.gl\\/WhqPmI\",\"indices\":[64,86]}],\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 02:00:11 +0000 2014\",\"id\":538512718089969664,\"id_str\":\"538512718089969664\",\"text\":\"Can you rap without rhyming? http:\\/\\/t.co\\/LXc2g92eZW http:\\/\\/t.co\\/gUyOQdmAEZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":241,\"favorite_count\":696,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/LXc2g92eZW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0PAQnX\",\"display_url\":\"goo.gl\\/0PAQnX\",\"indices\":[29,51]}],\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 23:00:18 +0000 2014\",\"id\":538467448430022656,\"id_str\":\"538467448430022656\",\"text\":\".@FifthHarmony makes our heart beat like a #Sledgehammer. http:\\/\\/t.co\\/d39bI9XCCV http:\\/\\/t.co\\/yowHYN5BwA\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2856,\"favorite_count\":3598,\"entities\":{\"hashtags\":[{\"text\":\"Sledgehammer\",\"indices\":[43,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FifthHarmony\",\"name\":\"Fifth Harmony\",\"id\":872374136,\"id_str\":\"872374136\",\"indices\":[1,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/d39bI9XCCV\",\"expanded_url\":\"http:\\/\\/goo.gl\\/bJRiYD\",\"display_url\":\"goo.gl\\/bJRiYD\",\"indices\":[58,80]}],\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 20:00:08 +0000 2014\",\"id\":538422107659853825,\"id_str\":\"538422107659853825\",\"text\":\"For those on the fence about rocking, AC\\/DC busts you. http:\\/\\/t.co\\/qRMoBNApG0 http:\\/\\/t.co\\/C6fnqE4Ksg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":313,\"favorite_count\":642,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qRMoBNApG0\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0aPg5v\",\"display_url\":\"goo.gl\\/0aPg5v\",\"indices\":[55,77]}],\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 19:15:36 +0000 2014\",\"id\":538410899405828096,\"id_str\":\"538410899405828096\",\"text\":\"RT @GooglePlay: Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602828,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Nov 28 14:30:33 +0000 2014\",\"id\":538339165675720704,\"id_str\":\"538339165675720704\",\"text\":\"Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4052930,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5004,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":101,\"favorite_count\":209,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[42,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[75,97]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"3376992a082d67c7\",\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":101,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[58,70]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[91,113]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 18:00:05 +0000 2014\",\"id\":538391897698738177,\"id_str\":\"538391897698738177\",\"text\":\"In #TimesSquare? Entertain yourself using http:\\/\\/t.co\\/tTokS6S6bg. Not in NYC? Entertain these guys. #NotTheSame http:\\/\\/t.co\\/nzPI6KxtoG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.wildfireapp.com\\/?utm_source=Twitter&utm_medium=Tweet&utm_campaign=via%2BWildfire%2BSuite\\\" rel=\\\"nofollow\\\"\\u003eWildfire Suite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602828,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":95,\"favorite_count\":170,\"entities\":{\"hashtags\":[{\"text\":\"TimesSquare\",\"indices\":[3,15]},{\"text\":\"NotTheSame\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tTokS6S6bg\",\"expanded_url\":\"http:\\/\\/androidify.com\",\"display_url\":\"androidify.com\",\"indices\":[42,64]}],\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 17:17:33 +0000 2014\",\"id\":538381192794767360,\"id_str\":\"538381192794767360\",\"text\":\"RT @google: Gadgets from Google for everyone on your list \\u2192 http:\\/\\/t.co\\/O8vVQr0lAU http:\\/\\/t.co\\/aFHnlVl7DF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602828,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Nov 28 15:37:25 +0000 2014\",\"id\":538355993126522880,\"id_str\":\"538355993126522880\",\"text\":\"Gadgets from Google for everyone on your list \\u2192 http:\\/\\/t.co\\/O8vVQr0lAU http:\\/\\/t.co\\/aFHnlVl7DF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":20536157,\"id_str\":\"20536157\",\"name\":\"Google\",\"screen_name\":\"google\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News and updates from Google\",\"url\":\"http:\\/\\/t.co\\/twxHxOtTvy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/twxHxOtTvy\",\"expanded_url\":\"http:\\/\\/www.google.com\",\"display_url\":\"google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9426300,\"friends_count\":414,\"listed_count\":88350,\"created_at\":\"Tue Feb 10 19:14:39 +0000 2009\",\"favourites_count\":316,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5582,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000163714586\\/yY9JMq3S.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000163714586\\/yY9JMq3S.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522909800191901697\\/FHCGSQg0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522909800191901697\\/FHCGSQg0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20536157\\/1405528161\",\"profile_link_color\":\"0000CC\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EBEFF9\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":192,\"favorite_count\":325,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/O8vVQr0lAU\",\"expanded_url\":\"http:\\/\\/goo.gl\\/dEOTzQ\",\"display_url\":\"goo.gl\\/dEOTzQ\",\"indices\":[48,70]}],\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[71,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[71,93],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":192,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"google\",\"name\":\"Google\",\"id\":20536157,\"id_str\":\"20536157\",\"indices\":[3,10]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/O8vVQr0lAU\",\"expanded_url\":\"http:\\/\\/goo.gl\\/dEOTzQ\",\"display_url\":\"goo.gl\\/dEOTzQ\",\"indices\":[60,82]}],\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[83,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":538355993126522880,\"source_status_id_str\":\"538355993126522880\"}]},\"extended_entities\":{\"media\":[{\"id\":538355991838867456,\"id_str\":\"538355991838867456\",\"indices\":[83,105],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3if7BhCQAAR-2b.jpg\",\"url\":\"http:\\/\\/t.co\\/aFHnlVl7DF\",\"display_url\":\"pic.twitter.com\\/aFHnlVl7DF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/google\\/status\\/538355993126522880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":375,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":219,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":124,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_status_id\":538355993126522880,\"source_status_id_str\":\"538355993126522880\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 17:00:17 +0000 2014\",\"id\":538376845239255041,\"id_str\":\"538376845239255041\",\"text\":\"Follow us on Poof before it\\u2019s too \\u2026 http:\\/\\/t.co\\/N2KI64T3DK http:\\/\\/t.co\\/Ul0HnFeguS\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46777258,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":121,\"favorite_count\":473,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/N2KI64T3DK\",\"expanded_url\":\"http:\\/\\/goo.gl\\/sHJ3AF\",\"display_url\":\"goo.gl\\/sHJ3AF\",\"indices\":[36,58]}],\"media\":[{\"id\":538376845117648896,\"id_str\":\"538376845117648896\",\"indices\":[59,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"url\":\"http:\\/\\/t.co\\/Ul0HnFeguS\",\"display_url\":\"pic.twitter.com\\/Ul0HnFeguS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538376845239255041\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":831,\"h\":465,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":335,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538376845117648896,\"id_str\":\"538376845117648896\",\"indices\":[59,81],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iy42CIcAAwm7m.png\",\"url\":\"http:\\/\\/t.co\\/Ul0HnFeguS\",\"display_url\":\"pic.twitter.com\\/Ul0HnFeguS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538376845239255041\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":831,\"h\":465,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":335,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 16:30:05 +0000 2014\",\"id\":538369247316299776,\"id_str\":\"538369247316299776\",\"text\":\"Snag the #LGGWatch until Monday for over 50% off on @GooglePlay in US, CAN & UK. #BlackFriday http:\\/\\/t.co\\/3lieaWsvNE http:\\/\\/t.co\\/nWTk8R2EXR\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.wildfireapp.com\\/?utm_source=Twitter&utm_medium=Tweet&utm_campaign=via%2BWildfire%2BSuite\\\" rel=\\\"nofollow\\\"\\u003eWildfire Suite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6602828,\"friends_count\":32,\"listed_count\":19229,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":128,\"favorite_count\":175,\"entities\":{\"hashtags\":[{\"text\":\"LGGWatch\",\"indices\":[9,18]},{\"text\":\"BlackFriday\",\"indices\":[85,97]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[52,63]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3lieaWsvNE\",\"expanded_url\":\"http:\\/\\/goo.gl\\/C3UyQn\",\"display_url\":\"goo.gl\\/C3UyQn\",\"indices\":[98,120]}],\"media\":[{\"id\":538369247182094336,\"id_str\":\"538369247182094336\",\"indices\":[121,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"url\":\"http:\\/\\/t.co\\/nWTk8R2EXR\",\"display_url\":\"pic.twitter.com\\/nWTk8R2EXR\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538369247316299776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538369247182094336,\"id_str\":\"538369247182094336\",\"indices\":[121,143],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ir-lhIgAALN-b.png\",\"url\":\"http:\\/\\/t.co\\/nWTk8R2EXR\",\"display_url\":\"pic.twitter.com\\/nWTk8R2EXR\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538369247316299776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 16:08:35 +0000 2014\",\"id\":538363834637885440,\"id_str\":\"538363834637885440\",\"text\":\"Get your casting queue ready for #BlackFriday: #Chromecast now $25 at select retailers, includes free @HuluPlus trial http:\\/\\/t.co\\/MNJlS3JQyt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":56505125,\"id_str\":\"56505125\",\"name\":\"Google Chrome\",\"screen_name\":\"googlechrome\",\"location\":\"Mountain View, California\",\"profile_location\":null,\"description\":\"The official Twitter account for the Google Chrome browser, OS, Chromebooks, Chromecast, and Web Store\",\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"expanded_url\":\"http:\\/\\/google.com\\/chrome\",\"display_url\":\"google.com\\/chrome\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4652752,\"friends_count\":84,\"listed_count\":14162,\"created_at\":\"Mon Jul 13 21:51:56 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":863,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":52,\"favorite_count\":64,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[33,45]},{\"text\":\"Chromecast\",\"indices\":[47,58]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"HuluPlus\",\"name\":\"HuluPlus\",\"id\":478843932,\"id_str\":\"478843932\",\"indices\":[102,111]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MNJlS3JQyt\",\"expanded_url\":\"http:\\/\\/goo.gl\\/RoPLaF\",\"display_url\":\"goo.gl\\/RoPLaF\",\"indices\":[118,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/home_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:04 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c5cd0cf513dfc03978559e89cdfcc58d" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417400986" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "84464" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:04 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "13" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010474938040; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:04 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "c77e07daa4e72951" ] }, "body": { "string": "[{\"created_at\":\"Mon Dec 01 02:00:35 +0000 2014\",\"id\":539237595235237889,\"id_str\":\"539237595235237889\",\"text\":\"Here\\u2019s some gym-spiration in case you ate too many leftovers this weekend. http:\\/\\/t.co\\/S2f03hDmK6 http:\\/\\/t.co\\/gswAAnw0O8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":158,\"favorite_count\":269,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/S2f03hDmK6\",\"expanded_url\":\"http:\\/\\/goo.gl\\/Z5CM3v\",\"display_url\":\"goo.gl\\/Z5CM3v\",\"indices\":[75,97]}],\"media\":[{\"id\":539237595130372096,\"id_str\":\"539237595130372096\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"url\":\"http:\\/\\/t.co\\/gswAAnw0O8\",\"display_url\":\"pic.twitter.com\\/gswAAnw0O8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539237595235237889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":186,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539237595130372096,\"id_str\":\"539237595130372096\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vBvFtIIAA7Ljs.png\",\"url\":\"http:\\/\\/t.co\\/gswAAnw0O8\",\"display_url\":\"pic.twitter.com\\/gswAAnw0O8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539237595235237889\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":328,\"resize\":\"fit\"},\"large\":{\"w\":828,\"h\":454,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":186,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:18:55 +0000 2014\",\"id\":539196909924413440,\"id_str\":\"539196909924413440\",\"text\":\"RT @CFL: .@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246359,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 22:53:26 +0000 2014\",\"id\":539190494191165440,\"id_str\":\"539190494191165440\",\"text\":\".@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":18194219,\"id_str\":\"18194219\",\"name\":\"CFL Official Feed\",\"screen_name\":\"CFL\",\"location\":\"Canada\",\"profile_location\":null,\"description\":\"Welcome to the CFL's official Twitter home. You're in the huddle with @RichardObrand and @LucasBarrett9. #GreyCup.\",\"url\":\"http:\\/\\/t.co\\/cEJGvV1RTF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cEJGvV1RTF\",\"expanded_url\":\"http:\\/\\/www.CFL.ca\",\"display_url\":\"CFL.ca\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":99503,\"friends_count\":11440,\"listed_count\":1324,\"created_at\":\"Wed Dec 17 17:38:38 +0000 2008\",\"favourites_count\":534,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":47865,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"868686\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/454624544750202881\\/lWRfnLXi.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/454624544750202881\\/lWRfnLXi.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527589400318722049\\/n9Giuvbw_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527589400318722049\\/n9Giuvbw_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18194219\\/1416972405\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":537,\"favorite_count\":749,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[27,35]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[1,17]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[36,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[36,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":537,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[36,44]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]},{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[10,26]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[45,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}},\"source_status_id\":539190494191165440,\"source_status_id_str\":\"539190494191165440\"}]},\"extended_entities\":{\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[45,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}},\"source_status_id\":539190494191165440,\"source_status_id_str\":\"539190494191165440\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:00:13 +0000 2014\",\"id\":539192201692319744,\"id_str\":\"539192201692319744\",\"text\":\"Jennifer Aniston pranks a young journalist. http:\\/\\/t.co\\/oorh4tFjVC #awkward http:\\/\\/t.co\\/oPpeCJ1Pf7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":340,\"favorite_count\":853,\"entities\":{\"hashtags\":[{\"text\":\"awkward\",\"indices\":[67,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oorh4tFjVC\",\"expanded_url\":\"http:\\/\\/goo.gl\\/MU6F0C\",\"display_url\":\"goo.gl\\/MU6F0C\",\"indices\":[44,66]}],\"media\":[{\"id\":539192201553920001,\"id_str\":\"539192201553920001\",\"indices\":[76,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"url\":\"http:\\/\\/t.co\\/oPpeCJ1Pf7\",\"display_url\":\"pic.twitter.com\\/oPpeCJ1Pf7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539192201692319744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":332,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":188,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":833,\"h\":462,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539192201553920001,\"id_str\":\"539192201553920001\",\"indices\":[76,98],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uYc1dIQAE_AD0.png\",\"url\":\"http:\\/\\/t.co\\/oPpeCJ1Pf7\",\"display_url\":\"pic.twitter.com\\/oPpeCJ1Pf7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539192201692319744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":332,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":188,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":833,\"h\":462,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:00:07 +0000 2014\",\"id\":539146877577748480,\"id_str\":\"539146877577748480\",\"text\":\"A solid case for napping at work tomorrow. http:\\/\\/t.co\\/YgMWdT85Uh http:\\/\\/t.co\\/4G4vLeyWEw\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":143,\"favorite_count\":420,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YgMWdT85Uh\",\"expanded_url\":\"http:\\/\\/goo.gl\\/VKiJEZ\",\"display_url\":\"goo.gl\\/VKiJEZ\",\"indices\":[43,65]}],\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539146877393174528,\"id_str\":\"539146877393174528\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tvOnzIAAAkqhf.png\",\"url\":\"http:\\/\\/t.co\\/4G4vLeyWEw\",\"display_url\":\"pic.twitter.com\\/4G4vLeyWEw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539146877577748480\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":184,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":325,\"resize\":\"fit\"},\"large\":{\"w\":842,\"h\":457,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:15:13 +0000 2014\",\"id\":539120481270378497,\"id_str\":\"539120481270378497\",\"text\":\"Enter @VisaCheckout.com for chance at @SuperBowl XLIX. NoPurcNec 18+USRes Ends1\\/04 Rules http:\\/\\/t.co\\/ftiMq6CvFi https:\\/\\/t.co\\/EsMKS33M1Q\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"profile_location\":null,\"description\":\"#everywhere isn\\u2019t just a place. It can be the journey. It could be the destination. But it\\u2019s always a new state of mind.\",\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/VWpEVdNbzo\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":239548,\"friends_count\":1185,\"listed_count\":746,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":463,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":13052,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/431926116211638273\\/tO9ovF7U.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/431926282322866176\\/2a-H3Slp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1405461475\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":11,\"favorite_count\":12,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VisaCheckout\",\"name\":\"Checkout with Visa\",\"id\":2460280304,\"id_str\":\"2460280304\",\"indices\":[6,19]},{\"screen_name\":\"SuperBowl\",\"name\":\"Super Bowl\",\"id\":19425947,\"id_str\":\"19425947\",\"indices\":[38,48]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ftiMq6CvFi\",\"expanded_url\":\"http:\\/\\/vi.sa\\/1A4lPz9\",\"display_url\":\"vi.sa\\/1A4lPz9\",\"indices\":[89,111]},{\"url\":\"https:\\/\\/t.co\\/EsMKS33M1Q\",\"expanded_url\":\"https:\\/\\/cards.twitter.com\\/cards\\/949uer\\/8mb0\",\"display_url\":\"cards.twitter.com\\/cards\\/949uer\\/8\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"da\"},{\"created_at\":\"Sun Nov 30 17:15:14 +0000 2014\",\"id\":539105384380633088,\"id_str\":\"539105384380633088\",\"text\":\"RT @GooglePlay: Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZx\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603498,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 15:00:58 +0000 2014\",\"id\":539071594698899456,\"id_str\":\"539071594698899456\",\"text\":\"Give them a gift they\\u2019ll actually wear. The #BlackFriday wearables sale is on now. http:\\/\\/t.co\\/5Fh70VGeGw http:\\/\\/t.co\\/AnkZxUUQaY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4053739,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5003,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":169,\"favorite_count\":249,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[44,56]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[83,105]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":169,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[60,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Fh70VGeGw\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ItqBnt\",\"display_url\":\"goo.gl\\/ItqBnt\",\"indices\":[99,121]}],\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"extended_entities\":{\"media\":[{\"id\":539071594006446080,\"id_str\":\"539071594006446080\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3sqwjVCAAA1hq3.png\",\"url\":\"http:\\/\\/t.co\\/AnkZxUUQaY\",\"display_url\":\"pic.twitter.com\\/AnkZxUUQaY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/539071594698899456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":539071594698899456,\"source_status_id_str\":\"539071594698899456\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 17:00:06 +0000 2014\",\"id\":539101575424524289,\"id_str\":\"539101575424524289\",\"text\":\"You can totally see our house from here! http:\\/\\/t.co\\/pxc82gCnq2 http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":349,\"favorite_count\":756,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pxc82gCnq2\",\"expanded_url\":\"http:\\/\\/goo.gl\\/lyFZ8C\",\"display_url\":\"goo.gl\\/lyFZ8C\",\"indices\":[41,63]}],\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539101575168671745,\"id_str\":\"539101575168671745\",\"indices\":[64,86],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tGBr3IQAExjx9.png\",\"url\":\"http:\\/\\/t.co\\/BZ4FrfJ9L2\",\"display_url\":\"pic.twitter.com\\/BZ4FrfJ9L2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/539101575424524289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":834,\"h\":449,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":323,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 01:43:00 +0000 2014\",\"id\":538870779103158272,\"id_str\":\"538870779103158272\",\"text\":\"RT @USCBookstore: Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246359,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 17:00:07 +0000 2014\",\"id\":538739192843350021,\"id_str\":\"538739192843350021\",\"text\":\"Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":39372927,\"id_str\":\"39372927\",\"name\":\"USC Bookstore\",\"screen_name\":\"USCBookstore\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Serving the academic and spirit needs of USC community.\",\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Kbk7iO7lAk\",\"expanded_url\":\"http:\\/\\/www.uscbookstore.com\",\"display_url\":\"uscbookstore.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2558,\"friends_count\":247,\"listed_count\":133,\"created_at\":\"Mon May 11 23:26:33 +0000 2009\",\"favourites_count\":52,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":882,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A80B10\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/13644699\\/bookstore.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/207776406\\/logo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/39372927\\/1405548397\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"ED315B\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":41,\"favorite_count\":17,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[62,70]},{\"text\":\"USC\",\"indices\":[71,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[76,99]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":41,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[80,88]},{\"text\":\"USC\",\"indices\":[89,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USCBookstore\",\"name\":\"USC Bookstore\",\"id\":39372927,\"id_str\":\"39372927\",\"indices\":[3,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[94,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 23:00:07 +0000 2014\",\"id\":538829791345246209,\"id_str\":\"538829791345246209\",\"text\":\"Do 8-bit turtles dream of pixelated pizza? http:\\/\\/t.co\\/BdzDyEn4a9 http:\\/\\/t.co\\/OUDE3wUgVb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":259,\"favorite_count\":589,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BdzDyEn4a9\",\"expanded_url\":\"http:\\/\\/goo.gl\\/BSF2Mv\",\"display_url\":\"goo.gl\\/BSF2Mv\",\"indices\":[43,65]}],\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538829791265554434,\"id_str\":\"538829791265554434\",\"indices\":[66,88],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pO1x7IAAI81MA.png\",\"url\":\"http:\\/\\/t.co\\/OUDE3wUgVb\",\"display_url\":\"pic.twitter.com\\/OUDE3wUgVb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538829791345246209\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":318,\"resize\":\"fit\"},\"large\":{\"w\":710,\"h\":377,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":180,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 20:00:07 +0000 2014\",\"id\":538784489510813696,\"id_str\":\"538784489510813696\",\"text\":\"We\\u2019ll take one #LoveMeHarder cover \\u2013 shaken, not stirred. http:\\/\\/t.co\\/Cdkc5x3K5L http:\\/\\/t.co\\/Pksbi9KPVi\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":169,\"favorite_count\":591,\"entities\":{\"hashtags\":[{\"text\":\"LoveMeHarder\",\"indices\":[15,28]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Cdkc5x3K5L\",\"expanded_url\":\"http:\\/\\/goo.gl\\/vYL4nn\",\"display_url\":\"goo.gl\\/vYL4nn\",\"indices\":[58,80]}],\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538784489288519680,\"id_str\":\"538784489288519680\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3olo26IUAA2V46.png\",\"url\":\"http:\\/\\/t.co\\/Pksbi9KPVi\",\"display_url\":\"pic.twitter.com\\/Pksbi9KPVi\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538784489510813696\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":818,\"h\":459,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":336,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":190,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 17:00:15 +0000 2014\",\"id\":538739227178315776,\"id_str\":\"538739227178315776\",\"text\":\".@devinsupertramp travels to Nepal to give the gift of selfies. http:\\/\\/t.co\\/Eqds8Pg6ul http:\\/\\/t.co\\/7lbU35x7Wo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":242,\"favorite_count\":687,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"devinsupertramp\",\"name\":\"Devin Graham\",\"id\":56030318,\"id_str\":\"56030318\",\"indices\":[1,17]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Eqds8Pg6ul\",\"expanded_url\":\"http:\\/\\/goo.gl\\/WhqPmI\",\"display_url\":\"goo.gl\\/WhqPmI\",\"indices\":[64,86]}],\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538739226989572096,\"id_str\":\"538739226989572096\",\"indices\":[87,109],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8ePtIMAAW0Ud.png\",\"url\":\"http:\\/\\/t.co\\/7lbU35x7Wo\",\"display_url\":\"pic.twitter.com\\/7lbU35x7Wo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538739227178315776\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":183,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":324,\"resize\":\"fit\"},\"large\":{\"w\":834,\"h\":451,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 02:00:11 +0000 2014\",\"id\":538512718089969664,\"id_str\":\"538512718089969664\",\"text\":\"Can you rap without rhyming? http:\\/\\/t.co\\/LXc2g92eZW http:\\/\\/t.co\\/gUyOQdmAEZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":244,\"favorite_count\":703,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/LXc2g92eZW\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0PAQnX\",\"display_url\":\"goo.gl\\/0PAQnX\",\"indices\":[29,51]}],\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538512717913812993,\"id_str\":\"538512717913812993\",\"indices\":[52,74],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kudrpIcAEq1zx.png\",\"url\":\"http:\\/\\/t.co\\/gUyOQdmAEZ\",\"display_url\":\"pic.twitter.com\\/gUyOQdmAEZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538512718089969664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":157,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":277,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":472,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 23:00:18 +0000 2014\",\"id\":538467448430022656,\"id_str\":\"538467448430022656\",\"text\":\".@FifthHarmony makes our heart beat like a #Sledgehammer. http:\\/\\/t.co\\/d39bI9XCCV http:\\/\\/t.co\\/yowHYN5BwA\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2910,\"favorite_count\":3637,\"entities\":{\"hashtags\":[{\"text\":\"Sledgehammer\",\"indices\":[43,56]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FifthHarmony\",\"name\":\"Fifth Harmony\",\"id\":872374136,\"id_str\":\"872374136\",\"indices\":[1,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/d39bI9XCCV\",\"expanded_url\":\"http:\\/\\/goo.gl\\/bJRiYD\",\"display_url\":\"goo.gl\\/bJRiYD\",\"indices\":[58,80]}],\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538467448350339072,\"id_str\":\"538467448350339072\",\"indices\":[81,103],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kFSpYIcAAVKMu.png\",\"url\":\"http:\\/\\/t.co\\/yowHYN5BwA\",\"display_url\":\"pic.twitter.com\\/yowHYN5BwA\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538467448430022656\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":838,\"h\":413,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 20:00:08 +0000 2014\",\"id\":538422107659853825,\"id_str\":\"538422107659853825\",\"text\":\"For those on the fence about rocking, AC\\/DC busts you. http:\\/\\/t.co\\/qRMoBNApG0 http:\\/\\/t.co\\/C6fnqE4Ksg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/srm.vitrue.com\\\" rel=\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"profile_location\":null,\"description\":\"Tweets on news, music and trends from all your favorite channels.\",\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F3fLcfnBVf\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46781599,\"friends_count\":833,\"listed_count\":75376,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":660,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11949,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"AF0000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451389902429491200\\/Rrlh09IC.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/514243000063373312\\/zSPlu0vY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/10228272\\/1410614774\",\"profile_link_color\":\"C9191D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":316,\"favorite_count\":644,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qRMoBNApG0\",\"expanded_url\":\"http:\\/\\/goo.gl\\/0aPg5v\",\"display_url\":\"goo.gl\\/0aPg5v\",\"indices\":[55,77]}],\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538422107508842497,\"id_str\":\"538422107508842497\",\"indices\":[78,100],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jcDdlIIAEbM_0.png\",\"url\":\"http:\\/\\/t.co\\/C6fnqE4Ksg\",\"display_url\":\"pic.twitter.com\\/C6fnqE4Ksg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/YouTube\\/status\\/538422107659853825\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":780,\"h\":358,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":156,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":275,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 19:15:36 +0000 2014\",\"id\":538410899405828096,\"id_str\":\"538410899405828096\",\"text\":\"RT @GooglePlay: Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603498,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Nov 28 14:30:33 +0000 2014\",\"id\":538339165675720704,\"id_str\":\"538339165675720704\",\"text\":\"Post-turkey presents, anyone? Google Play #BlackFriday device sale is on. http:\\/\\/t.co\\/SlkyyWxzXv http:\\/\\/t.co\\/H5x8EsJzhE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":243381107,\"id_str\":\"243381107\",\"name\":\"Google Play\",\"screen_name\":\"GooglePlay\",\"location\":\"Play Your Heart Out\",\"profile_location\":null,\"description\":\"Discover music, movies & tv, apps, books, newsstand and games on Google Play.\",\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/655Gl498Xy\",\"expanded_url\":\"http:\\/\\/play.google.com\",\"display_url\":\"play.google.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4053739,\"friends_count\":561,\"listed_count\":8390,\"created_at\":\"Wed Jan 26 22:44:39 +0000 2011\",\"favourites_count\":313,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5003,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/820413611\\/07d2c719da83b444279c0e93d2329e1a.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529308402661339136\\/Yb0c2yz8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/243381107\\/1415031944\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":101,\"favorite_count\":211,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[42,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[75,97]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[98,120],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"scopes\":{\"place_ids\":[\"3376992a082d67c7\",\"96683cc9126741d1\"]},\"lang\":\"en\"},\"retweet_count\":101,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BlackFriday\",\"indices\":[58,70]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GooglePlay\",\"name\":\"Google Play\",\"id\":243381107,\"id_str\":\"243381107\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlkyyWxzXv\",\"expanded_url\":\"http:\\/\\/goo.gl\\/8vNKis\",\"display_url\":\"goo.gl\\/8vNKis\",\"indices\":[91,113]}],\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"extended_entities\":{\"media\":[{\"id\":538339165038211072,\"id_str\":\"538339165038211072\",\"indices\":[114,136],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3iQnkzIcAAEfVS.png\",\"url\":\"http:\\/\\/t.co\\/H5x8EsJzhE\",\"display_url\":\"pic.twitter.com\\/H5x8EsJzhE\",\"expanded_url\":\"http:\\/\\/twitter.com\\/GooglePlay\\/status\\/538339165675720704\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}},\"source_status_id\":538339165675720704,\"source_status_id_str\":\"538339165675720704\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Nov 28 18:00:05 +0000 2014\",\"id\":538391897698738177,\"id_str\":\"538391897698738177\",\"text\":\"In #TimesSquare? Entertain yourself using http:\\/\\/t.co\\/tTokS6S6bg. Not in NYC? Entertain these guys. #NotTheSame http:\\/\\/t.co\\/nzPI6KxtoG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.wildfireapp.com\\/?utm_source=Twitter&utm_medium=Tweet&utm_campaign=via%2BWildfire%2BSuite\\\" rel=\\\"nofollow\\\"\\u003eWildfire Suite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_name\":\"Android\",\"location\":\"Mountain View, CA\",\"profile_location\":null,\"description\":\"News, tips, and tricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"http:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6603498,\"friends_count\":32,\"listed_count\":19228,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":526,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522418773723074561\\/AyreX9yf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/382267114\\/1413389307\",\"profile_link_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":95,\"favorite_count\":172,\"entities\":{\"hashtags\":[{\"text\":\"TimesSquare\",\"indices\":[3,15]},{\"text\":\"NotTheSame\",\"indices\":[100,111]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tTokS6S6bg\",\"expanded_url\":\"http:\\/\\/androidify.com\",\"display_url\":\"androidify.com\",\"indices\":[42,64]}],\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538391897367400448,\"id_str\":\"538391897367400448\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3jAlACIUAAdo-F.png\",\"url\":\"http:\\/\\/t.co\\/nzPI6KxtoG\",\"display_url\":\"pic.twitter.com\\/nzPI6KxtoG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Android\\/status\\/538391897698738177\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":575,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testidcursoritems.json000066400000000000000000004642271265716604700215560ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "176" ], "content-length": [ "65513" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "272c4f83ad60a25f" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "b9512bfcea16f0770b94a176cb3d245f" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430243883459; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:22 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:22 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:22 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Mon Dec 01 17:18:10 +0000 2014\",\"id\":539468509664002048,\"id_str\":\"539468509664002048\",\"text\":\"testing 1000 http:\\/\\/t.co\\/pZynULaZvK\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539468509630435328,\"id_str\":\"539468509630435328\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"url\":\"http:\\/\\/t.co\\/pZynULaZvK\",\"display_url\":\"pic.twitter.com\\/pZynULaZvK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539468509664002048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539468509630435328,\"id_str\":\"539468509630435328\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"url\":\"http:\\/\\/t.co\\/pZynULaZvK\",\"display_url\":\"pic.twitter.com\\/pZynULaZvK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539468509664002048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 02:16:04 +0000 2014\",\"id\":539241489755557888,\"id_str\":\"539241489755557888\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5wyi6Tyl0A\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:09:16 +0000 2014\",\"id\":535162914437890048,\"id_str\":\"535162914437890048\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DJey6s3yJO\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:08:10 +0000 2014\",\"id\":535162638578515968,\"id_str\":\"535162638578515968\",\"text\":\"testing 1000 http:\\/\\/t.co\\/KaBNMsN9y3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 15:10:06 +0000 2014\",\"id\":533638078091759616,\"id_str\":\"533638078091759616\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VfbPrXOmQG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 13:35:04 +0000 2014\",\"id\":533614161096617984,\"id_str\":\"533614161096617984\",\"text\":\"testing 1000 http:\\/\\/t.co\\/w94UErYw0G\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 20:05:12 +0000 2014\",\"id\":532625175624163328,\"id_str\":\"532625175624163328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tzKZ9823Op\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 02 17:54:47 +0000 2014\",\"id\":528968476996550658,\"id_str\":\"528968476996550658\",\"text\":\"testing 1000 http:\\/\\/t.co\\/eIaw6uflqe\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 30 19:00:40 +0000 2014\",\"id\":527897893441507328,\"id_str\":\"527897893441507328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Z6xcfiwNbI\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Oct 28 19:01:58 +0000 2014\",\"id\":527173447017713664,\"id_str\":\"527173447017713664\",\"text\":\"testing 1000 http:\\/\\/t.co\\/L5f2BasSkB\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Oct 25 04:32:25 +0000 2014\",\"id\":525867453255925761,\"id_str\":\"525867453255925761\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Cdqddk0LVj\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 23 23:14:46 +0000 2014\",\"id\":525425125781696512,\"id_str\":\"525425125781696512\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DfBljRX0jg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Oct 22 01:37:08 +0000 2014\",\"id\":524736177669038080,\"id_str\":\"524736177669038080\",\"text\":\"testing 1000 http:\\/\\/t.co\\/j1OoDHzPi2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Oct 12 14:03:55 +0000 2014\",\"id\":521300231275573248,\"id_str\":\"521300231275573248\",\"text\":\"testing 1000 http:\\/\\/t.co\\/knm02MhHgF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Oct 10 19:01:44 +0000 2014\",\"id\":520650406158823424,\"id_str\":\"520650406158823424\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Joo3ArWQDt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 09 10:17:28 +0000 2014\",\"id\":520156080920203264,\"id_str\":\"520156080920203264\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wjYfw7uiV8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ], "Cookie": [ "lang=en; guest_id=v1%3A141745430243883459" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?max_id=520156080920203263" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "175" ], "content-length": [ "68961" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "5429e50106d64ac4" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "b9512bfcea16f0770b94a176cb3d245f" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:22 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:22 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Thu Oct 02 23:00:33 +0000 2014\",\"id\":517811404171014145,\"id_str\":\"517811404171014145\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9NqbF1Ypqp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Sep 20 00:06:16 +0000 2014\",\"id\":513116899798839296,\"id_str\":\"513116899798839296\",\"text\":\"testing 1000 http:\\/\\/t.co\\/yc6WGlcF3d\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":513116899618480128,\"id_str\":\"513116899618480128\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"url\":\"http:\\/\\/t.co\\/yc6WGlcF3d\",\"display_url\":\"pic.twitter.com\\/yc6WGlcF3d\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513116899798839296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":513116899618480128,\"id_str\":\"513116899618480128\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"url\":\"http:\\/\\/t.co\\/yc6WGlcF3d\",\"display_url\":\"pic.twitter.com\\/yc6WGlcF3d\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513116899798839296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Sep 19 18:50:58 +0000 2014\",\"id\":513037549615329282,\"id_str\":\"513037549615329282\",\"text\":\"testing 1000 http:\\/\\/t.co\\/1iT2A0mCXJ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":513037549418201088,\"id_str\":\"513037549418201088\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"url\":\"http:\\/\\/t.co\\/1iT2A0mCXJ\",\"display_url\":\"pic.twitter.com\\/1iT2A0mCXJ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513037549615329282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":513037549418201088,\"id_str\":\"513037549418201088\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"url\":\"http:\\/\\/t.co\\/1iT2A0mCXJ\",\"display_url\":\"pic.twitter.com\\/1iT2A0mCXJ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513037549615329282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Sep 19 10:28:56 +0000 2014\",\"id\":512911209998217216,\"id_str\":\"512911209998217216\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tLMR2RNyl5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":512911209817853952,\"id_str\":\"512911209817853952\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"url\":\"http:\\/\\/t.co\\/tLMR2RNyl5\",\"display_url\":\"pic.twitter.com\\/tLMR2RNyl5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/512911209998217216\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":512911209817853952,\"id_str\":\"512911209817853952\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"url\":\"http:\\/\\/t.co\\/tLMR2RNyl5\",\"display_url\":\"pic.twitter.com\\/tLMR2RNyl5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/512911209998217216\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 19 21:37:41 +0000 2014\",\"id\":501845480473907201,\"id_str\":\"501845480473907201\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9jySA804ZU\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":501845480205479938,\"id_str\":\"501845480205479938\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"url\":\"http:\\/\\/t.co\\/9jySA804ZU\",\"display_url\":\"pic.twitter.com\\/9jySA804ZU\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/501845480473907201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":501845480205479938,\"id_str\":\"501845480205479938\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"url\":\"http:\\/\\/t.co\\/9jySA804ZU\",\"display_url\":\"pic.twitter.com\\/9jySA804ZU\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/501845480473907201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 13 01:23:41 +0000 2014\",\"id\":499365640264626176,\"id_str\":\"499365640264626176\",\"text\":\"testing 1000 http:\\/\\/t.co\\/2XtJqoNyA4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":499365640163958788,\"id_str\":\"499365640163958788\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"url\":\"http:\\/\\/t.co\\/2XtJqoNyA4\",\"display_url\":\"pic.twitter.com\\/2XtJqoNyA4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/499365640264626176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":499365640163958788,\"id_str\":\"499365640163958788\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"url\":\"http:\\/\\/t.co\\/2XtJqoNyA4\",\"display_url\":\"pic.twitter.com\\/2XtJqoNyA4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/499365640264626176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Aug 11 18:49:29 +0000 2014\",\"id\":498904049278660609,\"id_str\":\"498904049278660609\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5KdDfCVy0H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":498904049182195713,\"id_str\":\"498904049182195713\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"url\":\"http:\\/\\/t.co\\/5KdDfCVy0H\",\"display_url\":\"pic.twitter.com\\/5KdDfCVy0H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498904049278660609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":498904049182195713,\"id_str\":\"498904049182195713\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"url\":\"http:\\/\\/t.co\\/5KdDfCVy0H\",\"display_url\":\"pic.twitter.com\\/5KdDfCVy0H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498904049278660609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Aug 10 20:43:01 +0000 2014\",\"id\":498570235553669120,\"id_str\":\"498570235553669120\",\"text\":\"testing 1000 http:\\/\\/t.co\\/F46r2w49BS\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":498570235343929347,\"id_str\":\"498570235343929347\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"url\":\"http:\\/\\/t.co\\/F46r2w49BS\",\"display_url\":\"pic.twitter.com\\/F46r2w49BS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498570235553669120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":498570235343929347,\"id_str\":\"498570235343929347\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"url\":\"http:\\/\\/t.co\\/F46r2w49BS\",\"display_url\":\"pic.twitter.com\\/F46r2w49BS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498570235553669120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Aug 09 17:58:48 +0000 2014\",\"id\":498166517985341440,\"id_str\":\"498166517985341440\",\"text\":\"testing 1000 http:\\/\\/t.co\\/QDeihS5vDQ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":498166517788209152,\"id_str\":\"498166517788209152\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"url\":\"http:\\/\\/t.co\\/QDeihS5vDQ\",\"display_url\":\"pic.twitter.com\\/QDeihS5vDQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498166517985341440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":498166517788209152,\"id_str\":\"498166517788209152\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"url\":\"http:\\/\\/t.co\\/QDeihS5vDQ\",\"display_url\":\"pic.twitter.com\\/QDeihS5vDQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498166517985341440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 05 15:45:58 +0000 2014\",\"id\":496683539954298880,\"id_str\":\"496683539954298880\",\"text\":\"testing 1000 http:\\/\\/t.co\\/4WW6sObiUN\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":496683539815878656,\"id_str\":\"496683539815878656\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"url\":\"http:\\/\\/t.co\\/4WW6sObiUN\",\"display_url\":\"pic.twitter.com\\/4WW6sObiUN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/496683539954298880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":496683539815878656,\"id_str\":\"496683539815878656\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"url\":\"http:\\/\\/t.co\\/4WW6sObiUN\",\"display_url\":\"pic.twitter.com\\/4WW6sObiUN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/496683539954298880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Jul 28 17:02:41 +0000 2014\",\"id\":493803743616307200,\"id_str\":\"493803743616307200\",\"text\":\"testing 1000 http:\\/\\/t.co\\/f51hXtM76y\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":493803743364673537,\"id_str\":\"493803743364673537\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"url\":\"http:\\/\\/t.co\\/f51hXtM76y\",\"display_url\":\"pic.twitter.com\\/f51hXtM76y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/493803743616307200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":493803743364673537,\"id_str\":\"493803743364673537\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"url\":\"http:\\/\\/t.co\\/f51hXtM76y\",\"display_url\":\"pic.twitter.com\\/f51hXtM76y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/493803743616307200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jul 16 19:50:53 +0000 2014\",\"id\":489497417222737920,\"id_str\":\"489497417222737920\",\"text\":\"testing 1000 http:\\/\\/t.co\\/U8fVXmmtIy\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":489497417084325890,\"id_str\":\"489497417084325890\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"url\":\"http:\\/\\/t.co\\/U8fVXmmtIy\",\"display_url\":\"pic.twitter.com\\/U8fVXmmtIy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/489497417222737920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":489497417084325890,\"id_str\":\"489497417084325890\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"url\":\"http:\\/\\/t.co\\/U8fVXmmtIy\",\"display_url\":\"pic.twitter.com\\/U8fVXmmtIy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/489497417222737920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 01 11:57:36 +0000 2014\",\"id\":483942492274819072,\"id_str\":\"483942492274819072\",\"text\":\"testing 1000 http:\\/\\/t.co\\/We07CWLk2k\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":483942492102877184,\"id_str\":\"483942492102877184\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"url\":\"http:\\/\\/t.co\\/We07CWLk2k\",\"display_url\":\"pic.twitter.com\\/We07CWLk2k\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/483942492274819072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":483942492102877184,\"id_str\":\"483942492102877184\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"url\":\"http:\\/\\/t.co\\/We07CWLk2k\",\"display_url\":\"pic.twitter.com\\/We07CWLk2k\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/483942492274819072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Jun 23 09:33:02 +0000 2014\",\"id\":481007008074592256,\"id_str\":\"481007008074592256\",\"text\":\"testing 1000 http:\\/\\/t.co\\/y7sEVTJ7hG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":481007007931969536,\"id_str\":\"481007007931969536\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"url\":\"http:\\/\\/t.co\\/y7sEVTJ7hG\",\"display_url\":\"pic.twitter.com\\/y7sEVTJ7hG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/481007008074592256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":481007007931969536,\"id_str\":\"481007007931969536\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"url\":\"http:\\/\\/t.co\\/y7sEVTJ7hG\",\"display_url\":\"pic.twitter.com\\/y7sEVTJ7hG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/481007008074592256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Jun 22 23:14:25 +0000 2014\",\"id\":480851329162547200,\"id_str\":\"480851329162547200\",\"text\":\"testing 1000 http:\\/\\/t.co\\/0Wbo3m9Xb2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":480851329024135172,\"id_str\":\"480851329024135172\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"url\":\"http:\\/\\/t.co\\/0Wbo3m9Xb2\",\"display_url\":\"pic.twitter.com\\/0Wbo3m9Xb2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480851329162547200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":480851329024135172,\"id_str\":\"480851329024135172\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"url\":\"http:\\/\\/t.co\\/0Wbo3m9Xb2\",\"display_url\":\"pic.twitter.com\\/0Wbo3m9Xb2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480851329162547200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Jun 21 10:45:04 +0000 2014\",\"id\":480300359915536385,\"id_str\":\"480300359915536385\",\"text\":\"testing 1000 http:\\/\\/t.co\\/XI1ftgqFi9\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":480300359680663552,\"id_str\":\"480300359680663552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"url\":\"http:\\/\\/t.co\\/XI1ftgqFi9\",\"display_url\":\"pic.twitter.com\\/XI1ftgqFi9\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480300359915536385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":480300359680663552,\"id_str\":\"480300359680663552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"url\":\"http:\\/\\/t.co\\/XI1ftgqFi9\",\"display_url\":\"pic.twitter.com\\/XI1ftgqFi9\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480300359915536385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Jun 19 19:25:20 +0000 2014\",\"id\":479706515893260288,\"id_str\":\"479706515893260288\",\"text\":\"testing 1000 http:\\/\\/t.co\\/ERe4S0VRo1\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":479706515561922560,\"id_str\":\"479706515561922560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"url\":\"http:\\/\\/t.co\\/ERe4S0VRo1\",\"display_url\":\"pic.twitter.com\\/ERe4S0VRo1\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479706515893260288\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":479706515561922560,\"id_str\":\"479706515561922560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"url\":\"http:\\/\\/t.co\\/ERe4S0VRo1\",\"display_url\":\"pic.twitter.com\\/ERe4S0VRo1\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479706515893260288\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jun 18 17:27:00 +0000 2014\",\"id\":479314349119373313,\"id_str\":\"479314349119373313\",\"text\":\"testing 1000 http:\\/\\/t.co\\/zVWIzi0sUV\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":479314348976791552,\"id_str\":\"479314348976791552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"url\":\"http:\\/\\/t.co\\/zVWIzi0sUV\",\"display_url\":\"pic.twitter.com\\/zVWIzi0sUV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479314349119373313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":479314348976791552,\"id_str\":\"479314348976791552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"url\":\"http:\\/\\/t.co\\/zVWIzi0sUV\",\"display_url\":\"pic.twitter.com\\/zVWIzi0sUV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479314349119373313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jun 18 16:47:10 +0000 2014\",\"id\":479304322698588160,\"id_str\":\"479304322698588160\",\"text\":\"testing 1000 http:\\/\\/t.co\\/SRGMr0MWgr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":479304322530811904,\"id_str\":\"479304322530811904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"url\":\"http:\\/\\/t.co\\/SRGMr0MWgr\",\"display_url\":\"pic.twitter.com\\/SRGMr0MWgr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479304322698588160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":479304322530811904,\"id_str\":\"479304322530811904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"url\":\"http:\\/\\/t.co\\/SRGMr0MWgr\",\"display_url\":\"pic.twitter.com\\/SRGMr0MWgr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479304322698588160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Jun 13 10:32:36 +0000 2014\",\"id\":477398122105036800,\"id_str\":\"477398122105036800\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9o76yVK8Zs\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":477398122021130240,\"id_str\":\"477398122021130240\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"url\":\"http:\\/\\/t.co\\/9o76yVK8Zs\",\"display_url\":\"pic.twitter.com\\/9o76yVK8Zs\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/477398122105036800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":477398122021130240,\"id_str\":\"477398122021130240\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"url\":\"http:\\/\\/t.co\\/9o76yVK8Zs\",\"display_url\":\"pic.twitter.com\\/9o76yVK8Zs\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/477398122105036800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testidcursorpages.json000066400000000000000000013674441265716604700215400ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "174" ], "content-length": [ "65513" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "6dfc2e48f30267a7" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c85e1b56eabf7da0c2d23931effe7e96" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141745430349886262; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 17:18:23 UTC" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:23 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:23 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Mon Dec 01 17:18:10 +0000 2014\",\"id\":539468509664002048,\"id_str\":\"539468509664002048\",\"text\":\"testing 1000 http:\\/\\/t.co\\/pZynULaZvK\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539468509630435328,\"id_str\":\"539468509630435328\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"url\":\"http:\\/\\/t.co\\/pZynULaZvK\",\"display_url\":\"pic.twitter.com\\/pZynULaZvK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539468509664002048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539468509630435328,\"id_str\":\"539468509630435328\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3yTwFQIEAAklvy.png\",\"url\":\"http:\\/\\/t.co\\/pZynULaZvK\",\"display_url\":\"pic.twitter.com\\/pZynULaZvK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539468509664002048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 02:16:04 +0000 2014\",\"id\":539241489755557888,\"id_str\":\"539241489755557888\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5wyi6Tyl0A\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:09:16 +0000 2014\",\"id\":535162914437890048,\"id_str\":\"535162914437890048\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DJey6s3yJO\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:08:10 +0000 2014\",\"id\":535162638578515968,\"id_str\":\"535162638578515968\",\"text\":\"testing 1000 http:\\/\\/t.co\\/KaBNMsN9y3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 15:10:06 +0000 2014\",\"id\":533638078091759616,\"id_str\":\"533638078091759616\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VfbPrXOmQG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 13:35:04 +0000 2014\",\"id\":533614161096617984,\"id_str\":\"533614161096617984\",\"text\":\"testing 1000 http:\\/\\/t.co\\/w94UErYw0G\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 20:05:12 +0000 2014\",\"id\":532625175624163328,\"id_str\":\"532625175624163328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tzKZ9823Op\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 02 17:54:47 +0000 2014\",\"id\":528968476996550658,\"id_str\":\"528968476996550658\",\"text\":\"testing 1000 http:\\/\\/t.co\\/eIaw6uflqe\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 30 19:00:40 +0000 2014\",\"id\":527897893441507328,\"id_str\":\"527897893441507328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Z6xcfiwNbI\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Oct 28 19:01:58 +0000 2014\",\"id\":527173447017713664,\"id_str\":\"527173447017713664\",\"text\":\"testing 1000 http:\\/\\/t.co\\/L5f2BasSkB\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Oct 25 04:32:25 +0000 2014\",\"id\":525867453255925761,\"id_str\":\"525867453255925761\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Cdqddk0LVj\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 23 23:14:46 +0000 2014\",\"id\":525425125781696512,\"id_str\":\"525425125781696512\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DfBljRX0jg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Oct 22 01:37:08 +0000 2014\",\"id\":524736177669038080,\"id_str\":\"524736177669038080\",\"text\":\"testing 1000 http:\\/\\/t.co\\/j1OoDHzPi2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Oct 12 14:03:55 +0000 2014\",\"id\":521300231275573248,\"id_str\":\"521300231275573248\",\"text\":\"testing 1000 http:\\/\\/t.co\\/knm02MhHgF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Oct 10 19:01:44 +0000 2014\",\"id\":520650406158823424,\"id_str\":\"520650406158823424\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Joo3ArWQDt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 09 10:17:28 +0000 2014\",\"id\":520156080920203264,\"id_str\":\"520156080920203264\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wjYfw7uiV8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ], "Cookie": [ "lang=en; guest_id=v1%3A141745430349886262" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?max_id=520156080920203263" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "173" ], "content-length": [ "68961" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "afc6bfc39cd8d742" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c85e1b56eabf7da0c2d23931effe7e96" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:23 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:23 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Thu Oct 02 23:00:33 +0000 2014\",\"id\":517811404171014145,\"id_str\":\"517811404171014145\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9NqbF1Ypqp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Sep 20 00:06:16 +0000 2014\",\"id\":513116899798839296,\"id_str\":\"513116899798839296\",\"text\":\"testing 1000 http:\\/\\/t.co\\/yc6WGlcF3d\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":513116899618480128,\"id_str\":\"513116899618480128\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"url\":\"http:\\/\\/t.co\\/yc6WGlcF3d\",\"display_url\":\"pic.twitter.com\\/yc6WGlcF3d\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513116899798839296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":513116899618480128,\"id_str\":\"513116899618480128\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"url\":\"http:\\/\\/t.co\\/yc6WGlcF3d\",\"display_url\":\"pic.twitter.com\\/yc6WGlcF3d\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513116899798839296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Sep 19 18:50:58 +0000 2014\",\"id\":513037549615329282,\"id_str\":\"513037549615329282\",\"text\":\"testing 1000 http:\\/\\/t.co\\/1iT2A0mCXJ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":513037549418201088,\"id_str\":\"513037549418201088\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"url\":\"http:\\/\\/t.co\\/1iT2A0mCXJ\",\"display_url\":\"pic.twitter.com\\/1iT2A0mCXJ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513037549615329282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":513037549418201088,\"id_str\":\"513037549418201088\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx6s7tmCQAA-HP4.png\",\"url\":\"http:\\/\\/t.co\\/1iT2A0mCXJ\",\"display_url\":\"pic.twitter.com\\/1iT2A0mCXJ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513037549615329282\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Sep 19 10:28:56 +0000 2014\",\"id\":512911209998217216,\"id_str\":\"512911209998217216\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tLMR2RNyl5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":512911209817853952,\"id_str\":\"512911209817853952\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"url\":\"http:\\/\\/t.co\\/tLMR2RNyl5\",\"display_url\":\"pic.twitter.com\\/tLMR2RNyl5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/512911209998217216\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":512911209817853952,\"id_str\":\"512911209817853952\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx46Bx6CUAAH5DB.png\",\"url\":\"http:\\/\\/t.co\\/tLMR2RNyl5\",\"display_url\":\"pic.twitter.com\\/tLMR2RNyl5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/512911209998217216\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 19 21:37:41 +0000 2014\",\"id\":501845480473907201,\"id_str\":\"501845480473907201\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9jySA804ZU\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":501845480205479938,\"id_str\":\"501845480205479938\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"url\":\"http:\\/\\/t.co\\/9jySA804ZU\",\"display_url\":\"pic.twitter.com\\/9jySA804ZU\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/501845480473907201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":501845480205479938,\"id_str\":\"501845480205479938\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BvbpzivIcAIFI6z.png\",\"url\":\"http:\\/\\/t.co\\/9jySA804ZU\",\"display_url\":\"pic.twitter.com\\/9jySA804ZU\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/501845480473907201\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 13 01:23:41 +0000 2014\",\"id\":499365640264626176,\"id_str\":\"499365640264626176\",\"text\":\"testing 1000 http:\\/\\/t.co\\/2XtJqoNyA4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":499365640163958788,\"id_str\":\"499365640163958788\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"url\":\"http:\\/\\/t.co\\/2XtJqoNyA4\",\"display_url\":\"pic.twitter.com\\/2XtJqoNyA4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/499365640264626176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":499365640163958788,\"id_str\":\"499365640163958788\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bu4aZ2sCIAQBd2T.png\",\"url\":\"http:\\/\\/t.co\\/2XtJqoNyA4\",\"display_url\":\"pic.twitter.com\\/2XtJqoNyA4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/499365640264626176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Aug 11 18:49:29 +0000 2014\",\"id\":498904049278660609,\"id_str\":\"498904049278660609\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5KdDfCVy0H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":498904049182195713,\"id_str\":\"498904049182195713\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"url\":\"http:\\/\\/t.co\\/5KdDfCVy0H\",\"display_url\":\"pic.twitter.com\\/5KdDfCVy0H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498904049278660609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":498904049182195713,\"id_str\":\"498904049182195713\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bux2luSCQAE1oWB.png\",\"url\":\"http:\\/\\/t.co\\/5KdDfCVy0H\",\"display_url\":\"pic.twitter.com\\/5KdDfCVy0H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498904049278660609\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Aug 10 20:43:01 +0000 2014\",\"id\":498570235553669120,\"id_str\":\"498570235553669120\",\"text\":\"testing 1000 http:\\/\\/t.co\\/F46r2w49BS\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":498570235343929347,\"id_str\":\"498570235343929347\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"url\":\"http:\\/\\/t.co\\/F46r2w49BS\",\"display_url\":\"pic.twitter.com\\/F46r2w49BS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498570235553669120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":498570235343929347,\"id_str\":\"498570235343929347\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/ButG_M1CAAMlbuE.png\",\"url\":\"http:\\/\\/t.co\\/F46r2w49BS\",\"display_url\":\"pic.twitter.com\\/F46r2w49BS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498570235553669120\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Aug 09 17:58:48 +0000 2014\",\"id\":498166517985341440,\"id_str\":\"498166517985341440\",\"text\":\"testing 1000 http:\\/\\/t.co\\/QDeihS5vDQ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":498166517788209152,\"id_str\":\"498166517788209152\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"url\":\"http:\\/\\/t.co\\/QDeihS5vDQ\",\"display_url\":\"pic.twitter.com\\/QDeihS5vDQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498166517985341440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":498166517788209152,\"id_str\":\"498166517788209152\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BunXzvvCcAATQA-.png\",\"url\":\"http:\\/\\/t.co\\/QDeihS5vDQ\",\"display_url\":\"pic.twitter.com\\/QDeihS5vDQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/498166517985341440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 05 15:45:58 +0000 2014\",\"id\":496683539954298880,\"id_str\":\"496683539954298880\",\"text\":\"testing 1000 http:\\/\\/t.co\\/4WW6sObiUN\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":496683539815878656,\"id_str\":\"496683539815878656\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"url\":\"http:\\/\\/t.co\\/4WW6sObiUN\",\"display_url\":\"pic.twitter.com\\/4WW6sObiUN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/496683539954298880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":496683539815878656,\"id_str\":\"496683539815878656\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BuSTDESCUAAoOIF.png\",\"url\":\"http:\\/\\/t.co\\/4WW6sObiUN\",\"display_url\":\"pic.twitter.com\\/4WW6sObiUN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/496683539954298880\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Jul 28 17:02:41 +0000 2014\",\"id\":493803743616307200,\"id_str\":\"493803743616307200\",\"text\":\"testing 1000 http:\\/\\/t.co\\/f51hXtM76y\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":493803743364673537,\"id_str\":\"493803743364673537\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"url\":\"http:\\/\\/t.co\\/f51hXtM76y\",\"display_url\":\"pic.twitter.com\\/f51hXtM76y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/493803743616307200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":493803743364673537,\"id_str\":\"493803743364673537\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BtpX42gCcAExUDo.png\",\"url\":\"http:\\/\\/t.co\\/f51hXtM76y\",\"display_url\":\"pic.twitter.com\\/f51hXtM76y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/493803743616307200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jul 16 19:50:53 +0000 2014\",\"id\":489497417222737920,\"id_str\":\"489497417222737920\",\"text\":\"testing 1000 http:\\/\\/t.co\\/U8fVXmmtIy\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":489497417084325890,\"id_str\":\"489497417084325890\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"url\":\"http:\\/\\/t.co\\/U8fVXmmtIy\",\"display_url\":\"pic.twitter.com\\/U8fVXmmtIy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/489497417222737920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":489497417084325890,\"id_str\":\"489497417084325890\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BssLTq_IUAII7eh.png\",\"url\":\"http:\\/\\/t.co\\/U8fVXmmtIy\",\"display_url\":\"pic.twitter.com\\/U8fVXmmtIy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/489497417222737920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 01 11:57:36 +0000 2014\",\"id\":483942492274819072,\"id_str\":\"483942492274819072\",\"text\":\"testing 1000 http:\\/\\/t.co\\/We07CWLk2k\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":483942492102877184,\"id_str\":\"483942492102877184\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"url\":\"http:\\/\\/t.co\\/We07CWLk2k\",\"display_url\":\"pic.twitter.com\\/We07CWLk2k\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/483942492274819072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":483942492102877184,\"id_str\":\"483942492102877184\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BrdPIe2CYAASvVG.png\",\"url\":\"http:\\/\\/t.co\\/We07CWLk2k\",\"display_url\":\"pic.twitter.com\\/We07CWLk2k\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/483942492274819072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Jun 23 09:33:02 +0000 2014\",\"id\":481007008074592256,\"id_str\":\"481007008074592256\",\"text\":\"testing 1000 http:\\/\\/t.co\\/y7sEVTJ7hG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":481007007931969536,\"id_str\":\"481007007931969536\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"url\":\"http:\\/\\/t.co\\/y7sEVTJ7hG\",\"display_url\":\"pic.twitter.com\\/y7sEVTJ7hG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/481007008074592256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":481007007931969536,\"id_str\":\"481007007931969536\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqzhU0JCMAA4Czs.png\",\"url\":\"http:\\/\\/t.co\\/y7sEVTJ7hG\",\"display_url\":\"pic.twitter.com\\/y7sEVTJ7hG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/481007008074592256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Jun 22 23:14:25 +0000 2014\",\"id\":480851329162547200,\"id_str\":\"480851329162547200\",\"text\":\"testing 1000 http:\\/\\/t.co\\/0Wbo3m9Xb2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":480851329024135172,\"id_str\":\"480851329024135172\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"url\":\"http:\\/\\/t.co\\/0Wbo3m9Xb2\",\"display_url\":\"pic.twitter.com\\/0Wbo3m9Xb2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480851329162547200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":480851329024135172,\"id_str\":\"480851329024135172\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqxTvHBCEAQswwV.png\",\"url\":\"http:\\/\\/t.co\\/0Wbo3m9Xb2\",\"display_url\":\"pic.twitter.com\\/0Wbo3m9Xb2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480851329162547200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Jun 21 10:45:04 +0000 2014\",\"id\":480300359915536385,\"id_str\":\"480300359915536385\",\"text\":\"testing 1000 http:\\/\\/t.co\\/XI1ftgqFi9\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":480300359680663552,\"id_str\":\"480300359680663552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"url\":\"http:\\/\\/t.co\\/XI1ftgqFi9\",\"display_url\":\"pic.twitter.com\\/XI1ftgqFi9\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480300359915536385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":480300359680663552,\"id_str\":\"480300359680663552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqpeoeRCIAA4aZ_.png\",\"url\":\"http:\\/\\/t.co\\/XI1ftgqFi9\",\"display_url\":\"pic.twitter.com\\/XI1ftgqFi9\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/480300359915536385\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Jun 19 19:25:20 +0000 2014\",\"id\":479706515893260288,\"id_str\":\"479706515893260288\",\"text\":\"testing 1000 http:\\/\\/t.co\\/ERe4S0VRo1\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":479706515561922560,\"id_str\":\"479706515561922560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"url\":\"http:\\/\\/t.co\\/ERe4S0VRo1\",\"display_url\":\"pic.twitter.com\\/ERe4S0VRo1\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479706515893260288\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":479706515561922560,\"id_str\":\"479706515561922560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqhCiMiCQAAkqdS.png\",\"url\":\"http:\\/\\/t.co\\/ERe4S0VRo1\",\"display_url\":\"pic.twitter.com\\/ERe4S0VRo1\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479706515893260288\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jun 18 17:27:00 +0000 2014\",\"id\":479314349119373313,\"id_str\":\"479314349119373313\",\"text\":\"testing 1000 http:\\/\\/t.co\\/zVWIzi0sUV\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":479314348976791552,\"id_str\":\"479314348976791552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"url\":\"http:\\/\\/t.co\\/zVWIzi0sUV\",\"display_url\":\"pic.twitter.com\\/zVWIzi0sUV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479314349119373313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":479314348976791552,\"id_str\":\"479314348976791552\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bqbd3GKCYAAlXrB.png\",\"url\":\"http:\\/\\/t.co\\/zVWIzi0sUV\",\"display_url\":\"pic.twitter.com\\/zVWIzi0sUV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479314349119373313\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jun 18 16:47:10 +0000 2014\",\"id\":479304322698588160,\"id_str\":\"479304322698588160\",\"text\":\"testing 1000 http:\\/\\/t.co\\/SRGMr0MWgr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":479304322530811904,\"id_str\":\"479304322530811904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"url\":\"http:\\/\\/t.co\\/SRGMr0MWgr\",\"display_url\":\"pic.twitter.com\\/SRGMr0MWgr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479304322698588160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":479304322530811904,\"id_str\":\"479304322530811904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqbUvevCIAAmYBq.png\",\"url\":\"http:\\/\\/t.co\\/SRGMr0MWgr\",\"display_url\":\"pic.twitter.com\\/SRGMr0MWgr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/479304322698588160\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Jun 13 10:32:36 +0000 2014\",\"id\":477398122105036800,\"id_str\":\"477398122105036800\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9o76yVK8Zs\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":477398122021130240,\"id_str\":\"477398122021130240\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"url\":\"http:\\/\\/t.co\\/9o76yVK8Zs\",\"display_url\":\"pic.twitter.com\\/9o76yVK8Zs\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/477398122105036800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":477398122021130240,\"id_str\":\"477398122021130240\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BqAPEAeCEAAQa5S.png\",\"url\":\"http:\\/\\/t.co\\/9o76yVK8Zs\",\"display_url\":\"pic.twitter.com\\/9o76yVK8Zs\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/477398122105036800\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ], "Cookie": [ "lang=en; guest_id=v1%3A141745430349886262" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?max_id=477398122105036799" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "172" ], "content-length": [ "68961" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "6c70037fedd7dabc" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c85e1b56eabf7da0c2d23931effe7e96" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:24 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:24 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Tue Jun 10 00:31:35 +0000 2014\",\"id\":476159707850108929,\"id_str\":\"476159707850108929\",\"text\":\"testing 1000 http:\\/\\/t.co\\/boGPysyGwX\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":476159707715866626,\"id_str\":\"476159707715866626\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BpuouzrCEAIKA0X.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BpuouzrCEAIKA0X.png\",\"url\":\"http:\\/\\/t.co\\/boGPysyGwX\",\"display_url\":\"pic.twitter.com\\/boGPysyGwX\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/476159707850108929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":476159707715866626,\"id_str\":\"476159707715866626\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BpuouzrCEAIKA0X.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BpuouzrCEAIKA0X.png\",\"url\":\"http:\\/\\/t.co\\/boGPysyGwX\",\"display_url\":\"pic.twitter.com\\/boGPysyGwX\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/476159707850108929\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu May 29 19:00:44 +0000 2014\",\"id\":472090180514377728,\"id_str\":\"472090180514377728\",\"text\":\"testing 1000 http:\\/\\/t.co\\/XKhcCf0xNa\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":472090180313034752,\"id_str\":\"472090180313034752\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bo0zhIuCMAA-vEz.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bo0zhIuCMAA-vEz.png\",\"url\":\"http:\\/\\/t.co\\/XKhcCf0xNa\",\"display_url\":\"pic.twitter.com\\/XKhcCf0xNa\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/472090180514377728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":472090180313034752,\"id_str\":\"472090180313034752\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bo0zhIuCMAA-vEz.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bo0zhIuCMAA-vEz.png\",\"url\":\"http:\\/\\/t.co\\/XKhcCf0xNa\",\"display_url\":\"pic.twitter.com\\/XKhcCf0xNa\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/472090180514377728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun May 18 12:20:20 +0000 2014\",\"id\":468003150134513664,\"id_str\":\"468003150134513664\",\"text\":\"testing 1000 http:\\/\\/t.co\\/y0lKA3zPqd\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":468003149975146496,\"id_str\":\"468003149975146496\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bn6uYqQIUAAZDiS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bn6uYqQIUAAZDiS.png\",\"url\":\"http:\\/\\/t.co\\/y0lKA3zPqd\",\"display_url\":\"pic.twitter.com\\/y0lKA3zPqd\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/468003150134513664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":468003149975146496,\"id_str\":\"468003149975146496\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bn6uYqQIUAAZDiS.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bn6uYqQIUAAZDiS.png\",\"url\":\"http:\\/\\/t.co\\/y0lKA3zPqd\",\"display_url\":\"pic.twitter.com\\/y0lKA3zPqd\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/468003150134513664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed May 14 22:31:06 +0000 2014\",\"id\":466707300154368000,\"id_str\":\"466707300154368000\",\"text\":\"testing 1000 http:\\/\\/t.co\\/UtMlgzS8Jd\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":466707299994963968,\"id_str\":\"466707299994963968\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnoT0Q5IEAA5dNH.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnoT0Q5IEAA5dNH.png\",\"url\":\"http:\\/\\/t.co\\/UtMlgzS8Jd\",\"display_url\":\"pic.twitter.com\\/UtMlgzS8Jd\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/466707300154368000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":466707299994963968,\"id_str\":\"466707299994963968\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnoT0Q5IEAA5dNH.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnoT0Q5IEAA5dNH.png\",\"url\":\"http:\\/\\/t.co\\/UtMlgzS8Jd\",\"display_url\":\"pic.twitter.com\\/UtMlgzS8Jd\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/466707300154368000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon May 12 10:28:11 +0000 2014\",\"id\":465800599406379008,\"id_str\":\"465800599406379008\",\"text\":\"testing 1000 http:\\/\\/t.co\\/c21Mf2A7CW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":465800599297355776,\"id_str\":\"465800599297355776\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnbbLVlIcAAPia4.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnbbLVlIcAAPia4.png\",\"url\":\"http:\\/\\/t.co\\/c21Mf2A7CW\",\"display_url\":\"pic.twitter.com\\/c21Mf2A7CW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/465800599406379008\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":465800599297355776,\"id_str\":\"465800599297355776\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnbbLVlIcAAPia4.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnbbLVlIcAAPia4.png\",\"url\":\"http:\\/\\/t.co\\/c21Mf2A7CW\",\"display_url\":\"pic.twitter.com\\/c21Mf2A7CW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/465800599406379008\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun May 11 12:37:38 +0000 2014\",\"id\":465470787638812672,\"id_str\":\"465470787638812672\",\"text\":\"testing 1000 http:\\/\\/t.co\\/hRNASR4CrM\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":465470787504603137,\"id_str\":\"465470787504603137\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnWvNw6IgAEMKuI.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnWvNw6IgAEMKuI.png\",\"url\":\"http:\\/\\/t.co\\/hRNASR4CrM\",\"display_url\":\"pic.twitter.com\\/hRNASR4CrM\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/465470787638812672\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":465470787504603137,\"id_str\":\"465470787504603137\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnWvNw6IgAEMKuI.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnWvNw6IgAEMKuI.png\",\"url\":\"http:\\/\\/t.co\\/hRNASR4CrM\",\"display_url\":\"pic.twitter.com\\/hRNASR4CrM\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/465470787638812672\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri May 09 23:38:22 +0000 2014\",\"id\":464912293068025856,\"id_str\":\"464912293068025856\",\"text\":\"testing 1000 http:\\/\\/t.co\\/PWX4czUNWl\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":464912292938006528,\"id_str\":\"464912292938006528\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnOzRGhIQAAAg4x.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnOzRGhIQAAAg4x.png\",\"url\":\"http:\\/\\/t.co\\/PWX4czUNWl\",\"display_url\":\"pic.twitter.com\\/PWX4czUNWl\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/464912293068025856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":464912292938006528,\"id_str\":\"464912292938006528\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnOzRGhIQAAAg4x.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnOzRGhIQAAAg4x.png\",\"url\":\"http:\\/\\/t.co\\/PWX4czUNWl\",\"display_url\":\"pic.twitter.com\\/PWX4czUNWl\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/464912293068025856\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri May 09 00:44:02 +0000 2014\",\"id\":464566427476049920,\"id_str\":\"464566427476049920\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wTraD5Bt0M\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":464566427354402816,\"id_str\":\"464566427354402816\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnJ4tE0IEAAyVOu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnJ4tE0IEAAyVOu.png\",\"url\":\"http:\\/\\/t.co\\/wTraD5Bt0M\",\"display_url\":\"pic.twitter.com\\/wTraD5Bt0M\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/464566427476049920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":464566427354402816,\"id_str\":\"464566427354402816\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BnJ4tE0IEAAyVOu.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BnJ4tE0IEAAyVOu.png\",\"url\":\"http:\\/\\/t.co\\/wTraD5Bt0M\",\"display_url\":\"pic.twitter.com\\/wTraD5Bt0M\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/464566427476049920\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue May 06 23:14:12 +0000 2014\",\"id\":463819043946786816,\"id_str\":\"463819043946786816\",\"text\":\"testing 1000 http:\\/\\/t.co\\/WmbFtUl4oq\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":463819043762233345,\"id_str\":\"463819043762233345\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bm_Q9n-CYAE0dEv.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bm_Q9n-CYAE0dEv.png\",\"url\":\"http:\\/\\/t.co\\/WmbFtUl4oq\",\"display_url\":\"pic.twitter.com\\/WmbFtUl4oq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/463819043946786816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":463819043762233345,\"id_str\":\"463819043762233345\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bm_Q9n-CYAE0dEv.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bm_Q9n-CYAE0dEv.png\",\"url\":\"http:\\/\\/t.co\\/WmbFtUl4oq\",\"display_url\":\"pic.twitter.com\\/WmbFtUl4oq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/463819043946786816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue May 06 10:25:04 +0000 2014\",\"id\":463625487022313472,\"id_str\":\"463625487022313472\",\"text\":\"testing 1000 http:\\/\\/t.co\\/mIwPpn6Tbv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":463625486888075264,\"id_str\":\"463625486888075264\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bm8g7IbIAAAhbaB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bm8g7IbIAAAhbaB.png\",\"url\":\"http:\\/\\/t.co\\/mIwPpn6Tbv\",\"display_url\":\"pic.twitter.com\\/mIwPpn6Tbv\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/463625487022313472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":463625486888075264,\"id_str\":\"463625486888075264\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bm8g7IbIAAAhbaB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bm8g7IbIAAAhbaB.png\",\"url\":\"http:\\/\\/t.co\\/mIwPpn6Tbv\",\"display_url\":\"pic.twitter.com\\/mIwPpn6Tbv\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/463625487022313472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun May 04 11:18:31 +0000 2014\",\"id\":462914160503050240,\"id_str\":\"462914160503050240\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Kz4ka7IJnc\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":462914160326885376,\"id_str\":\"462914160326885376\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmyZ-efIQAAkSez.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmyZ-efIQAAkSez.png\",\"url\":\"http:\\/\\/t.co\\/Kz4ka7IJnc\",\"display_url\":\"pic.twitter.com\\/Kz4ka7IJnc\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462914160503050240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":462914160326885376,\"id_str\":\"462914160326885376\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmyZ-efIQAAkSez.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmyZ-efIQAAkSez.png\",\"url\":\"http:\\/\\/t.co\\/Kz4ka7IJnc\",\"display_url\":\"pic.twitter.com\\/Kz4ka7IJnc\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462914160503050240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat May 03 16:09:55 +0000 2014\",\"id\":462625108679749632,\"id_str\":\"462625108679749632\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5d7iYPG9GY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":462625108574887936,\"id_str\":\"462625108574887936\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmuTFczIYAARyFi.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmuTFczIYAARyFi.png\",\"url\":\"http:\\/\\/t.co\\/5d7iYPG9GY\",\"display_url\":\"pic.twitter.com\\/5d7iYPG9GY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462625108679749632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":462625108574887936,\"id_str\":\"462625108574887936\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmuTFczIYAARyFi.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmuTFczIYAARyFi.png\",\"url\":\"http:\\/\\/t.co\\/5d7iYPG9GY\",\"display_url\":\"pic.twitter.com\\/5d7iYPG9GY\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462625108679749632\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat May 03 14:58:41 +0000 2014\",\"id\":462607181578506240,\"id_str\":\"462607181578506240\",\"text\":\"testing 1000 http:\\/\\/t.co\\/vcrIbAR10z\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":462607181452705792,\"id_str\":\"462607181452705792\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmuCx9EIgAABgoC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmuCx9EIgAABgoC.png\",\"url\":\"http:\\/\\/t.co\\/vcrIbAR10z\",\"display_url\":\"pic.twitter.com\\/vcrIbAR10z\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462607181578506240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":462607181452705792,\"id_str\":\"462607181452705792\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmuCx9EIgAABgoC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmuCx9EIgAABgoC.png\",\"url\":\"http:\\/\\/t.co\\/vcrIbAR10z\",\"display_url\":\"pic.twitter.com\\/vcrIbAR10z\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462607181578506240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat May 03 14:50:23 +0000 2014\",\"id\":462605092181782528,\"id_str\":\"462605092181782528\",\"text\":\"testing 1000 http:\\/\\/t.co\\/EARRDikZrw\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":462605092097900544,\"id_str\":\"462605092097900544\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmuA4VnIQAAPn9b.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmuA4VnIQAAPn9b.png\",\"url\":\"http:\\/\\/t.co\\/EARRDikZrw\",\"display_url\":\"pic.twitter.com\\/EARRDikZrw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462605092181782528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":462605092097900544,\"id_str\":\"462605092097900544\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmuA4VnIQAAPn9b.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmuA4VnIQAAPn9b.png\",\"url\":\"http:\\/\\/t.co\\/EARRDikZrw\",\"display_url\":\"pic.twitter.com\\/EARRDikZrw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/462605092181782528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Apr 29 22:12:12 +0000 2014\",\"id\":461266726135791616,\"id_str\":\"461266726135791616\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Y3kza7lGY7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":461266726005768192,\"id_str\":\"461266726005768192\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bma_pLZIAAA_XmY.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bma_pLZIAAA_XmY.png\",\"url\":\"http:\\/\\/t.co\\/Y3kza7lGY7\",\"display_url\":\"pic.twitter.com\\/Y3kza7lGY7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/461266726135791616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":461266726005768192,\"id_str\":\"461266726005768192\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bma_pLZIAAA_XmY.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bma_pLZIAAA_XmY.png\",\"url\":\"http:\\/\\/t.co\\/Y3kza7lGY7\",\"display_url\":\"pic.twitter.com\\/Y3kza7lGY7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/461266726135791616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Apr 29 22:08:59 +0000 2014\",\"id\":461265916723200000,\"id_str\":\"461265916723200000\",\"text\":\"testing 1000 http:\\/\\/t.co\\/pGrNxz8EiN\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":461265916605775873,\"id_str\":\"461265916605775873\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bma-6EJIQAEOcfR.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bma-6EJIQAEOcfR.png\",\"url\":\"http:\\/\\/t.co\\/pGrNxz8EiN\",\"display_url\":\"pic.twitter.com\\/pGrNxz8EiN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/461265916723200000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":461265916605775873,\"id_str\":\"461265916605775873\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bma-6EJIQAEOcfR.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bma-6EJIQAEOcfR.png\",\"url\":\"http:\\/\\/t.co\\/pGrNxz8EiN\",\"display_url\":\"pic.twitter.com\\/pGrNxz8EiN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/461265916723200000\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Apr 29 22:03:18 +0000 2014\",\"id\":461264489841954816,\"id_str\":\"461264489841954816\",\"text\":\"testing 1000 http:\\/\\/t.co\\/7cZ2Cy9lDu\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":461264489682599936,\"id_str\":\"461264489682599936\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bma9nAcIgAA7zJl.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bma9nAcIgAA7zJl.png\",\"url\":\"http:\\/\\/t.co\\/7cZ2Cy9lDu\",\"display_url\":\"pic.twitter.com\\/7cZ2Cy9lDu\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/461264489841954816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":461264489682599936,\"id_str\":\"461264489682599936\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bma9nAcIgAA7zJl.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bma9nAcIgAA7zJl.png\",\"url\":\"http:\\/\\/t.co\\/7cZ2Cy9lDu\",\"display_url\":\"pic.twitter.com\\/7cZ2Cy9lDu\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/461264489841954816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Apr 28 23:47:40 +0000 2014\",\"id\":460928366690844672,\"id_str\":\"460928366690844672\",\"text\":\"testing 1000 http:\\/\\/t.co\\/gPzggMpduv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460928366552444928,\"id_str\":\"460928366552444928\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmWL6ENCcAAIYUk.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmWL6ENCcAAIYUk.png\",\"url\":\"http:\\/\\/t.co\\/gPzggMpduv\",\"display_url\":\"pic.twitter.com\\/gPzggMpduv\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460928366690844672\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460928366552444928,\"id_str\":\"460928366552444928\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmWL6ENCcAAIYUk.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmWL6ENCcAAIYUk.png\",\"url\":\"http:\\/\\/t.co\\/gPzggMpduv\",\"display_url\":\"pic.twitter.com\\/gPzggMpduv\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460928366690844672\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 11:41:40 +0000 2014\",\"id\":460383273844494336,\"id_str\":\"460383273844494336\",\"text\":\"testing 1000 http:\\/\\/t.co\\/bqn7mXHo5Y\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460383273714458624,\"id_str\":\"460383273714458624\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmOcJfJIIAA45bN.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmOcJfJIIAA45bN.png\",\"url\":\"http:\\/\\/t.co\\/bqn7mXHo5Y\",\"display_url\":\"pic.twitter.com\\/bqn7mXHo5Y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460383273844494336\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460383273714458624,\"id_str\":\"460383273714458624\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmOcJfJIIAA45bN.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmOcJfJIIAA45bN.png\",\"url\":\"http:\\/\\/t.co\\/bqn7mXHo5Y\",\"display_url\":\"pic.twitter.com\\/bqn7mXHo5Y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460383273844494336\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 05:49:40 +0000 2014\",\"id\":460294689376444416,\"id_str\":\"460294689376444416\",\"text\":\"testing 1000 http:\\/\\/t.co\\/kJpo5rd2N7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460294689267400705,\"id_str\":\"460294689267400705\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmNLlMXIQAExkCa.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmNLlMXIQAExkCa.png\",\"url\":\"http:\\/\\/t.co\\/kJpo5rd2N7\",\"display_url\":\"pic.twitter.com\\/kJpo5rd2N7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460294689376444416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460294689267400705,\"id_str\":\"460294689267400705\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmNLlMXIQAExkCa.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmNLlMXIQAExkCa.png\",\"url\":\"http:\\/\\/t.co\\/kJpo5rd2N7\",\"display_url\":\"pic.twitter.com\\/kJpo5rd2N7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460294689376444416\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ], "Cookie": [ "lang=en; guest_id=v1%3A141745430349886262" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?max_id=460294689376444415" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "171" ], "content-length": [ "64409" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "74b0070ebcc8856a" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c85e1b56eabf7da0c2d23931effe7e96" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:24 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:24 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Sun Apr 27 05:39:14 +0000 2014\",\"id\":460292062425141248,\"id_str\":\"460292062425141248\",\"text\":\"testing 1000 http:\\/\\/t.co\\/MiNHqK9a4U\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460292062265749504,\"id_str\":\"460292062265749504\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmNJMSBIMAAaOlX.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmNJMSBIMAAaOlX.png\",\"url\":\"http:\\/\\/t.co\\/MiNHqK9a4U\",\"display_url\":\"pic.twitter.com\\/MiNHqK9a4U\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460292062425141248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460292062265749504,\"id_str\":\"460292062265749504\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmNJMSBIMAAaOlX.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmNJMSBIMAAaOlX.png\",\"url\":\"http:\\/\\/t.co\\/MiNHqK9a4U\",\"display_url\":\"pic.twitter.com\\/MiNHqK9a4U\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460292062425141248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 05:03:59 +0000 2014\",\"id\":460283190864019456,\"id_str\":\"460283190864019456\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wKwJ9BWPgb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460283190738173952,\"id_str\":\"460283190738173952\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmNBH5AIQAAwmJq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmNBH5AIQAAwmJq.png\",\"url\":\"http:\\/\\/t.co\\/wKwJ9BWPgb\",\"display_url\":\"pic.twitter.com\\/wKwJ9BWPgb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460283190864019456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460283190738173952,\"id_str\":\"460283190738173952\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmNBH5AIQAAwmJq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmNBH5AIQAAwmJq.png\",\"url\":\"http:\\/\\/t.co\\/wKwJ9BWPgb\",\"display_url\":\"pic.twitter.com\\/wKwJ9BWPgb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460283190864019456\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 04:29:52 +0000 2014\",\"id\":460274608571031552,\"id_str\":\"460274608571031552\",\"text\":\"testing 1000 http:\\/\\/t.co\\/mj5nSCzBFs\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460274608386486272,\"id_str\":\"460274608386486272\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmM5UVQCMAA5mpn.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmM5UVQCMAA5mpn.png\",\"url\":\"http:\\/\\/t.co\\/mj5nSCzBFs\",\"display_url\":\"pic.twitter.com\\/mj5nSCzBFs\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460274608571031552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460274608386486272,\"id_str\":\"460274608386486272\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmM5UVQCMAA5mpn.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmM5UVQCMAA5mpn.png\",\"url\":\"http:\\/\\/t.co\\/mj5nSCzBFs\",\"display_url\":\"pic.twitter.com\\/mj5nSCzBFs\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460274608571031552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 01:00:06 +0000 2014\",\"id\":460221816901222400,\"id_str\":\"460221816901222400\",\"text\":\"testing 1000 http:\\/\\/t.co\\/gSkWVWU1kv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460221816657952768,\"id_str\":\"460221816657952768\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmMJTcvIQAANa-W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmMJTcvIQAANa-W.png\",\"url\":\"http:\\/\\/t.co\\/gSkWVWU1kv\",\"display_url\":\"pic.twitter.com\\/gSkWVWU1kv\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460221816901222400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460221816657952768,\"id_str\":\"460221816657952768\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmMJTcvIQAANa-W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmMJTcvIQAANa-W.png\",\"url\":\"http:\\/\\/t.co\\/gSkWVWU1kv\",\"display_url\":\"pic.twitter.com\\/gSkWVWU1kv\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460221816901222400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 00:52:30 +0000 2014\",\"id\":460219906110521344,\"id_str\":\"460219906110521344\",\"text\":\"EriSBwttYgCsNZwpHNeOJUcGuVQPsShyFJbUSDSamXsVbXPGNnriUEwBzFwBMugYwOQwBDmSAKesQuiGKSuzKvboVumLQhhUddcdMAYjwydSlDlDTrVQQPtZBeFtlkuwKm\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"de\"},{\"created_at\":\"Sun Apr 27 00:52:29 +0000 2014\",\"id\":460219899978465280,\"id_str\":\"460219899978465280\",\"text\":\"cZKjGUXNIcLyEVlxozdiKlmQIHBuJLsROFHNKTTxJgXlctqbzFjmizgcNxiEVXbaMepWKPAmtwhqAciUahZBuSeKnCCXpHQflQUiqsMUXMkJfyvdOgeDH\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"bs\"},{\"created_at\":\"Sun Apr 27 00:52:11 +0000 2014\",\"id\":460219824548098049,\"id_str\":\"460219824548098049\",\"text\":\"testing 1000 http:\\/\\/t.co\\/WDT4PxvXHq\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460219824451624960,\"id_str\":\"460219824451624960\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmMHffMIIAAlSQc.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmMHffMIIAAlSQc.png\",\"url\":\"http:\\/\\/t.co\\/WDT4PxvXHq\",\"display_url\":\"pic.twitter.com\\/WDT4PxvXHq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460219824548098049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460219824451624960,\"id_str\":\"460219824451624960\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmMHffMIIAAlSQc.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmMHffMIIAAlSQc.png\",\"url\":\"http:\\/\\/t.co\\/WDT4PxvXHq\",\"display_url\":\"pic.twitter.com\\/WDT4PxvXHq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460219824548098049\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 27 00:50:45 +0000 2014\",\"id\":460219463460483072,\"id_str\":\"460219463460483072\",\"text\":\"HyIiytjILUBcztslQDaHMUhqYHZoKtjBlizvbjokOmRMMVhLrhZzkrZUYfDVSZSAsxrcUwBFInHXCkGRdVzxvfpGZHJVsDfvduKjXUcpP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sl\"},{\"created_at\":\"Sun Apr 27 00:50:44 +0000 2014\",\"id\":460219459727138816,\"id_str\":\"460219459727138816\",\"text\":\"pYeWHQLVxCrSXzFwRDUOlyyeURGcbUWGVAyooyHQqBvKmFQsHrqFGEwTWHTNmbXxFmeLyTQWmgDZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"et\"},{\"created_at\":\"Sun Apr 27 00:50:26 +0000 2014\",\"id\":460219383043096576,\"id_str\":\"460219383043096576\",\"text\":\"testing 1000 http:\\/\\/t.co\\/JAp1BlH7Tu\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":460219382841761792,\"id_str\":\"460219382841761792\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmMHFyEIYAAdPpl.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmMHFyEIYAAdPpl.png\",\"url\":\"http:\\/\\/t.co\\/JAp1BlH7Tu\",\"display_url\":\"pic.twitter.com\\/JAp1BlH7Tu\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460219383043096576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":460219382841761792,\"id_str\":\"460219382841761792\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmMHFyEIYAAdPpl.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmMHFyEIYAAdPpl.png\",\"url\":\"http:\\/\\/t.co\\/JAp1BlH7Tu\",\"display_url\":\"pic.twitter.com\\/JAp1BlH7Tu\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/460219383043096576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Apr 24 19:38:14 +0000 2014\",\"id\":459416043199692801,\"id_str\":\"459416043199692801\",\"text\":\"testing 1000 http:\\/\\/t.co\\/YIMgQojtp4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":459416043036086272,\"id_str\":\"459416043036086272\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmAsdQFIEAAXb-Q.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmAsdQFIEAAXb-Q.png\",\"url\":\"http:\\/\\/t.co\\/YIMgQojtp4\",\"display_url\":\"pic.twitter.com\\/YIMgQojtp4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/459416043199692801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":459416043036086272,\"id_str\":\"459416043036086272\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmAsdQFIEAAXb-Q.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmAsdQFIEAAXb-Q.png\",\"url\":\"http:\\/\\/t.co\\/YIMgQojtp4\",\"display_url\":\"pic.twitter.com\\/YIMgQojtp4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/459416043199692801\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Apr 24 19:30:14 +0000 2014\",\"id\":459414027090010114,\"id_str\":\"459414027090010114\",\"text\":\"testing 1000 http:\\/\\/t.co\\/bpk4WiUIp4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":459414026959990784,\"id_str\":\"459414026959990784\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmAqn5nIMAAXjKA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmAqn5nIMAAXjKA.png\",\"url\":\"http:\\/\\/t.co\\/bpk4WiUIp4\",\"display_url\":\"pic.twitter.com\\/bpk4WiUIp4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/459414027090010114\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":459414026959990784,\"id_str\":\"459414026959990784\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmAqn5nIMAAXjKA.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmAqn5nIMAAXjKA.png\",\"url\":\"http:\\/\\/t.co\\/bpk4WiUIp4\",\"display_url\":\"pic.twitter.com\\/bpk4WiUIp4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/459414027090010114\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Apr 24 19:28:59 +0000 2014\",\"id\":459413712156495872,\"id_str\":\"459413712156495872\",\"text\":\"testing 1000 http:\\/\\/t.co\\/HDSHrBQrCz\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":459413712009699328,\"id_str\":\"459413712009699328\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmAqVkVIIAAY60c.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmAqVkVIIAAY60c.png\",\"url\":\"http:\\/\\/t.co\\/HDSHrBQrCz\",\"display_url\":\"pic.twitter.com\\/HDSHrBQrCz\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/459413712156495872\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":459413712009699328,\"id_str\":\"459413712009699328\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BmAqVkVIIAAY60c.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BmAqVkVIIAAY60c.png\",\"url\":\"http:\\/\\/t.co\\/HDSHrBQrCz\",\"display_url\":\"pic.twitter.com\\/HDSHrBQrCz\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/459413712156495872\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Apr 19 12:48:55 +0000 2014\",\"id\":457501094751768576,\"id_str\":\"457501094751768576\",\"text\":\"testing 1000 http:\\/\\/t.co\\/FED9zD5QLb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457501094609190912,\"id_str\":\"457501094609190912\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blle0lSIgAAaqI-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blle0lSIgAAaqI-.png\",\"url\":\"http:\\/\\/t.co\\/FED9zD5QLb\",\"display_url\":\"pic.twitter.com\\/FED9zD5QLb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457501094751768576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457501094609190912,\"id_str\":\"457501094609190912\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blle0lSIgAAaqI-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blle0lSIgAAaqI-.png\",\"url\":\"http:\\/\\/t.co\\/FED9zD5QLb\",\"display_url\":\"pic.twitter.com\\/FED9zD5QLb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457501094751768576\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Apr 19 10:41:11 +0000 2014\",\"id\":457468949786263552,\"id_str\":\"457468949786263552\",\"text\":\"testing 1000 http:\\/\\/t.co\\/dZzkWlTUAj\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457468949635276800,\"id_str\":\"457468949635276800\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BllBlf7IIAAnbN6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BllBlf7IIAAnbN6.png\",\"url\":\"http:\\/\\/t.co\\/dZzkWlTUAj\",\"display_url\":\"pic.twitter.com\\/dZzkWlTUAj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457468949786263552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457468949635276800,\"id_str\":\"457468949635276800\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BllBlf7IIAAnbN6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BllBlf7IIAAnbN6.png\",\"url\":\"http:\\/\\/t.co\\/dZzkWlTUAj\",\"display_url\":\"pic.twitter.com\\/dZzkWlTUAj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457468949786263552\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Apr 19 01:39:48 +0000 2014\",\"id\":457332706666639360,\"id_str\":\"457332706666639360\",\"text\":\"testing 1000 http:\\/\\/t.co\\/SsT6vR2FmI\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457332706524024832,\"id_str\":\"457332706524024832\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BljFrGyIUAAHLS6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BljFrGyIUAAHLS6.png\",\"url\":\"http:\\/\\/t.co\\/SsT6vR2FmI\",\"display_url\":\"pic.twitter.com\\/SsT6vR2FmI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457332706666639360\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457332706524024832,\"id_str\":\"457332706524024832\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BljFrGyIUAAHLS6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BljFrGyIUAAHLS6.png\",\"url\":\"http:\\/\\/t.co\\/SsT6vR2FmI\",\"display_url\":\"pic.twitter.com\\/SsT6vR2FmI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457332706666639360\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Apr 18 23:38:13 +0000 2014\",\"id\":457302109369536512,\"id_str\":\"457302109369536512\",\"text\":\"testing 1000 http:\\/\\/t.co\\/kGpGaisq9v\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457302109071765504,\"id_str\":\"457302109071765504\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blip2GZCcAAv4hb.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blip2GZCcAAv4hb.png\",\"url\":\"http:\\/\\/t.co\\/kGpGaisq9v\",\"display_url\":\"pic.twitter.com\\/kGpGaisq9v\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457302109369536512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457302109071765504,\"id_str\":\"457302109071765504\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blip2GZCcAAv4hb.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blip2GZCcAAv4hb.png\",\"url\":\"http:\\/\\/t.co\\/kGpGaisq9v\",\"display_url\":\"pic.twitter.com\\/kGpGaisq9v\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457302109369536512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Apr 18 23:35:32 +0000 2014\",\"id\":457301432824512512,\"id_str\":\"457301432824512512\",\"text\":\"testing 1000 http:\\/\\/t.co\\/F0qiy0Yy8V\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457301432493146112,\"id_str\":\"457301432493146112\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlipOt8IAAAjv0U.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlipOt8IAAAjv0U.png\",\"url\":\"http:\\/\\/t.co\\/F0qiy0Yy8V\",\"display_url\":\"pic.twitter.com\\/F0qiy0Yy8V\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457301432824512512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457301432493146112,\"id_str\":\"457301432493146112\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlipOt8IAAAjv0U.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlipOt8IAAAjv0U.png\",\"url\":\"http:\\/\\/t.co\\/F0qiy0Yy8V\",\"display_url\":\"pic.twitter.com\\/F0qiy0Yy8V\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457301432824512512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Apr 18 20:13:45 +0000 2014\",\"id\":457250652104982528,\"id_str\":\"457250652104982528\",\"text\":\"testing 1000 http:\\/\\/t.co\\/IyrMnjdLbg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457250651937206273,\"id_str\":\"457250651937206273\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blh7C5oIcAEKWtB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blh7C5oIcAEKWtB.png\",\"url\":\"http:\\/\\/t.co\\/IyrMnjdLbg\",\"display_url\":\"pic.twitter.com\\/IyrMnjdLbg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457250652104982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457250651937206273,\"id_str\":\"457250651937206273\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blh7C5oIcAEKWtB.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blh7C5oIcAEKWtB.png\",\"url\":\"http:\\/\\/t.co\\/IyrMnjdLbg\",\"display_url\":\"pic.twitter.com\\/IyrMnjdLbg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457250652104982528\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Apr 18 19:09:49 +0000 2014\",\"id\":457234564348649472,\"id_str\":\"457234564348649472\",\"text\":\"testing 1000 http:\\/\\/t.co\\/kzeDKqBzwP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457234564130566145,\"id_str\":\"457234564130566145\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blhsad4IcAEx1v6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blhsad4IcAEx1v6.png\",\"url\":\"http:\\/\\/t.co\\/kzeDKqBzwP\",\"display_url\":\"pic.twitter.com\\/kzeDKqBzwP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457234564348649472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457234564130566145,\"id_str\":\"457234564130566145\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Blhsad4IcAEx1v6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Blhsad4IcAEx1v6.png\",\"url\":\"http:\\/\\/t.co\\/kzeDKqBzwP\",\"display_url\":\"pic.twitter.com\\/kzeDKqBzwP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457234564348649472\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "body": null, "headers": { "Host": [ "api.twitter.com" ], "Cookie": [ "lang=en; guest_id=v1%3A141745430349886262" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?max_id=457234564348649471" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "status": [ "200 OK" ], "x-rate-limit-remaining": [ "170" ], "content-length": [ "63840" ], "strict-transport-security": [ "max-age=631138519" ], "x-transaction": [ "03d832ecd1bc1110" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c85e1b56eabf7da0c2d23931effe7e96" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-access-level": [ "read-write-directmessages" ], "server": [ "tsa_b" ], "last-modified": [ "Mon, 01 Dec 2014 17:18:25 GMT" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417455190" ], "pragma": [ "no-cache" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "date": [ "Mon, 01 Dec 2014 17:18:25 UTC" ], "x-rate-limit-limit": [ "180" ], "x-frame-options": [ "SAMEORIGIN" ], "content-type": [ "application/json;charset=utf-8" ] }, "body": { "string": "[{\"created_at\":\"Fri Apr 18 18:59:37 +0000 2014\",\"id\":457231997761753088,\"id_str\":\"457231997761753088\",\"text\":\"testing 1000 http:\\/\\/t.co\\/sem12qTnM3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":457231997652725761,\"id_str\":\"457231997652725761\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlhqFFAIcAEAuML.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlhqFFAIcAEAuML.png\",\"url\":\"http:\\/\\/t.co\\/sem12qTnM3\",\"display_url\":\"pic.twitter.com\\/sem12qTnM3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457231997761753088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":457231997652725761,\"id_str\":\"457231997652725761\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlhqFFAIcAEAuML.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlhqFFAIcAEAuML.png\",\"url\":\"http:\\/\\/t.co\\/sem12qTnM3\",\"display_url\":\"pic.twitter.com\\/sem12qTnM3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/457231997761753088\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Apr 17 19:36:50 +0000 2014\",\"id\":456878974212526081,\"id_str\":\"456878974212526081\",\"text\":\"testing 1000 http:\\/\\/t.co\\/kAmqjvDitU\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":456878974132813824,\"id_str\":\"456878974132813824\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlcpAZ6IAAAutu0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlcpAZ6IAAAutu0.png\",\"url\":\"http:\\/\\/t.co\\/kAmqjvDitU\",\"display_url\":\"pic.twitter.com\\/kAmqjvDitU\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/456878974212526081\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":456878974132813824,\"id_str\":\"456878974132813824\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlcpAZ6IAAAutu0.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlcpAZ6IAAAutu0.png\",\"url\":\"http:\\/\\/t.co\\/kAmqjvDitU\",\"display_url\":\"pic.twitter.com\\/kAmqjvDitU\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/456878974212526081\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Apr 17 17:54:50 +0000 2014\",\"id\":456853306078277632,\"id_str\":\"456853306078277632\",\"text\":\"Check out this #OpenData #CityofPaloAlto visualization from http:\\/\\/t.co\\/jcDOqVJiu9 https:\\/\\/t.co\\/uFduEQrEZ4\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"OpenData\",\"indices\":[15,24]},{\"text\":\"CityofPaloAlto\",\"indices\":[25,40]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jcDOqVJiu9\",\"expanded_url\":\"http:\\/\\/OpenGov.com\",\"display_url\":\"OpenGov.com\",\"indices\":[60,82]},{\"url\":\"https:\\/\\/t.co\\/uFduEQrEZ4\",\"expanded_url\":\"https:\\/\\/paloalto.ogdev.us\\/transparency#annual\\/breakdown=3AE9231304DF42E6AAF96428E2D2C5B5&accountType=expenses&graph=stacked&selection=8CD5A71AEB8CCADE9106F3A235AAC931\",\"display_url\":\"paloalto.ogdev.us\\/transparency#a\\u2026\",\"indices\":[84,107]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 13 23:47:11 +0000 2014\",\"id\":455492425747009536,\"id_str\":\"455492425747009536\",\"text\":\"sucjqhDkBYJkzmLJVHwLSjjDQcKAMQOMgceQLamKzNilyeDCcTGYlgoGQYElIMEcXejIybmQqjZbGBYgDkhvxaiJgAXpRnHmzPwFE\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"vi\"},{\"created_at\":\"Sun Apr 13 23:47:11 +0000 2014\",\"id\":455492423754719232,\"id_str\":\"455492423754719232\",\"text\":\"KsQKreYmeSEfKsViWzzoccPTwqTHkqNtJhUBGYZfFVnYKrUACLTmynmItNSHxuqPlcCgclpVZMBAKRZMFqNDNELsPhUwTOKGXbTwoZgetWxnkINecAwHfadNbAKNqyBfmVTmCLzQLCW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created_at\":\"Sun Apr 13 23:46:52 +0000 2014\",\"id\":455492345245757440,\"id_str\":\"455492345245757440\",\"text\":\"testing 1000 http:\\/\\/t.co\\/fNcdOQpGub\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":455492345057013760,\"id_str\":\"455492345057013760\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlI73-EIcAAB8jT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlI73-EIcAAB8jT.png\",\"url\":\"http:\\/\\/t.co\\/fNcdOQpGub\",\"display_url\":\"pic.twitter.com\\/fNcdOQpGub\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455492345245757440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":455492345057013760,\"id_str\":\"455492345057013760\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlI73-EIcAAB8jT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlI73-EIcAAB8jT.png\",\"url\":\"http:\\/\\/t.co\\/fNcdOQpGub\",\"display_url\":\"pic.twitter.com\\/fNcdOQpGub\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455492345245757440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 13 23:46:17 +0000 2014\",\"id\":455492196830281728,\"id_str\":\"455492196830281728\",\"text\":\"testing 1000 http:\\/\\/t.co\\/lMvasawDZp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":455492196725436416,\"id_str\":\"455492196725436416\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlI7vVfIMAAxX7i.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlI7vVfIMAAxX7i.png\",\"url\":\"http:\\/\\/t.co\\/lMvasawDZp\",\"display_url\":\"pic.twitter.com\\/lMvasawDZp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455492196830281728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":455492196725436416,\"id_str\":\"455492196725436416\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlI7vVfIMAAxX7i.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlI7vVfIMAAxX7i.png\",\"url\":\"http:\\/\\/t.co\\/lMvasawDZp\",\"display_url\":\"pic.twitter.com\\/lMvasawDZp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455492196830281728\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 13 22:44:38 +0000 2014\",\"id\":455476685807566849,\"id_str\":\"455476685807566849\",\"text\":\"ErQGUTjsXxyHzOQssSYwLEpFyNSnjpFHejQxFObauSxTnzUpsVjtkZQCZjuJxlNWMVbdFTFlcsLMAnYIfvkcNGUFCzCGrYY\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"de\"},{\"created_at\":\"Sun Apr 13 22:44:38 +0000 2014\",\"id\":455476682552791040,\"id_str\":\"455476682552791040\",\"text\":\"ZpJcznGSKkkFvGhFBukYVHDKTfzNutqdoDDvxMCbDsgHcjSPUqcZHbArCmaTcifEdZPkJFDIYDbquZjYkVjTuobalYofoDgwsxOSYKRfbYpCExEjl\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created_at\":\"Sun Apr 13 22:44:19 +0000 2014\",\"id\":455476605792825344,\"id_str\":\"455476605792825344\",\"text\":\"testing 1000 http:\\/\\/t.co\\/B70t75Nu6r\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":455476605671178240,\"id_str\":\"455476605671178240\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlItj0SIAAAV4yw.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlItj0SIAAAV4yw.png\",\"url\":\"http:\\/\\/t.co\\/B70t75Nu6r\",\"display_url\":\"pic.twitter.com\\/B70t75Nu6r\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455476605792825344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":455476605671178240,\"id_str\":\"455476605671178240\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlItj0SIAAAV4yw.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlItj0SIAAAV4yw.png\",\"url\":\"http:\\/\\/t.co\\/B70t75Nu6r\",\"display_url\":\"pic.twitter.com\\/B70t75Nu6r\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455476605792825344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 13 22:41:39 +0000 2014\",\"id\":455475932531552256,\"id_str\":\"455475932531552256\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wIybL8b3f1\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":455475932435062784,\"id_str\":\"455475932435062784\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlIs8oSIIAA88D_.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlIs8oSIIAA88D_.png\",\"url\":\"http:\\/\\/t.co\\/wIybL8b3f1\",\"display_url\":\"pic.twitter.com\\/wIybL8b3f1\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455475932531552256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":455475932435062784,\"id_str\":\"455475932435062784\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlIs8oSIIAA88D_.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlIs8oSIIAA88D_.png\",\"url\":\"http:\\/\\/t.co\\/wIybL8b3f1\",\"display_url\":\"pic.twitter.com\\/wIybL8b3f1\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455475932531552256\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Apr 13 19:47:41 +0000 2014\",\"id\":455432154420625408,\"id_str\":\"455432154420625408\",\"text\":\"testing 1000 http:\\/\\/t.co\\/jNq93KnWIp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":455432154265427968,\"id_str\":\"455432154265427968\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlIFIZ5IIAATeeV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlIFIZ5IIAATeeV.png\",\"url\":\"http:\\/\\/t.co\\/jNq93KnWIp\",\"display_url\":\"pic.twitter.com\\/jNq93KnWIp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455432154420625408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":455432154265427968,\"id_str\":\"455432154265427968\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlIFIZ5IIAATeeV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlIFIZ5IIAATeeV.png\",\"url\":\"http:\\/\\/t.co\\/jNq93KnWIp\",\"display_url\":\"pic.twitter.com\\/jNq93KnWIp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455432154420625408\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Apr 12 21:35:43 +0000 2014\",\"id\":455096953773494272,\"id_str\":\"455096953773494272\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tRDnL4T49h\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":455096953605750784,\"id_str\":\"455096953605750784\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlDURKIIgAA-qLd.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlDURKIIgAA-qLd.png\",\"url\":\"http:\\/\\/t.co\\/tRDnL4T49h\",\"display_url\":\"pic.twitter.com\\/tRDnL4T49h\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455096953773494272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":455096953605750784,\"id_str\":\"455096953605750784\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BlDURKIIgAA-qLd.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BlDURKIIgAA-qLd.png\",\"url\":\"http:\\/\\/t.co\\/tRDnL4T49h\",\"display_url\":\"pic.twitter.com\\/tRDnL4T49h\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/455096953773494272\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Apr 09 17:23:55 +0000 2014\",\"id\":453946421906264064,\"id_str\":\"453946421906264064\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tvXwYV3ZjL\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":453946421742669824,\"id_str\":\"453946421742669824\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bky93Y8IEAAqcZ-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bky93Y8IEAAqcZ-.png\",\"url\":\"http:\\/\\/t.co\\/tvXwYV3ZjL\",\"display_url\":\"pic.twitter.com\\/tvXwYV3ZjL\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453946421906264064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":453946421742669824,\"id_str\":\"453946421742669824\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bky93Y8IEAAqcZ-.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bky93Y8IEAAqcZ-.png\",\"url\":\"http:\\/\\/t.co\\/tvXwYV3ZjL\",\"display_url\":\"pic.twitter.com\\/tvXwYV3ZjL\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453946421906264064\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Apr 09 10:28:12 +0000 2014\",\"id\":453841801691295744,\"id_str\":\"453841801691295744\",\"text\":\"testing 1000 http:\\/\\/t.co\\/aajIAtTKIN\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":453841801573834752,\"id_str\":\"453841801573834752\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkxetscIIAAbtiU.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkxetscIIAAbtiU.png\",\"url\":\"http:\\/\\/t.co\\/aajIAtTKIN\",\"display_url\":\"pic.twitter.com\\/aajIAtTKIN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453841801691295744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":453841801573834752,\"id_str\":\"453841801573834752\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkxetscIIAAbtiU.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkxetscIIAAbtiU.png\",\"url\":\"http:\\/\\/t.co\\/aajIAtTKIN\",\"display_url\":\"pic.twitter.com\\/aajIAtTKIN\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453841801691295744\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Apr 09 10:22:20 +0000 2014\",\"id\":453840325971558400,\"id_str\":\"453840325971558400\",\"text\":\"testing 1000 http:\\/\\/t.co\\/1kfwcLrmYZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":453840325854101505,\"id_str\":\"453840325854101505\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkxdXy9IAAErnvL.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkxdXy9IAAErnvL.png\",\"url\":\"http:\\/\\/t.co\\/1kfwcLrmYZ\",\"display_url\":\"pic.twitter.com\\/1kfwcLrmYZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453840325971558400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":453840325854101505,\"id_str\":\"453840325854101505\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkxdXy9IAAErnvL.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkxdXy9IAAErnvL.png\",\"url\":\"http:\\/\\/t.co\\/1kfwcLrmYZ\",\"display_url\":\"pic.twitter.com\\/1kfwcLrmYZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453840325971558400\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Apr 08 19:56:42 +0000 2014\",\"id\":453622483263184896,\"id_str\":\"453622483263184896\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AXq9qExnbm\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":453622483137363968,\"id_str\":\"453622483137363968\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkuXPrmIgAAfOh9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkuXPrmIgAAfOh9.png\",\"url\":\"http:\\/\\/t.co\\/AXq9qExnbm\",\"display_url\":\"pic.twitter.com\\/AXq9qExnbm\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453622483263184896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":453622483137363968,\"id_str\":\"453622483137363968\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkuXPrmIgAAfOh9.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkuXPrmIgAAfOh9.png\",\"url\":\"http:\\/\\/t.co\\/AXq9qExnbm\",\"display_url\":\"pic.twitter.com\\/AXq9qExnbm\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453622483263184896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Apr 08 19:37:48 +0000 2014\",\"id\":453617728017162240,\"id_str\":\"453617728017162240\",\"text\":\"testing 1000 http:\\/\\/t.co\\/sAWHc1Qspp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":453617727828406272,\"id_str\":\"453617727828406272\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkuS64sIMAAUMvN.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkuS64sIMAAUMvN.png\",\"url\":\"http:\\/\\/t.co\\/sAWHc1Qspp\",\"display_url\":\"pic.twitter.com\\/sAWHc1Qspp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453617728017162240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":453617727828406272,\"id_str\":\"453617727828406272\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkuS64sIMAAUMvN.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkuS64sIMAAUMvN.png\",\"url\":\"http:\\/\\/t.co\\/sAWHc1Qspp\",\"display_url\":\"pic.twitter.com\\/sAWHc1Qspp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453617728017162240\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Apr 08 19:27:15 +0000 2014\",\"id\":453615070774562816,\"id_str\":\"453615070774562816\",\"text\":\"testing 1000 http:\\/\\/t.co\\/579otWGrwX\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":453615070497742848,\"id_str\":\"453615070497742848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkuQgNXIIAABAbg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkuQgNXIIAABAbg.png\",\"url\":\"http:\\/\\/t.co\\/579otWGrwX\",\"display_url\":\"pic.twitter.com\\/579otWGrwX\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453615070774562816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":453615070497742848,\"id_str\":\"453615070497742848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BkuQgNXIIAABAbg.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BkuQgNXIIAABAbg.png\",\"url\":\"http:\\/\\/t.co\\/579otWGrwX\",\"display_url\":\"pic.twitter.com\\/579otWGrwX\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/453615070774562816\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Apr 05 00:51:47 +0000 2014\",\"id\":452247189818208257,\"id_str\":\"452247189818208257\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Q9hfB7kJAT\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":542,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417454282\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":452247189709127680,\"id_str\":\"452247189709127680\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bka0bEVIAAATgLb.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bka0bEVIAAATgLb.png\",\"url\":\"http:\\/\\/t.co\\/Q9hfB7kJAT\",\"display_url\":\"pic.twitter.com\\/Q9hfB7kJAT\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/452247189818208257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":452247189709127680,\"id_str\":\"452247189709127680\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bka0bEVIAAATgLb.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bka0bEVIAAATgLb.png\",\"url\":\"http:\\/\\/t.co\\/Q9hfB7kJAT\",\"display_url\":\"pic.twitter.com\\/Q9hfB7kJAT\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/452247189818208257\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testlistmembers.json000066400000000000000000003760351265716604700212070ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/members.json?slug=stars&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:22 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6a2ab4be1f0fa4f92be8ebbbfc32b665" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "176f9d9922f57510" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "56193" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008211872832; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:22 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:22 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380982" ] }, "body": { "string": "{\"users\":[{\"id\":1424700757,\"id_str\":\"1424700757\",\"name\":\"Joss Whedon\",\"screen_name\":\"josswhedon\",\"location\":\"\",\"profile_location\":null,\"description\":\"over and over and over till I get it right\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":984777,\"friends_count\":387,\"listed_count\":9194,\"created_at\":\"Mon May 13 05:31:58 +0000 2013\",\"favourites_count\":2174,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":862,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 05:20:29 +0000 2014\",\"id\":538563124622675968,\"id_str\":\"538563124622675968\",\"text\":\"Attack the Block of the Clones!\\n\\nIm sorry that was terrible just trying to tweet about TFA without using \\\"gasm\\\" as a suffix\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":413,\"favorite_count\":1243,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474662671821074432\\/N2wjSlKc_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474662671821074432\\/N2wjSlKc_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1424700757\\/1401916882\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":1323187164,\"id_str\":\"1323187164\",\"name\":\"Marina Sirtis\",\"screen_name\":\"Marina_Sirtis\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Twitter Account For Actress Marina Sirtis. No name calling or disrespect to anyone please.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111778,\"friends_count\":90,\"listed_count\":1775,\"created_at\":\"Tue Apr 02 20:17:13 +0000 2013\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5173,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 18:38:38 +0000 2014\",\"id\":539126372006772736,\"id_str\":\"539126372006772736\",\"text\":\"\\\"@goMarinaSirtis: Gee, what's @reneauberjonois doing to our notifications lol, so many, great tho! Popular guy :)\\\" He's one of my fave ppl!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":57,\"favorite_count\":158,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"goMarinaSirtis\",\"name\":\"goMarinaSirtis.com\",\"id\":471546667,\"id_str\":\"471546667\",\"indices\":[1,16]},{\"screen_name\":\"reneauberjonois\",\"name\":\"Rene Auberjonois\",\"id\":93465778,\"id_str\":\"93465778\",\"indices\":[30,46]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":334321077,\"id_str\":\"334321077\",\"name\":\"alan tudyk\",\"screen_name\":\"alan_tudyk\",\"location\":\"los angeles\",\"profile_location\":null,\"description\":\"i am an actor and shit\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":299121,\"friends_count\":118,\"listed_count\":5612,\"created_at\":\"Tue Jul 12 22:29:37 +0000 2011\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1184,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 00:25:01 +0000 2014\",\"id\":538488767103782912,\"id_str\":\"538488767103782912\",\"text\":\"http:\\/\\/t.co\\/Yn7qtQNT6j\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":46,\"favorite_count\":149,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538488756961939456,\"id_str\":\"538488756961939456\",\"indices\":[0,22],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kYq-JCEAALWBB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kYq-JCEAALWBB.jpg\",\"url\":\"http:\\/\\/t.co\\/Yn7qtQNT6j\",\"display_url\":\"pic.twitter.com\\/Yn7qtQNT6j\",\"expanded_url\":\"http:\\/\\/twitter.com\\/alan_tudyk\\/status\\/538488767103782912\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":417,\"h\":417,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":417,\"h\":417,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/577360971\\/qw7rpqjovo4whp0n6eqd.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/577360971\\/qw7rpqjovo4whp0n6eqd.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3635760119\\/ff0ce00b7b0cb984018e53ea5af4cb76_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3635760119\\/ff0ce00b7b0cb984018e53ea5af4cb76_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/334321077\\/1353379084\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":325832193,\"id_str\":\"325832193\",\"name\":\"Jonathan Frakes\",\"screen_name\":\"jonathansfrakes\",\"location\":\"\",\"profile_location\":null,\"description\":\"father, husband, director, reformed actor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259173,\"friends_count\":96,\"listed_count\":4566,\"created_at\":\"Tue Jun 28 23:12:18 +0000 2011\",\"favourites_count\":11,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":645,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 03:24:13 +0000 2014\",\"id\":537446700512583681,\"id_str\":\"537446700512583681\",\"text\":\"Guess who... http:\\/\\/t.co\\/ci8Tg05xc0\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":56,\"favorite_count\":274,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":537446686621052929,\"id_str\":\"537446686621052929\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3Vk6fnCMAEecEi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3Vk6fnCMAEecEi.jpg\",\"url\":\"http:\\/\\/t.co\\/ci8Tg05xc0\",\"display_url\":\"pic.twitter.com\\/ci8Tg05xc0\",\"expanded_url\":\"http:\\/\\/twitter.com\\/jonathansfrakes\\/status\\/537446700512583681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":262,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":790,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":462,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/426837377458241536\\/BCbR1mHh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/426837377458241536\\/BCbR1mHh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/325832193\\/1401315411\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":180509355,\"id_str\":\"180509355\",\"name\":\"Katee Sackhoff\",\"screen_name\":\"kateesackhoff\",\"location\":\"um....right here, Duh!\",\"profile_location\":null,\"description\":\"Professionally Over Dramatic\",\"url\":\"http:\\/\\/t.co\\/2KCrUTGwMr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2KCrUTGwMr\",\"expanded_url\":\"http:\\/\\/www.kateesackhoff.com\",\"display_url\":\"kateesackhoff.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192642,\"friends_count\":281,\"listed_count\":3869,\"created_at\":\"Thu Aug 19 20:22:29 +0000 2010\",\"favourites_count\":10,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7915,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 21:42:12 +0000 2014\",\"id\":538810179916414976,\"id_str\":\"538810179916414976\",\"text\":\"RT @OneGreenPlanet: One man\\u2019s #plastic trash is definitely not another #animal\\u2019s treasure http:\\/\\/t.co\\/kvgvp4j8Gj #PlasticKills http:\\/\\/t.co\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 21:30:03 +0000 2014\",\"id\":538807124566867968,\"id_str\":\"538807124566867968\",\"text\":\"One man\\u2019s #plastic trash is definitely not another #animal\\u2019s treasure http:\\/\\/t.co\\/kvgvp4j8Gj #PlasticKills http:\\/\\/t.co\\/FeyMB0wI7F\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":96,\"favorite_count\":60,\"entities\":{\"hashtags\":[{\"text\":\"plastic\",\"indices\":[10,18]},{\"text\":\"animal\",\"indices\":[51,58]},{\"text\":\"PlasticKills\",\"indices\":[94,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kvgvp4j8Gj\",\"expanded_url\":\"http:\\/\\/onegr.pl\\/1uAWk3o\",\"display_url\":\"onegr.pl\\/1uAWk3o\",\"indices\":[70,92]}],\"media\":[{\"id\":538733403147755521,\"id_str\":\"538733403147755521\",\"indices\":[108,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"url\":\"http:\\/\\/t.co\\/FeyMB0wI7F\",\"display_url\":\"pic.twitter.com\\/FeyMB0wI7F\",\"expanded_url\":\"http:\\/\\/twitter.com\\/OneGreenPlanet\\/status\\/538807124566867968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":207,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":96,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"plastic\",\"indices\":[30,38]},{\"text\":\"animal\",\"indices\":[71,78]},{\"text\":\"PlasticKills\",\"indices\":[114,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OneGreenPlanet\",\"name\":\"one green planet\",\"id\":134555743,\"id_str\":\"134555743\",\"indices\":[3,18]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kvgvp4j8Gj\",\"expanded_url\":\"http:\\/\\/onegr.pl\\/1uAWk3o\",\"display_url\":\"onegr.pl\\/1uAWk3o\",\"indices\":[90,112]}],\"media\":[{\"id\":538733403147755521,\"id_str\":\"538733403147755521\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"url\":\"http:\\/\\/t.co\\/FeyMB0wI7F\",\"display_url\":\"pic.twitter.com\\/FeyMB0wI7F\",\"expanded_url\":\"http:\\/\\/twitter.com\\/OneGreenPlanet\\/status\\/538807124566867968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":207,\"resize\":\"fit\"}},\"source_status_id\":538807124566867968,\"source_status_id_str\":\"538807124566867968\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000061715032\\/88a8f9c14f121e6c2b5d900202337412.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000061715032\\/88a8f9c14f121e6c2b5d900202337412.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527962032306278400\\/2ojL3cRe_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527962032306278400\\/2ojL3cRe_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/180509355\\/1411760916\",\"profile_link_color\":\"008F8D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFCCF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":171676161,\"id_str\":\"171676161\",\"name\":\"Joe Flanigan\",\"screen_name\":\"JoeFlanigan\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"actor\\/writer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44094,\"friends_count\":24,\"listed_count\":1645,\"created_at\":\"Tue Jul 27 22:29:05 +0000 2010\",\"favourites_count\":9,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":419,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 22 18:47:59 +0000 2014\",\"id\":536229623676547072,\"id_str\":\"536229623676547072\",\"text\":\"Lovely day in the arctic air of Ottowa..eh? http:\\/\\/t.co\\/cQdojF0XuT\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":31,\"favorite_count\":162,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":536229617988689920,\"id_str\":\"536229617988689920\",\"indices\":[44,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ER_xpCYAAptGJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ER_xpCYAAptGJ.jpg\",\"url\":\"http:\\/\\/t.co\\/cQdojF0XuT\",\"display_url\":\"pic.twitter.com\\/cQdojF0XuT\",\"expanded_url\":\"http:\\/\\/twitter.com\\/JoeFlanigan\\/status\\/536229623676547072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496704467568308226\\/p4C-NFw5_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496704467568308226\\/p4C-NFw5_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/171676161\\/1407258699\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":154663165,\"id_str\":\"154663165\",\"name\":\"Chris Gauthier\",\"screen_name\":\"captaingauthier\",\"location\":\"\",\"profile_location\":null,\"description\":\"Rotund, jovial, half shark, alligator half man. Also acts in various film and T.V. shows. I belong to the city. I belong to the night.\",\"url\":\"http:\\/\\/t.co\\/uwjKzq14uT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uwjKzq14uT\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm0310240\\/\",\"display_url\":\"imdb.com\\/name\\/nm0310240\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4160,\"friends_count\":262,\"listed_count\":327,\"created_at\":\"Fri Jun 11 21:45:08 +0000 2010\",\"favourites_count\":985,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4277,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 18:10:52 +0000 2014\",\"id\":538756996111949825,\"id_str\":\"538756996111949825\",\"text\":\"RT @Vcrow: #gratitude for everyone working to stop earth from becoming a giant gas chamber. Big love to #BurnabyMountain Protectors! #NoKi\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 18:05:53 +0000 2014\",\"id\":538755744850788353,\"id_str\":\"538755744850788353\",\"text\":\"#gratitude for everyone working to stop earth from becoming a giant gas chamber. Big love to #BurnabyMountain Protectors! #NoKinderMorgan\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":4,\"favorite_count\":2,\"entities\":{\"hashtags\":[{\"text\":\"gratitude\",\"indices\":[0,10]},{\"text\":\"BurnabyMountain\",\"indices\":[93,109]},{\"text\":\"NoKinderMorgan\",\"indices\":[123,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":4,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"gratitude\",\"indices\":[11,21]},{\"text\":\"BurnabyMountain\",\"indices\":[104,120]},{\"text\":\"NoKinderMorgan\",\"indices\":[134,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Vcrow\",\"name\":\"Velcrow Ripper\",\"id\":16489200,\"id_str\":\"16489200\",\"indices\":[3,9]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/228280289\\/IMG_0842.JPG\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/228280289\\/IMG_0842.JPG\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530059951503581184\\/WBKApPzn_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530059951503581184\\/WBKApPzn_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/154663165\\/1411186734\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":151232686,\"id_str\":\"151232686\",\"name\":\"Yvonne Strahovski\",\"screen_name\":\"Y_Strahovski\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"ACTRESS\",\"url\":\"http:\\/\\/t.co\\/AC0tvAmlDw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AC0tvAmlDw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Y_Strahovski\",\"display_url\":\"twitter.com\\/Y_Strahovski\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":393613,\"friends_count\":143,\"listed_count\":5328,\"created_at\":\"Wed Jun 02 23:08:05 +0000 2010\",\"favourites_count\":17,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1680,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 15:02:53 +0000 2014\",\"id\":539072077295517696,\"id_str\":\"539072077295517696\",\"text\":\"So long NOLA for a bit (I'll be back:) And hello NYC you old friend you. From #AstronautWivesClub to #ManhattanNocturne #timetoswitchgears\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":60,\"favorite_count\":297,\"entities\":{\"hashtags\":[{\"text\":\"AstronautWivesClub\",\"indices\":[78,97]},{\"text\":\"ManhattanNocturne\",\"indices\":[101,119]},{\"text\":\"timetoswitchgears\",\"indices\":[120,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/466502754\\/dirty.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/466502754\\/dirty.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/521504269695221761\\/qGPnNqrZ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/521504269695221761\\/qGPnNqrZ_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/151232686\\/1390758326\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"D3D2CF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":144003355,\"id_str\":\"144003355\",\"name\":\"Jeri Ryan\",\"screen_name\":\"JeriLRyan\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Actress, wife, mom, foodie, and gardener. Not necessarily in that order. Occasional binge-tweeter. I can't reply to everybody, but I try!\",\"url\":\"http:\\/\\/t.co\\/tudK4Q6omV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tudK4Q6omV\",\"expanded_url\":\"http:\\/\\/google.com\\/+JeriRyan\",\"display_url\":\"google.com\\/+JeriRyan\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":227233,\"friends_count\":607,\"listed_count\":5887,\"created_at\":\"Sat May 15 01:29:48 +0000 2010\",\"favourites_count\":210,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":37128,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:45:15 +0000 2014\",\"id\":539143137411620864,\"id_str\":\"539143137411620864\",\"text\":\"@johnecash1 @OscartheOrange @barben2 you guys are hilarious\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539131934895775745,\"in_reply_to_status_id_str\":\"539131934895775745\",\"in_reply_to_user_id\":363417115,\"in_reply_to_user_id_str\":\"363417115\",\"in_reply_to_screen_name\":\"johnecash1\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2,\"favorite_count\":3,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"johnecash1\",\"name\":\"CharlieBoswell Brown\",\"id\":363417115,\"id_str\":\"363417115\",\"indices\":[0,11]},{\"screen_name\":\"OscartheOrange\",\"name\":\"Oscar the Orange\",\"id\":185753114,\"id_str\":\"185753114\",\"indices\":[12,27]},{\"screen_name\":\"barben2\",\"name\":\"Philip Wildman\",\"id\":53440929,\"id_str\":\"53440929\",\"indices\":[28,36]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/734382248\\/c3ef32c0610f029e0d50b77fbf2169d1.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/734382248\\/c3ef32c0610f029e0d50b77fbf2169d1.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/420360843469926400\\/D2EVT_QS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/420360843469926400\\/D2EVT_QS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/144003355\\/1355162869\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":143988282,\"id_str\":\"143988282\",\"name\":\"Colin Ferguson\",\"screen_name\":\"colinferg\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Traveller. Hotel Liver. Emigrater. Actor. Director. Word Maker Upper.\",\"url\":\"http:\\/\\/t.co\\/qlEdGF39j0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qlEdGF39j0\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm0272399\\/\",\"display_url\":\"imdb.com\\/name\\/nm0272399\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71308,\"friends_count\":104,\"listed_count\":2376,\"created_at\":\"Sat May 15 00:27:20 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3129,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 22 05:06:22 +0000 2014\",\"id\":536022857441374208,\"id_str\":\"536022857441374208\",\"text\":\"@Pjboudousque :)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":535985389597896704,\"in_reply_to_status_id_str\":\"535985389597896704\",\"in_reply_to_user_id\":1425062599,\"in_reply_to_user_id_str\":\"1425062599\",\"in_reply_to_screen_name\":\"Pjboudousque\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pjboudousque\",\"name\":\"PJ Boudousque\",\"id\":1425062599,\"id_str\":\"1425062599\",\"indices\":[0,13]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1123430419\\/cropped_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1123430419\\/cropped_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":140233086,\"id_str\":\"140233086\",\"name\":\"Tricia Helfer\",\"screen_name\":\"trutriciahelfer\",\"location\":\"California\",\"profile_location\":null,\"description\":\"Official Twitter account for actress Tricia Helfer.\",\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"expanded_url\":\"http:\\/\\/www.triciahelfer.com\",\"display_url\":\"triciahelfer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88323,\"friends_count\":362,\"listed_count\":2531,\"created_at\":\"Tue May 04 23:56:01 +0000 2010\",\"favourites_count\":151,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6134,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 02:04:57 +0000 2014\",\"id\":538513915764682752,\"id_str\":\"538513915764682752\",\"text\":\"@mslaurenmackenz @LoganX2020 yes, if we took it literally, then Brian would have some kind of fancy goggles on too, haha.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538513346882846721,\"in_reply_to_status_id_str\":\"538513346882846721\",\"in_reply_to_user_id\":206510636,\"in_reply_to_user_id_str\":\"206510636\",\"in_reply_to_screen_name\":\"mslaurenmackenz\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mslaurenmackenz\",\"name\":\"Lauren Mackenzie\",\"id\":206510636,\"id_str\":\"206510636\",\"indices\":[0,16]},{\"screen_name\":\"LoganX2020\",\"name\":\"LoganX\",\"id\":2441948024,\"id_str\":\"2441948024\",\"indices\":[17,28]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/140233086\\/1398358190\",\"profile_link_color\":\"FF0066\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"858585\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":134668186,\"id_str\":\"134668186\",\"name\":\"Amy Acker\",\"screen_name\":\"AmyAcker\",\"location\":\"LA\\/BK\",\"profile_location\":null,\"description\":\"Actress and Martha Stewart wanna be\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":147157,\"friends_count\":60,\"listed_count\":3962,\"created_at\":\"Mon Apr 19 03:28:05 +0000 2010\",\"favourites_count\":294,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":970,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 02:53:14 +0000 2014\",\"id\":538163678676516867,\"id_str\":\"538163678676516867\",\"text\":\"Hope everyone had a wonderful Thanksgiving! http:\\/\\/t.co\\/cmkUDI7XqZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":25,\"favorite_count\":226,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538163678374547457,\"id_str\":\"538163678374547457\",\"indices\":[44,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3fxA6CIUAEPR-T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3fxA6CIUAEPR-T.jpg\",\"url\":\"http:\\/\\/t.co\\/cmkUDI7XqZ\",\"display_url\":\"pic.twitter.com\\/cmkUDI7XqZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AmyAcker\\/status\\/538163678676516867\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1365,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000667607120\\/2c629b4d5d567c58f2f707cb6523794a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000667607120\\/2c629b4d5d567c58f2f707cb6523794a_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":130600864,\"id_str\":\"130600864\",\"name\":\"Sean Maher\",\"screen_name\":\"Sean_M_Maher\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Partner. Father of two. Student of Spirituality. Actor. Lover of wine. Usually in that order. \\n\\nNew Yorker at heart, but calls LA home.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67992,\"friends_count\":121,\"listed_count\":3017,\"created_at\":\"Wed Apr 07 19:38:39 +0000 2010\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2749,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 16 03:18:22 +0000 2014\",\"id\":533821351358787585,\"id_str\":\"533821351358787585\",\"text\":\"@KathleenPerkins Happy Birthday you little vixen. I miss you somethin fierce.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":575560262,\"in_reply_to_user_id_str\":\"575560262\",\"in_reply_to_screen_name\":\"KathleenPerkins\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KathleenPerkins\",\"name\":\"Kathleen Perkins\",\"id\":575560262,\"id_str\":\"575560262\",\"indices\":[0,16]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/452593094240661504\\/uyaF4RGb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/452593094240661504\\/uyaF4RGb_normal.jpeg\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":115485051,\"id_str\":\"115485051\",\"name\":\"Conan O'Brien\",\"screen_name\":\"ConanOBrien\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"The voice of the people. Sorry, people.\",\"url\":\"http:\\/\\/t.co\\/2MenU2MTOS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2MenU2MTOS\",\"expanded_url\":\"http:\\/\\/teamcoco.com\",\"display_url\":\"teamcoco.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13149201,\"friends_count\":1,\"listed_count\":90144,\"created_at\":\"Thu Feb 18 20:17:16 +0000 2010\",\"favourites_count\":1,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1857,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:58:53 +0000 2014\",\"id\":539116370626359297,\"id_str\":\"539116370626359297\",\"text\":\"You can tell Charles Manson really loves his fianc\\u00e9e by the way he hasn\\u2019t murdered her.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2621,\"favorite_count\":4578,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/875682230\\/6957e7d6efdd57c670277fce65043e40.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/875682230\\/6957e7d6efdd57c670277fce65043e40.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/728337241\\/conan_4cred_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/728337241\\/conan_4cred_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":92352911,\"id_str\":\"92352911\",\"name\":\"Jon Huertas\",\"screen_name\":\"Jon_Huertas\",\"location\":\"Venice, California\",\"profile_location\":null,\"description\":\"...I've been known to make Nuns cry.\",\"url\":\"http:\\/\\/t.co\\/R6yHv4xPSR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/R6yHv4xPSR\",\"expanded_url\":\"http:\\/\\/www.thejonhuertas.com\",\"display_url\":\"thejonhuertas.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263354,\"friends_count\":380,\"listed_count\":3337,\"created_at\":\"Tue Nov 24 20:07:40 +0000 2009\",\"favourites_count\":6,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6472,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 21:55:23 +0000 2014\",\"id\":537363945552883712,\"id_str\":\"537363945552883712\",\"text\":\"\\u201c@proudofStana: @badasskbex @Jon_Huertas relationship at my home means \\\"friendship\\\" too.\\u201d \\n\\nYep mine too!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":46,\"favorite_count\":122,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"proudofStana\",\"name\":\"love sucks !\",\"id\":147289685,\"id_str\":\"147289685\",\"indices\":[1,14]},{\"screen_name\":\"badasskbex\",\"name\":\"salacious\",\"id\":197757963,\"id_str\":\"197757963\",\"indices\":[16,27]},{\"screen_name\":\"Jon_Huertas\",\"name\":\"Jon Huertas\",\"id\":92352911,\"id_str\":\"92352911\",\"indices\":[28,40]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/426101593\\/20111106_-_Jon_Huertas_4_088.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/426101593\\/20111106_-_Jon_Huertas_4_088.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3428988457\\/550f863093d329dbaec803b160d903f1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3428988457\\/550f863093d329dbaec803b160d903f1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/92352911\\/1364227441\",\"profile_link_color\":\"CF5D10\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202137,\"friends_count\":1623,\"listed_count\":7661,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12299,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:59:26 +0000 2014\",\"id\":539116509256114176,\"id_str\":\"539116509256114176\",\"text\":\".@NRO @RichLowry \\n\\nFun when they shout you down, isn't it?\\n\\n#DiamondFormation \\n\\n(ref: \\\"The Crusader,\\\" by Paul Kengor) http:\\/\\/t.co\\/zFv2bXWwPh\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539112875886149632,\"in_reply_to_status_id_str\":\"539112875886149632\",\"in_reply_to_user_id\":19417492,\"in_reply_to_user_id_str\":\"19417492\",\"in_reply_to_screen_name\":\"NRO\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":10,\"favorite_count\":19,\"entities\":{\"hashtags\":[{\"text\":\"DiamondFormation\",\"indices\":[60,77]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NRO\",\"name\":\"National Review\",\"id\":19417492,\"id_str\":\"19417492\",\"indices\":[1,5]},{\"screen_name\":\"RichLowry\",\"name\":\"Rich Lowry\",\"id\":40116885,\"id_str\":\"40116885\",\"indices\":[6,16]}],\"urls\":[],\"media\":[{\"id\":539116508962508800,\"id_str\":\"539116508962508800\",\"indices\":[118,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTm8lCUAAPPVA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTm8lCUAAPPVA.jpg\",\"url\":\"http:\\/\\/t.co\\/zFv2bXWwPh\",\"display_url\":\"pic.twitter.com\\/zFv2bXWwPh\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AdamBaldwin\\/status\\/539116509256114176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1615,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":536,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":946,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":89604563,\"id_str\":\"89604563\",\"name\":\"Allison Scagliotti\",\"screen_name\":\"allisonscag\",\"location\":\"Space ghost, coast to coast.\",\"profile_location\":null,\"description\":\"A loose ankled carnie in a wide brimmed hat.\",\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1270095\\/\",\"display_url\":\"imdb.com\\/name\\/nm1270095\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87807,\"friends_count\":826,\"listed_count\":2714,\"created_at\":\"Fri Nov 13 02:24:14 +0000 2009\",\"favourites_count\":536,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4723,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Nov 27 20:52:27 +0000 2014\",\"id\":538072884069945345,\"id_str\":\"538072884069945345\",\"text\":\"\\\"You smell that shit? Fuuuuuck.\\\" @tommyleeba re: his apple pecan crisp. Happy Thanksgiving.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/mobile.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eMobile Web (M5)\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":8,\"favorite_count\":47,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tommyleeba\",\"name\":\"Tom Lieber\",\"id\":55760408,\"id_str\":\"55760408\",\"indices\":[33,44]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/89604563\\/1384936327\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":86422542,\"id_str\":\"86422542\",\"name\":\"Milla Jovovich\",\"screen_name\":\"MillaJovovich\",\"location\":\"Wuz up Vitch?\",\"profile_location\":null,\"description\":\"pronounced mee-luh yo-vo-vitch \\u2026 http:\\/\\/t.co\\/NX7IV85QEK\\r\\nhttp:\\/\\/t.co\\/IXc6mCtq4H\",\"url\":\"http:\\/\\/t.co\\/1Qh4epbmOA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1Qh4epbmOA\",\"expanded_url\":\"http:\\/\\/www.MillaJ.com\",\"display_url\":\"MillaJ.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/NX7IV85QEK\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/MillaJovovich\",\"display_url\":\"facebook.com\\/MillaJovovich\",\"indices\":[34,56]},{\"url\":\"http:\\/\\/t.co\\/IXc6mCtq4H\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/MillaJovovich\",\"display_url\":\"instagram.com\\/MillaJovovich\",\"indices\":[58,80]}]}},\"protected\":false,\"followers_count\":1366417,\"friends_count\":3115,\"listed_count\":17172,\"created_at\":\"Fri Oct 30 23:46:02 +0000 2009\",\"favourites_count\":165,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11810,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 21:44:59 +0000 2014\",\"id\":538448492612845568,\"id_str\":\"538448492612845568\",\"text\":\"And one more pic courtesy of chrissbrenner on turkey day! Me and the two people I am most thankful\\u2026 http:\\/\\/t.co\\/45ZunNdxlp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":106,\"favorite_count\":274,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/45ZunNdxlp\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/v9X4-LTMsJ\\/\",\"display_url\":\"instagram.com\\/p\\/v9X4-LTMsJ\\/\",\"indices\":[100,122]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"10A8A8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/679946683\\/b7cbee631daf3dfcd6580905f90b2531.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/679946683\\/b7cbee631daf3dfcd6580905f90b2531.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3251448147\\/efef36887919568382cafca061ca4f0a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3251448147\\/efef36887919568382cafca061ca4f0a_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/86422542\\/1349638523\",\"profile_link_color\":\"B330BF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"D1CFCF\",\"profile_text_color\":\"7E4E80\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":80468100,\"id_str\":\"80468100\",\"name\":\"Amanda Tapping\",\"screen_name\":\"amandatapping\",\"location\":\"Vangroovy, B.C.\",\"profile_location\":null,\"description\":\"mama, wife, actress, director, producer, activist, and general goofball. :D\",\"url\":\"http:\\/\\/t.co\\/5W59mbxzno\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5W59mbxzno\",\"expanded_url\":\"http:\\/\\/www.amandatapping.com\",\"display_url\":\"amandatapping.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128411,\"friends_count\":224,\"listed_count\":4361,\"created_at\":\"Wed Oct 07 02:18:05 +0000 2009\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2219,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 16:47:34 +0000 2014\",\"id\":539098422251634688,\"id_str\":\"539098422251634688\",\"text\":\"Thank you @TGSTOULOUSE for a fantastic weekend. Wonderful to meet everyone!! Xo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003eEchofon\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":33,\"favorite_count\":78,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TGSTOULOUSE\",\"name\":\"Toulouse Game Show\",\"id\":89575352,\"id_str\":\"89575352\",\"indices\":[10,22]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":74817489,\"id_str\":\"74817489\",\"name\":\"sasha roiz\",\"screen_name\":\"sasharoiz\",\"location\":\"\",\"profile_location\":null,\"description\":\"Instagram: mrsasharoiz\",\"url\":\"http:\\/\\/t.co\\/MNOIpdWQvJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MNOIpdWQvJ\",\"expanded_url\":\"http:\\/\\/m.imdb.com\\/name\\/nm1501388\\/\",\"display_url\":\"m.imdb.com\\/name\\/nm1501388\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":58829,\"friends_count\":266,\"listed_count\":1081,\"created_at\":\"Wed Sep 16 19:40:11 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3682,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 22:39:33 +0000 2014\",\"id\":538824614005469184,\"id_str\":\"538824614005469184\",\"text\":\"@LaceyBugg25 @HedwigOnBway you, my dear, just one that argument. Hell of a show.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538823603576659968,\"in_reply_to_status_id_str\":\"538823603576659968\",\"in_reply_to_user_id\":278145303,\"in_reply_to_user_id_str\":\"278145303\",\"in_reply_to_screen_name\":\"LaceyBugg25\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LaceyBugg25\",\"name\":\"Lacey Hanner\",\"id\":278145303,\"id_str\":\"278145303\",\"indices\":[0,12]},{\"screen_name\":\"HedwigOnBway\",\"name\":\"Hedwig on Broadway\",\"id\":128277516,\"id_str\":\"128277516\",\"indices\":[13,26]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/64614040\\/unicorns-rainbow.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/64614040\\/unicorns-rainbow.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/481848921560317953\\/o2LISl7l_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/481848921560317953\\/o2LISl7l_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}],\"next_cursor\":4611686018502205393,\"next_cursor_str\":\"4611686018502205393\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/members.json?owner_screen_name=applepie&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:06 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "48b634cf12e6f9b5b94bc3f0b464fa8e" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401006" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "55502" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:06 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010600184202; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:06 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "f6fe89c088692ad0" ] }, "body": { "string": "{\"users\":[{\"id\":1424700757,\"id_str\":\"1424700757\",\"name\":\"Joss Whedon\",\"screen_name\":\"josswhedon\",\"location\":\"\",\"profile_location\":null,\"description\":\"over and over and over till I get it right\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":984954,\"friends_count\":387,\"listed_count\":9194,\"created_at\":\"Mon May 13 05:31:58 +0000 2013\",\"favourites_count\":2176,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":862,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 05:20:29 +0000 2014\",\"id\":538563124622675968,\"id_str\":\"538563124622675968\",\"text\":\"Attack the Block of the Clones!\\n\\nIm sorry that was terrible just trying to tweet about TFA without using \\\"gasm\\\" as a suffix\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":414,\"favorite_count\":1246,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474662671821074432\\/N2wjSlKc_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474662671821074432\\/N2wjSlKc_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1424700757\\/1401916882\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":1323187164,\"id_str\":\"1323187164\",\"name\":\"Marina Sirtis\",\"screen_name\":\"Marina_Sirtis\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Twitter Account For Actress Marina Sirtis. No name calling or disrespect to anyone please.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111800,\"friends_count\":90,\"listed_count\":1776,\"created_at\":\"Tue Apr 02 20:17:13 +0000 2013\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5173,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 18:38:38 +0000 2014\",\"id\":539126372006772736,\"id_str\":\"539126372006772736\",\"text\":\"\\\"@goMarinaSirtis: Gee, what's @reneauberjonois doing to our notifications lol, so many, great tho! Popular guy :)\\\" He's one of my fave ppl!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":57,\"favorite_count\":163,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"goMarinaSirtis\",\"name\":\"goMarinaSirtis.com\",\"id\":471546667,\"id_str\":\"471546667\",\"indices\":[1,16]},{\"screen_name\":\"reneauberjonois\",\"name\":\"Rene Auberjonois\",\"id\":93465778,\"id_str\":\"93465778\",\"indices\":[30,46]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":334321077,\"id_str\":\"334321077\",\"name\":\"alan tudyk\",\"screen_name\":\"alan_tudyk\",\"location\":\"los angeles\",\"profile_location\":null,\"description\":\"i am an actor and shit\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":299150,\"friends_count\":118,\"listed_count\":5615,\"created_at\":\"Tue Jul 12 22:29:37 +0000 2011\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1184,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 00:25:01 +0000 2014\",\"id\":538488767103782912,\"id_str\":\"538488767103782912\",\"text\":\"http:\\/\\/t.co\\/Yn7qtQNT6j\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":46,\"favorite_count\":151,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538488756961939456,\"id_str\":\"538488756961939456\",\"indices\":[0,22],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3kYq-JCEAALWBB.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3kYq-JCEAALWBB.jpg\",\"url\":\"http:\\/\\/t.co\\/Yn7qtQNT6j\",\"display_url\":\"pic.twitter.com\\/Yn7qtQNT6j\",\"expanded_url\":\"http:\\/\\/twitter.com\\/alan_tudyk\\/status\\/538488767103782912\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":417,\"h\":417,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":417,\"h\":417,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/577360971\\/qw7rpqjovo4whp0n6eqd.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/577360971\\/qw7rpqjovo4whp0n6eqd.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3635760119\\/ff0ce00b7b0cb984018e53ea5af4cb76_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3635760119\\/ff0ce00b7b0cb984018e53ea5af4cb76_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/334321077\\/1353379084\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":325832193,\"id_str\":\"325832193\",\"name\":\"Jonathan Frakes\",\"screen_name\":\"jonathansfrakes\",\"location\":\"\",\"profile_location\":null,\"description\":\"father, husband, director, reformed actor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":259202,\"friends_count\":96,\"listed_count\":4567,\"created_at\":\"Tue Jun 28 23:12:18 +0000 2011\",\"favourites_count\":11,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":645,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 03:24:13 +0000 2014\",\"id\":537446700512583681,\"id_str\":\"537446700512583681\",\"text\":\"Guess who... http:\\/\\/t.co\\/ci8Tg05xc0\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":56,\"favorite_count\":273,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":537446686621052929,\"id_str\":\"537446686621052929\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3Vk6fnCMAEecEi.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3Vk6fnCMAEecEi.jpg\",\"url\":\"http:\\/\\/t.co\\/ci8Tg05xc0\",\"display_url\":\"pic.twitter.com\\/ci8Tg05xc0\",\"expanded_url\":\"http:\\/\\/twitter.com\\/jonathansfrakes\\/status\\/537446700512583681\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":262,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":790,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":462,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/426837377458241536\\/BCbR1mHh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/426837377458241536\\/BCbR1mHh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/325832193\\/1401315411\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":180509355,\"id_str\":\"180509355\",\"name\":\"Katee Sackhoff\",\"screen_name\":\"kateesackhoff\",\"location\":\"um....right here, Duh!\",\"profile_location\":null,\"description\":\"Professionally Over Dramatic\",\"url\":\"http:\\/\\/t.co\\/2KCrUTGwMr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2KCrUTGwMr\",\"expanded_url\":\"http:\\/\\/www.kateesackhoff.com\",\"display_url\":\"kateesackhoff.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":192647,\"friends_count\":281,\"listed_count\":3870,\"created_at\":\"Thu Aug 19 20:22:29 +0000 2010\",\"favourites_count\":10,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7915,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 21:42:12 +0000 2014\",\"id\":538810179916414976,\"id_str\":\"538810179916414976\",\"text\":\"RT @OneGreenPlanet: One man\\u2019s #plastic trash is definitely not another #animal\\u2019s treasure http:\\/\\/t.co\\/kvgvp4j8Gj #PlasticKills http:\\/\\/t.co\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 21:30:03 +0000 2014\",\"id\":538807124566867968,\"id_str\":\"538807124566867968\",\"text\":\"One man\\u2019s #plastic trash is definitely not another #animal\\u2019s treasure http:\\/\\/t.co\\/kvgvp4j8Gj #PlasticKills http:\\/\\/t.co\\/FeyMB0wI7F\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":97,\"favorite_count\":60,\"entities\":{\"hashtags\":[{\"text\":\"plastic\",\"indices\":[10,18]},{\"text\":\"animal\",\"indices\":[51,58]},{\"text\":\"PlasticKills\",\"indices\":[94,107]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kvgvp4j8Gj\",\"expanded_url\":\"http:\\/\\/onegr.pl\\/1uAWk3o\",\"display_url\":\"onegr.pl\\/1uAWk3o\",\"indices\":[70,92]}],\"media\":[{\"id\":538733403147755521,\"id_str\":\"538733403147755521\",\"indices\":[108,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"url\":\"http:\\/\\/t.co\\/FeyMB0wI7F\",\"display_url\":\"pic.twitter.com\\/FeyMB0wI7F\",\"expanded_url\":\"http:\\/\\/twitter.com\\/OneGreenPlanet\\/status\\/538807124566867968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":207,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":97,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"plastic\",\"indices\":[30,38]},{\"text\":\"animal\",\"indices\":[71,78]},{\"text\":\"PlasticKills\",\"indices\":[114,127]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"OneGreenPlanet\",\"name\":\"one green planet\",\"id\":134555743,\"id_str\":\"134555743\",\"indices\":[3,18]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kvgvp4j8Gj\",\"expanded_url\":\"http:\\/\\/onegr.pl\\/1uAWk3o\",\"display_url\":\"onegr.pl\\/1uAWk3o\",\"indices\":[90,112]}],\"media\":[{\"id\":538733403147755521,\"id_str\":\"538733403147755521\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n3LQNCYAEPNjR.jpg\",\"url\":\"http:\\/\\/t.co\\/FeyMB0wI7F\",\"display_url\":\"pic.twitter.com\\/FeyMB0wI7F\",\"expanded_url\":\"http:\\/\\/twitter.com\\/OneGreenPlanet\\/status\\/538807124566867968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":467,\"h\":286,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":207,\"resize\":\"fit\"}},\"source_status_id\":538807124566867968,\"source_status_id_str\":\"538807124566867968\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000061715032\\/88a8f9c14f121e6c2b5d900202337412.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000061715032\\/88a8f9c14f121e6c2b5d900202337412.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527962032306278400\\/2ojL3cRe_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527962032306278400\\/2ojL3cRe_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/180509355\\/1411760916\",\"profile_link_color\":\"008F8D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFCCF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":171676161,\"id_str\":\"171676161\",\"name\":\"Joe Flanigan\",\"screen_name\":\"JoeFlanigan\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"actor\\/writer\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44096,\"friends_count\":24,\"listed_count\":1645,\"created_at\":\"Tue Jul 27 22:29:05 +0000 2010\",\"favourites_count\":9,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":419,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 22 18:47:59 +0000 2014\",\"id\":536229623676547072,\"id_str\":\"536229623676547072\",\"text\":\"Lovely day in the arctic air of Ottowa..eh? http:\\/\\/t.co\\/cQdojF0XuT\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":31,\"favorite_count\":164,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":536229617988689920,\"id_str\":\"536229617988689920\",\"indices\":[44,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ER_xpCYAAptGJ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ER_xpCYAAptGJ.jpg\",\"url\":\"http:\\/\\/t.co\\/cQdojF0XuT\",\"display_url\":\"pic.twitter.com\\/cQdojF0XuT\",\"expanded_url\":\"http:\\/\\/twitter.com\\/JoeFlanigan\\/status\\/536229623676547072\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496704467568308226\\/p4C-NFw5_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496704467568308226\\/p4C-NFw5_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/171676161\\/1407258699\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":154663165,\"id_str\":\"154663165\",\"name\":\"Chris Gauthier\",\"screen_name\":\"captaingauthier\",\"location\":\"\",\"profile_location\":null,\"description\":\"Rotund, jovial, half shark, alligator half man. Also acts in various film and T.V. shows. I belong to the city. I belong to the night.\",\"url\":\"http:\\/\\/t.co\\/uwjKzq14uT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uwjKzq14uT\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm0310240\\/\",\"display_url\":\"imdb.com\\/name\\/nm0310240\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4159,\"friends_count\":262,\"listed_count\":327,\"created_at\":\"Fri Jun 11 21:45:08 +0000 2010\",\"favourites_count\":986,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4277,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 18:10:52 +0000 2014\",\"id\":538756996111949825,\"id_str\":\"538756996111949825\",\"text\":\"RT @Vcrow: #gratitude for everyone working to stop earth from becoming a giant gas chamber. Big love to #BurnabyMountain Protectors! #NoKi\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 18:05:53 +0000 2014\",\"id\":538755744850788353,\"id_str\":\"538755744850788353\",\"text\":\"#gratitude for everyone working to stop earth from becoming a giant gas chamber. Big love to #BurnabyMountain Protectors! #NoKinderMorgan\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":4,\"favorite_count\":2,\"entities\":{\"hashtags\":[{\"text\":\"gratitude\",\"indices\":[0,10]},{\"text\":\"BurnabyMountain\",\"indices\":[93,109]},{\"text\":\"NoKinderMorgan\",\"indices\":[123,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":4,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"gratitude\",\"indices\":[11,21]},{\"text\":\"BurnabyMountain\",\"indices\":[104,120]},{\"text\":\"NoKinderMorgan\",\"indices\":[134,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Vcrow\",\"name\":\"Velcrow Ripper\",\"id\":16489200,\"id_str\":\"16489200\",\"indices\":[3,9]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/228280289\\/IMG_0842.JPG\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/228280289\\/IMG_0842.JPG\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530059951503581184\\/WBKApPzn_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530059951503581184\\/WBKApPzn_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/154663165\\/1411186734\",\"profile_link_color\":\"9D582E\",\"profile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":151232686,\"id_str\":\"151232686\",\"name\":\"Yvonne Strahovski\",\"screen_name\":\"Y_Strahovski\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"ACTRESS\",\"url\":\"http:\\/\\/t.co\\/AC0tvAmlDw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AC0tvAmlDw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/Y_Strahovski\",\"display_url\":\"twitter.com\\/Y_Strahovski\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":393636,\"friends_count\":143,\"listed_count\":5328,\"created_at\":\"Wed Jun 02 23:08:05 +0000 2010\",\"favourites_count\":17,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1680,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 15:02:53 +0000 2014\",\"id\":539072077295517696,\"id_str\":\"539072077295517696\",\"text\":\"So long NOLA for a bit (I'll be back:) And hello NYC you old friend you. From #AstronautWivesClub to #ManhattanNocturne #timetoswitchgears\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":65,\"favorite_count\":328,\"entities\":{\"hashtags\":[{\"text\":\"AstronautWivesClub\",\"indices\":[78,97]},{\"text\":\"ManhattanNocturne\",\"indices\":[101,119]},{\"text\":\"timetoswitchgears\",\"indices\":[120,138]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/466502754\\/dirty.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/466502754\\/dirty.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/521504269695221761\\/qGPnNqrZ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/521504269695221761\\/qGPnNqrZ_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/151232686\\/1390758326\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"D3D2CF\",\"profile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":144003355,\"id_str\":\"144003355\",\"name\":\"Jeri Ryan\",\"screen_name\":\"JeriLRyan\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Actress, wife, mom, foodie, and gardener. Not necessarily in that order. Occasional binge-tweeter. I can't reply to everybody, but I try!\",\"url\":\"http:\\/\\/t.co\\/tudK4Q6omV\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tudK4Q6omV\",\"expanded_url\":\"http:\\/\\/google.com\\/+JeriRyan\",\"display_url\":\"google.com\\/+JeriRyan\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":227267,\"friends_count\":607,\"listed_count\":5887,\"created_at\":\"Sat May 15 01:29:48 +0000 2010\",\"favourites_count\":210,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":37128,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:45:15 +0000 2014\",\"id\":539143137411620864,\"id_str\":\"539143137411620864\",\"text\":\"@johnecash1 @OscartheOrange @barben2 you guys are hilarious\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539131934895775745,\"in_reply_to_status_id_str\":\"539131934895775745\",\"in_reply_to_user_id\":363417115,\"in_reply_to_user_id_str\":\"363417115\",\"in_reply_to_screen_name\":\"johnecash1\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2,\"favorite_count\":3,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"johnecash1\",\"name\":\"CharlieBoswell Brown\",\"id\":363417115,\"id_str\":\"363417115\",\"indices\":[0,11]},{\"screen_name\":\"OscartheOrange\",\"name\":\"Oscar the Orange\",\"id\":185753114,\"id_str\":\"185753114\",\"indices\":[12,27]},{\"screen_name\":\"barben2\",\"name\":\"Philip Wildman\",\"id\":53440929,\"id_str\":\"53440929\",\"indices\":[28,36]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/734382248\\/c3ef32c0610f029e0d50b77fbf2169d1.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/734382248\\/c3ef32c0610f029e0d50b77fbf2169d1.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/420360843469926400\\/D2EVT_QS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/420360843469926400\\/D2EVT_QS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/144003355\\/1355162869\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":143988282,\"id_str\":\"143988282\",\"name\":\"Colin Ferguson\",\"screen_name\":\"colinferg\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Traveller. Hotel Liver. Emigrater. Actor. Director. Word Maker Upper.\",\"url\":\"http:\\/\\/t.co\\/qlEdGF39j0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qlEdGF39j0\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm0272399\\/\",\"display_url\":\"imdb.com\\/name\\/nm0272399\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":71315,\"friends_count\":104,\"listed_count\":2377,\"created_at\":\"Sat May 15 00:27:20 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3129,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 22 05:06:22 +0000 2014\",\"id\":536022857441374208,\"id_str\":\"536022857441374208\",\"text\":\"@Pjboudousque :)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":535985389597896704,\"in_reply_to_status_id_str\":\"535985389597896704\",\"in_reply_to_user_id\":1425062599,\"in_reply_to_user_id_str\":\"1425062599\",\"in_reply_to_screen_name\":\"Pjboudousque\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Pjboudousque\",\"name\":\"PJ Boudousque\",\"id\":1425062599,\"id_str\":\"1425062599\",\"indices\":[0,13]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1123430419\\/cropped_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1123430419\\/cropped_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":140233086,\"id_str\":\"140233086\",\"name\":\"Tricia Helfer\",\"screen_name\":\"trutriciahelfer\",\"location\":\"California\",\"profile_location\":null,\"description\":\"Official Twitter account for actress Tricia Helfer.\",\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"expanded_url\":\"http:\\/\\/www.triciahelfer.com\",\"display_url\":\"triciahelfer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88322,\"friends_count\":362,\"listed_count\":2532,\"created_at\":\"Tue May 04 23:56:01 +0000 2010\",\"favourites_count\":151,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6140,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 01:57:39 +0000 2014\",\"id\":539236857301565441,\"id_str\":\"539236857301565441\",\"text\":\"@Bios_Hack Hopefully make a difference. The last time I can remember it raining was last January. We need the rain so badly!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539235669345042433,\"in_reply_to_status_id_str\":\"539235669345042433\",\"in_reply_to_user_id\":575603504,\"in_reply_to_user_id_str\":\"575603504\",\"in_reply_to_screen_name\":\"Bios_Hack\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":2,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Bios_Hack\",\"name\":\"Lee French\",\"id\":575603504,\"id_str\":\"575603504\",\"indices\":[0,10]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/140233086\\/1398358190\",\"profile_link_color\":\"FF0066\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"858585\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":134668186,\"id_str\":\"134668186\",\"name\":\"Amy Acker\",\"screen_name\":\"AmyAcker\",\"location\":\"LA\\/BK\",\"profile_location\":null,\"description\":\"Actress and Martha Stewart wanna be\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":147184,\"friends_count\":60,\"listed_count\":3962,\"created_at\":\"Mon Apr 19 03:28:05 +0000 2010\",\"favourites_count\":294,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":970,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 02:53:14 +0000 2014\",\"id\":538163678676516867,\"id_str\":\"538163678676516867\",\"text\":\"Hope everyone had a wonderful Thanksgiving! http:\\/\\/t.co\\/cmkUDI7XqZ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":25,\"favorite_count\":227,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538163678374547457,\"id_str\":\"538163678374547457\",\"indices\":[44,66],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3fxA6CIUAEPR-T.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3fxA6CIUAEPR-T.jpg\",\"url\":\"http:\\/\\/t.co\\/cmkUDI7XqZ\",\"display_url\":\"pic.twitter.com\\/cmkUDI7XqZ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AmyAcker\\/status\\/538163678676516867\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1365,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000667607120\\/2c629b4d5d567c58f2f707cb6523794a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000667607120\\/2c629b4d5d567c58f2f707cb6523794a_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":130600864,\"id_str\":\"130600864\",\"name\":\"Sean Maher\",\"screen_name\":\"Sean_M_Maher\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Partner. Father of two. Student of Spirituality. Actor. Lover of wine. Usually in that order. \\n\\nNew Yorker at heart, but calls LA home.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67995,\"friends_count\":121,\"listed_count\":3017,\"created_at\":\"Wed Apr 07 19:38:39 +0000 2010\",\"favourites_count\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2749,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 16 03:18:22 +0000 2014\",\"id\":533821351358787585,\"id_str\":\"533821351358787585\",\"text\":\"@KathleenPerkins Happy Birthday you little vixen. I miss you somethin fierce.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":575560262,\"in_reply_to_user_id_str\":\"575560262\",\"in_reply_to_screen_name\":\"KathleenPerkins\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"KathleenPerkins\",\"name\":\"Kathleen Perkins\",\"id\":575560262,\"id_str\":\"575560262\",\"indices\":[0,16]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/452593094240661504\\/uyaF4RGb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/452593094240661504\\/uyaF4RGb_normal.jpeg\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":115485051,\"id_str\":\"115485051\",\"name\":\"Conan O'Brien\",\"screen_name\":\"ConanOBrien\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"The voice of the people. Sorry, people.\",\"url\":\"http:\\/\\/t.co\\/2MenU2MTOS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2MenU2MTOS\",\"expanded_url\":\"http:\\/\\/teamcoco.com\",\"display_url\":\"teamcoco.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13153984,\"friends_count\":1,\"listed_count\":90136,\"created_at\":\"Thu Feb 18 20:17:16 +0000 2010\",\"favourites_count\":1,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1857,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:58:53 +0000 2014\",\"id\":539116370626359297,\"id_str\":\"539116370626359297\",\"text\":\"You can tell Charles Manson really loves his fianc\\u00e9e by the way he hasn\\u2019t murdered her.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3108,\"favorite_count\":5560,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/875682230\\/6957e7d6efdd57c670277fce65043e40.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/875682230\\/6957e7d6efdd57c670277fce65043e40.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/728337241\\/conan_4cred_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/728337241\\/conan_4cred_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":92352911,\"id_str\":\"92352911\",\"name\":\"Jon Huertas\",\"screen_name\":\"Jon_Huertas\",\"location\":\"Venice, California\",\"profile_location\":null,\"description\":\"...I've been known to make Nuns cry.\",\"url\":\"http:\\/\\/t.co\\/R6yHv4xPSR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/R6yHv4xPSR\",\"expanded_url\":\"http:\\/\\/www.thejonhuertas.com\",\"display_url\":\"thejonhuertas.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":263387,\"friends_count\":380,\"listed_count\":3336,\"created_at\":\"Tue Nov 24 20:07:40 +0000 2009\",\"favourites_count\":6,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6472,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 21:55:23 +0000 2014\",\"id\":537363945552883712,\"id_str\":\"537363945552883712\",\"text\":\"\\u201c@proudofStana: @badasskbex @Jon_Huertas relationship at my home means \\\"friendship\\\" too.\\u201d \\n\\nYep mine too!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":46,\"favorite_count\":122,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"proudofStana\",\"name\":\"love sucks !\",\"id\":147289685,\"id_str\":\"147289685\",\"indices\":[1,14]},{\"screen_name\":\"badasskbex\",\"name\":\"salacious\",\"id\":197757963,\"id_str\":\"197757963\",\"indices\":[16,27]},{\"screen_name\":\"Jon_Huertas\",\"name\":\"Jon Huertas\",\"id\":92352911,\"id_str\":\"92352911\",\"indices\":[28,40]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/426101593\\/20111106_-_Jon_Huertas_4_088.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/426101593\\/20111106_-_Jon_Huertas_4_088.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3428988457\\/550f863093d329dbaec803b160d903f1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3428988457\\/550f863093d329dbaec803b160d903f1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/92352911\\/1364227441\",\"profile_link_color\":\"CF5D10\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202145,\"friends_count\":1624,\"listed_count\":7662,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12308,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 02:01:15 +0000 2014\",\"id\":539237760809181184,\"id_str\":\"539237760809181184\",\"text\":\".@daddy_warpig Let\\u2019s presume Chu\\u2019s lying when he claims to be an \\u201cactor\\u201d. What else has he lied about?\\n\\nMaster @yesnicksearcy can analyze.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539200185055064064,\"in_reply_to_status_id_str\":\"539200185055064064\",\"in_reply_to_user_id\":65974890,\"in_reply_to_user_id_str\":\"65974890\",\"in_reply_to_screen_name\":\"daddy_warpig\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":2,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"daddy_warpig\",\"name\":\"Daddy Warpig\",\"id\":65974890,\"id_str\":\"65974890\",\"indices\":[1,14]},{\"screen_name\":\"yesnicksearcy\",\"name\":\"Yes, Nick Searcy!\",\"id\":112280016,\"id_str\":\"112280016\",\"indices\":[111,125]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":89604563,\"id_str\":\"89604563\",\"name\":\"Allison Scagliotti\",\"screen_name\":\"allisonscag\",\"location\":\"Space ghost, coast to coast.\",\"profile_location\":null,\"description\":\"A loose ankled carnie in a wide brimmed hat.\",\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1270095\\/\",\"display_url\":\"imdb.com\\/name\\/nm1270095\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87807,\"friends_count\":827,\"listed_count\":2714,\"created_at\":\"Fri Nov 13 02:24:14 +0000 2009\",\"favourites_count\":536,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4725,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 00:56:25 +0000 2014\",\"id\":539221446174601217,\"id_str\":\"539221446174601217\",\"text\":\"NO idea when @TayeDiggs followed me or why but goddamn if a lady doesn't feel pretty right now. #youllseeboys\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5,\"favorite_count\":77,\"entities\":{\"hashtags\":[{\"text\":\"youllseeboys\",\"indices\":[96,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TayeDiggs\",\"name\":\"Taye Diggs\",\"id\":210684204,\"id_str\":\"210684204\",\"indices\":[13,23]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/89604563\\/1384936327\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":86422542,\"id_str\":\"86422542\",\"name\":\"Milla Jovovich\",\"screen_name\":\"MillaJovovich\",\"location\":\"Wuz up Vitch?\",\"profile_location\":null,\"description\":\"pronounced mee-luh yo-vo-vitch \\u2026 http:\\/\\/t.co\\/NX7IV85QEK\\r\\nhttp:\\/\\/t.co\\/IXc6mCtq4H\",\"url\":\"http:\\/\\/t.co\\/1Qh4epbmOA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1Qh4epbmOA\",\"expanded_url\":\"http:\\/\\/www.MillaJ.com\",\"display_url\":\"MillaJ.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/NX7IV85QEK\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/MillaJovovich\",\"display_url\":\"facebook.com\\/MillaJovovich\",\"indices\":[34,56]},{\"url\":\"http:\\/\\/t.co\\/IXc6mCtq4H\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/MillaJovovich\",\"display_url\":\"instagram.com\\/MillaJovovich\",\"indices\":[58,80]}]}},\"protected\":false,\"followers_count\":1366471,\"friends_count\":3114,\"listed_count\":17173,\"created_at\":\"Fri Oct 30 23:46:02 +0000 2009\",\"favourites_count\":165,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11811,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 22:32:10 +0000 2014\",\"id\":539185144116936705,\"id_str\":\"539185144116936705\",\"text\":\"The finished look from the second week of design camp! And that's her \\\"brand name\\\" on the back \\\"the\\u2026 http:\\/\\/t.co\\/EfPIZQJs4f\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":50,\"favorite_count\":154,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EfPIZQJs4f\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wCm4VVzMua\\/\",\"display_url\":\"instagram.com\\/p\\/wCm4VVzMua\\/\",\"indices\":[101,123]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"10A8A8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/679946683\\/b7cbee631daf3dfcd6580905f90b2531.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/679946683\\/b7cbee631daf3dfcd6580905f90b2531.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3251448147\\/efef36887919568382cafca061ca4f0a_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3251448147\\/efef36887919568382cafca061ca4f0a_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/86422542\\/1349638523\",\"profile_link_color\":\"B330BF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"D1CFCF\",\"profile_text_color\":\"7E4E80\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":80468100,\"id_str\":\"80468100\",\"name\":\"Amanda Tapping\",\"screen_name\":\"amandatapping\",\"location\":\"Vangroovy, B.C.\",\"profile_location\":null,\"description\":\"mama, wife, actress, director, producer, activist, and general goofball. :D\",\"url\":\"http:\\/\\/t.co\\/5W59mbxzno\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5W59mbxzno\",\"expanded_url\":\"http:\\/\\/www.amandatapping.com\",\"display_url\":\"amandatapping.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":128423,\"friends_count\":224,\"listed_count\":4361,\"created_at\":\"Wed Oct 07 02:18:05 +0000 2009\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2219,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 16:47:34 +0000 2014\",\"id\":539098422251634688,\"id_str\":\"539098422251634688\",\"text\":\"Thank you @TGSTOULOUSE for a fantastic weekend. Wonderful to meet everyone!! Xo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003eEchofon\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":41,\"favorite_count\":92,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TGSTOULOUSE\",\"name\":\"Toulouse Game Show\",\"id\":89575352,\"id_str\":\"89575352\",\"indices\":[10,22]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":74817489,\"id_str\":\"74817489\",\"name\":\"sasha roiz\",\"screen_name\":\"sasharoiz\",\"location\":\"\",\"profile_location\":null,\"description\":\"Instagram: mrsasharoiz\",\"url\":\"http:\\/\\/t.co\\/MNOIpdWQvJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MNOIpdWQvJ\",\"expanded_url\":\"http:\\/\\/m.imdb.com\\/name\\/nm1501388\\/\",\"display_url\":\"m.imdb.com\\/name\\/nm1501388\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":58841,\"friends_count\":266,\"listed_count\":1081,\"created_at\":\"Wed Sep 16 19:40:11 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3682,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 22:39:33 +0000 2014\",\"id\":538824614005469184,\"id_str\":\"538824614005469184\",\"text\":\"@LaceyBugg25 @HedwigOnBway you, my dear, just one that argument. Hell of a show.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538823603576659968,\"in_reply_to_status_id_str\":\"538823603576659968\",\"in_reply_to_user_id\":278145303,\"in_reply_to_user_id_str\":\"278145303\",\"in_reply_to_screen_name\":\"LaceyBugg25\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":2,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LaceyBugg25\",\"name\":\"Lacey Hanner\",\"id\":278145303,\"id_str\":\"278145303\",\"indices\":[0,12]},{\"screen_name\":\"HedwigOnBway\",\"name\":\"Hedwig on Broadway\",\"id\":128277516,\"id_str\":\"128277516\",\"indices\":[13,26]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/64614040\\/unicorns-rainbow.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/64614040\\/unicorns-rainbow.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/481848921560317953\\/o2LISl7l_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/481848921560317953\\/o2LISl7l_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}],\"next_cursor\":4611686018502205393,\"next_cursor_str\":\"4611686018502205393\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testlistsall.json000066400000000000000000015034221265716604700205010ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:22 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2dbb61b14cca5e94f0f63f48b2d6fae1" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "be0505048c7059a3" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "188890" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008281415587; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:22 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:22 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380982" ] }, "body": { "string": "[{\"id\":108221687,\"id_str\":\"108221687\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-176\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-176\",\"full_name\":\"@tweepytest\\/tweeps-176\",\"created_at\":\"Mon Mar 17 00:02:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108221686,\"id_str\":\"108221686\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-176\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-176\",\"full_name\":\"@tweepytest\\/tweeps-176\",\"created_at\":\"Mon Mar 17 00:02:13 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108221685,\"id_str\":\"108221685\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-177\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-177\",\"full_name\":\"@tweepytest\\/tweeps-177\",\"created_at\":\"Mon Mar 17 00:02:13 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219910,\"id_str\":\"108219910\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-175\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-175\",\"full_name\":\"@tweepytest\\/tweeps-175\",\"created_at\":\"Sun Mar 16 23:21:18 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219862,\"id_str\":\"108219862\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-173\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-173\",\"full_name\":\"@tweepytest\\/tweeps-173\",\"created_at\":\"Sun Mar 16 23:20:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219861,\"id_str\":\"108219861\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-174\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-174\",\"full_name\":\"@tweepytest\\/tweeps-174\",\"created_at\":\"Sun Mar 16 23:20:16 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219824,\"id_str\":\"108219824\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-171\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-171\",\"full_name\":\"@tweepytest\\/tweeps-171\",\"created_at\":\"Sun Mar 16 23:19:47 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219822,\"id_str\":\"108219822\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-172\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-172\",\"full_name\":\"@tweepytest\\/tweeps-172\",\"created_at\":\"Sun Mar 16 23:19:47 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212204,\"id_str\":\"108212204\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-170\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-170\",\"full_name\":\"@tweepytest\\/tweeps-170\",\"created_at\":\"Sun Mar 16 20:30:57 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212200,\"id_str\":\"108212200\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-169\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-169\",\"full_name\":\"@tweepytest\\/tweeps-169\",\"created_at\":\"Sun Mar 16 20:30:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212199,\"id_str\":\"108212199\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-169\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-169\",\"full_name\":\"@tweepytest\\/tweeps-169\",\"created_at\":\"Sun Mar 16 20:30:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212198,\"id_str\":\"108212198\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-169\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-169\",\"full_name\":\"@tweepytest\\/tweeps-169\",\"created_at\":\"Sun Mar 16 20:30:50 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212188,\"id_str\":\"108212188\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-168\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-168\",\"full_name\":\"@tweepytest\\/tweeps-168\",\"created_at\":\"Sun Mar 16 20:30:31 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108078239,\"id_str\":\"108078239\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-167\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-167\",\"full_name\":\"@tweepytest\\/tweeps-167\",\"created_at\":\"Fri Mar 14 22:26:59 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108076676,\"id_str\":\"108076676\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-166\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-166\",\"full_name\":\"@tweepytest\\/tweeps-166\",\"created_at\":\"Fri Mar 14 21:50:18 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108076666,\"id_str\":\"108076666\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-165\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-165\",\"full_name\":\"@tweepytest\\/tweeps-165\",\"created_at\":\"Fri Mar 14 21:50:08 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108003229,\"id_str\":\"108003229\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-164\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-164\",\"full_name\":\"@tweepytest\\/tweeps-164\",\"created_at\":\"Thu Mar 13 22:24:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108001143,\"id_str\":\"108001143\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-162\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-162\",\"full_name\":\"@tweepytest\\/tweeps-162\",\"created_at\":\"Thu Mar 13 21:47:26 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108001142,\"id_str\":\"108001142\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-162\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-162\",\"full_name\":\"@tweepytest\\/tweeps-162\",\"created_at\":\"Thu Mar 13 21:47:26 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108001141,\"id_str\":\"108001141\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-163\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-163\",\"full_name\":\"@tweepytest\\/tweeps-163\",\"created_at\":\"Thu Mar 13 21:47:25 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107928409,\"id_str\":\"107928409\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-161\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-161\",\"full_name\":\"@tweepytest\\/tweeps-161\",\"created_at\":\"Wed Mar 12 22:43:46 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107928402,\"id_str\":\"107928402\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-159\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-159\",\"full_name\":\"@tweepytest\\/tweeps-159\",\"created_at\":\"Wed Mar 12 22:43:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107928401,\"id_str\":\"107928401\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-160\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-160\",\"full_name\":\"@tweepytest\\/tweeps-160\",\"created_at\":\"Wed Mar 12 22:43:28 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107922583,\"id_str\":\"107922583\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-157\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-157\",\"full_name\":\"@tweepytest\\/tweeps-157\",\"created_at\":\"Wed Mar 12 21:02:10 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107922582,\"id_str\":\"107922582\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-158\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-158\",\"full_name\":\"@tweepytest\\/tweeps-158\",\"created_at\":\"Wed Mar 12 21:02:10 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107854833,\"id_str\":\"107854833\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-156\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-156\",\"full_name\":\"@tweepytest\\/tweeps-156\",\"created_at\":\"Wed Mar 12 00:56:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107854516,\"id_str\":\"107854516\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-155\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-155\",\"full_name\":\"@tweepytest\\/tweeps-155\",\"created_at\":\"Wed Mar 12 00:50:09 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107852564,\"id_str\":\"107852564\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-154\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-154\",\"full_name\":\"@tweepytest\\/tweeps-154\",\"created_at\":\"Wed Mar 12 00:12:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107840768,\"id_str\":\"107840768\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-152\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-152\",\"full_name\":\"@tweepytest\\/tweeps-152\",\"created_at\":\"Tue Mar 11 20:25:38 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107840767,\"id_str\":\"107840767\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-153\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-153\",\"full_name\":\"@tweepytest\\/tweeps-153\",\"created_at\":\"Tue Mar 11 20:25:37 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107839558,\"id_str\":\"107839558\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-150\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-150\",\"full_name\":\"@tweepytest\\/tweeps-150\",\"created_at\":\"Tue Mar 11 20:00:44 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107839557,\"id_str\":\"107839557\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-151\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-151\",\"full_name\":\"@tweepytest\\/tweeps-151\",\"created_at\":\"Tue Mar 11 20:00:43 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107825491,\"id_str\":\"107825491\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-149\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-149\",\"full_name\":\"@tweepytest\\/tweeps-149\",\"created_at\":\"Tue Mar 11 15:41:12 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107783238,\"id_str\":\"107783238\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-148\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-148\",\"full_name\":\"@tweepytest\\/tweeps-148\",\"created_at\":\"Tue Mar 11 01:46:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107783237,\"id_str\":\"107783237\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-148\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-148\",\"full_name\":\"@tweepytest\\/tweeps-148\",\"created_at\":\"Tue Mar 11 01:46:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107780375,\"id_str\":\"107780375\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-147\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-147\",\"full_name\":\"@tweepytest\\/tweeps-147\",\"created_at\":\"Tue Mar 11 00:35:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107774703,\"id_str\":\"107774703\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-146\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-146\",\"full_name\":\"@tweepytest\\/tweeps-146\",\"created_at\":\"Mon Mar 10 22:24:58 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770927,\"id_str\":\"107770927\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-145\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-145\",\"full_name\":\"@tweepytest\\/tweeps-145\",\"created_at\":\"Mon Mar 10 21:03:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770908,\"id_str\":\"107770908\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-144\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-144\",\"full_name\":\"@tweepytest\\/tweeps-144\",\"created_at\":\"Mon Mar 10 21:02:57 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770677,\"id_str\":\"107770677\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-143\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-143\",\"full_name\":\"@tweepytest\\/tweeps-143\",\"created_at\":\"Mon Mar 10 20:57:22 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770636,\"id_str\":\"107770636\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-142\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-142\",\"full_name\":\"@tweepytest\\/tweeps-142\",\"created_at\":\"Mon Mar 10 20:56:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107765717,\"id_str\":\"107765717\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-141\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-141\",\"full_name\":\"@tweepytest\\/tweeps-141\",\"created_at\":\"Mon Mar 10 19:15:54 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107676457,\"id_str\":\"107676457\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-140\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-140\",\"full_name\":\"@tweepytest\\/tweeps-140\",\"created_at\":\"Sun Mar 09 21:40:40 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107663501,\"id_str\":\"107663501\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-139\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-139\",\"full_name\":\"@tweepytest\\/tweeps-139\",\"created_at\":\"Sun Mar 09 16:59:48 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107663164,\"id_str\":\"107663164\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-137\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-137\",\"full_name\":\"@tweepytest\\/tweeps-137\",\"created_at\":\"Sun Mar 09 16:53:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107663162,\"id_str\":\"107663162\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-138\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-138\",\"full_name\":\"@tweepytest\\/tweeps-138\",\"created_at\":\"Sun Mar 09 16:53:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107662960,\"id_str\":\"107662960\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-135\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-135\",\"full_name\":\"@tweepytest\\/tweeps-135\",\"created_at\":\"Sun Mar 09 16:49:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107662959,\"id_str\":\"107662959\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-136\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-136\",\"full_name\":\"@tweepytest\\/tweeps-136\",\"created_at\":\"Sun Mar 09 16:49:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107662087,\"id_str\":\"107662087\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-134\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-134\",\"full_name\":\"@tweepytest\\/tweeps-134\",\"created_at\":\"Sun Mar 09 16:32:11 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107661852,\"id_str\":\"107661852\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-133\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-133\",\"full_name\":\"@tweepytest\\/tweeps-133\",\"created_at\":\"Sun Mar 09 16:28:37 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107660219,\"id_str\":\"107660219\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-132\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-132\",\"full_name\":\"@tweepytest\\/tweeps-132\",\"created_at\":\"Sun Mar 09 15:58:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107659095,\"id_str\":\"107659095\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-131\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-131\",\"full_name\":\"@tweepytest\\/tweeps-131\",\"created_at\":\"Sun Mar 09 15:40:19 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107656327,\"id_str\":\"107656327\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-130\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-130\",\"full_name\":\"@tweepytest\\/tweeps-130\",\"created_at\":\"Sun Mar 09 15:00:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107655699,\"id_str\":\"107655699\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-129\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-129\",\"full_name\":\"@tweepytest\\/tweeps-129\",\"created_at\":\"Sun Mar 09 14:51:55 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107520218,\"id_str\":\"107520218\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-127\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-127\",\"full_name\":\"@tweepytest\\/tweeps-127\",\"created_at\":\"Fri Mar 07 20:39:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107520217,\"id_str\":\"107520217\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-127\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-127\",\"full_name\":\"@tweepytest\\/tweeps-127\",\"created_at\":\"Fri Mar 07 20:39:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107520216,\"id_str\":\"107520216\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-128\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-128\",\"full_name\":\"@tweepytest\\/tweeps-128\",\"created_at\":\"Fri Mar 07 20:39:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107473738,\"id_str\":\"107473738\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-125\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-125\",\"full_name\":\"@tweepytest\\/tweeps-125\",\"created_at\":\"Fri Mar 07 04:44:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107473737,\"id_str\":\"107473737\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-126\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-126\",\"full_name\":\"@tweepytest\\/tweeps-126\",\"created_at\":\"Fri Mar 07 04:44:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471492,\"id_str\":\"107471492\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-124\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-124\",\"full_name\":\"@tweepytest\\/tweeps-124\",\"created_at\":\"Fri Mar 07 03:47:30 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471491,\"id_str\":\"107471491\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-124\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-124\",\"full_name\":\"@tweepytest\\/tweeps-124\",\"created_at\":\"Fri Mar 07 03:47:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471276,\"id_str\":\"107471276\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-123\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-123\",\"full_name\":\"@tweepytest\\/tweeps-123\",\"created_at\":\"Fri Mar 07 03:41:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471265,\"id_str\":\"107471265\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-122\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-122\",\"full_name\":\"@tweepytest\\/tweeps-122\",\"created_at\":\"Fri Mar 07 03:41:33 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106616306,\"id_str\":\"106616306\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-121\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-121\",\"full_name\":\"@tweepytest\\/tweeps-121\",\"created_at\":\"Tue Feb 25 18:40:04 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106568215,\"id_str\":\"106568215\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-120\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-120\",\"full_name\":\"@tweepytest\\/tweeps-120\",\"created_at\":\"Tue Feb 25 02:36:41 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106362025,\"id_str\":\"106362025\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-119\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-119\",\"full_name\":\"@tweepytest\\/tweeps-119\",\"created_at\":\"Sat Feb 22 04:18:32 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106362011,\"id_str\":\"106362011\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-118\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-118\",\"full_name\":\"@tweepytest\\/tweeps-118\",\"created_at\":\"Sat Feb 22 04:18:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106359581,\"id_str\":\"106359581\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-117\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-117\",\"full_name\":\"@tweepytest\\/tweeps-117\",\"created_at\":\"Sat Feb 22 03:19:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106339376,\"id_str\":\"106339376\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-116\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-116\",\"full_name\":\"@tweepytest\\/tweeps-116\",\"created_at\":\"Fri Feb 21 19:53:43 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106339363,\"id_str\":\"106339363\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-114\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-114\",\"full_name\":\"@tweepytest\\/tweeps-114\",\"created_at\":\"Fri Feb 21 19:53:31 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106339362,\"id_str\":\"106339362\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-115\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-115\",\"full_name\":\"@tweepytest\\/tweeps-115\",\"created_at\":\"Fri Feb 21 19:53:30 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106312115,\"id_str\":\"106312115\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-113\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-113\",\"full_name\":\"@tweepytest\\/tweeps-113\",\"created_at\":\"Fri Feb 21 11:47:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106312103,\"id_str\":\"106312103\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-112\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-112\",\"full_name\":\"@tweepytest\\/tweeps-112\",\"created_at\":\"Fri Feb 21 11:47:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106283951,\"id_str\":\"106283951\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-111\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-111\",\"full_name\":\"@tweepytest\\/tweeps-111\",\"created_at\":\"Fri Feb 21 00:50:13 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106283931,\"id_str\":\"106283931\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-110\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-110\",\"full_name\":\"@tweepytest\\/tweeps-110\",\"created_at\":\"Fri Feb 21 00:49:48 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106283854,\"id_str\":\"106283854\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-109\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-109\",\"full_name\":\"@tweepytest\\/tweeps-109\",\"created_at\":\"Fri Feb 21 00:48:06 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281866,\"id_str\":\"106281866\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-108\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-108\",\"full_name\":\"@tweepytest\\/tweeps-108\",\"created_at\":\"Fri Feb 21 00:00:41 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281663,\"id_str\":\"106281663\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-106\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-106\",\"full_name\":\"@tweepytest\\/tweeps-106\",\"created_at\":\"Thu Feb 20 23:56:02 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281662,\"id_str\":\"106281662\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-107\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-107\",\"full_name\":\"@tweepytest\\/tweeps-107\",\"created_at\":\"Thu Feb 20 23:56:01 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281655,\"id_str\":\"106281655\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-105\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-105\",\"full_name\":\"@tweepytest\\/tweeps-105\",\"created_at\":\"Thu Feb 20 23:55:45 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281617,\"id_str\":\"106281617\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-103\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-103\",\"full_name\":\"@tweepytest\\/tweeps-103\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281615,\"id_str\":\"106281615\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-103\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-103\",\"full_name\":\"@tweepytest\\/tweeps-103\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281613,\"id_str\":\"106281613\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-103\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-103\",\"full_name\":\"@tweepytest\\/tweeps-103\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281611,\"id_str\":\"106281611\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-104\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-104\",\"full_name\":\"@tweepytest\\/tweeps-104\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106270137,\"id_str\":\"106270137\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-102\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-102\",\"full_name\":\"@tweepytest\\/tweeps-102\",\"created_at\":\"Thu Feb 20 19:57:12 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106240830,\"id_str\":\"106240830\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-101\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-101\",\"full_name\":\"@tweepytest\\/tweeps-101\",\"created_at\":\"Thu Feb 20 11:24:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106240688,\"id_str\":\"106240688\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-100\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-100\",\"full_name\":\"@tweepytest\\/tweeps-100\",\"created_at\":\"Thu Feb 20 11:21:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106240655,\"id_str\":\"106240655\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-99\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-99\",\"full_name\":\"@tweepytest\\/tweeps-99\",\"created_at\":\"Thu Feb 20 11:20:37 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106128014,\"id_str\":\"106128014\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-98\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-98\",\"full_name\":\"@tweepytest\\/tweeps-98\",\"created_at\":\"Tue Feb 18 20:15:25 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127994,\"id_str\":\"106127994\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-97\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-97\",\"full_name\":\"@tweepytest\\/tweeps-97\",\"created_at\":\"Tue Feb 18 20:14:54 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127562,\"id_str\":\"106127562\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-96\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-96\",\"full_name\":\"@tweepytest\\/tweeps-96\",\"created_at\":\"Tue Feb 18 20:07:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127544,\"id_str\":\"106127544\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-95\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-95\",\"full_name\":\"@tweepytest\\/tweeps-95\",\"created_at\":\"Tue Feb 18 20:06:44 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127271,\"id_str\":\"106127271\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-93\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-93\",\"full_name\":\"@tweepytest\\/tweeps-93\",\"created_at\":\"Tue Feb 18 20:01:21 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127270,\"id_str\":\"106127270\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-93\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-93\",\"full_name\":\"@tweepytest\\/tweeps-93\",\"created_at\":\"Tue Feb 18 20:01:20 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127269,\"id_str\":\"106127269\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-94\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-94\",\"full_name\":\"@tweepytest\\/tweeps-94\",\"created_at\":\"Tue Feb 18 20:01:20 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106125793,\"id_str\":\"106125793\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-91\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-91\",\"full_name\":\"@tweepytest\\/tweeps-91\",\"created_at\":\"Tue Feb 18 19:33:21 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106125792,\"id_str\":\"106125792\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-92\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-92\",\"full_name\":\"@tweepytest\\/tweeps-92\",\"created_at\":\"Tue Feb 18 19:33:21 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":104171220,\"id_str\":\"104171220\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-90\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-90\",\"full_name\":\"@tweepytest\\/tweeps-90\",\"created_at\":\"Tue Jan 21 21:18:30 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":104109651,\"id_str\":\"104109651\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-89\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-89\",\"full_name\":\"@tweepytest\\/tweeps-89\",\"created_at\":\"Tue Jan 21 00:45:06 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":104092274,\"id_str\":\"104092274\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-88\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-88\",\"full_name\":\"@tweepytest\\/tweeps-88\",\"created_at\":\"Mon Jan 20 18:54:59 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:07 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9fea59e7dc898185ad719c1146df9662" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401007" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "188890" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:07 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010729848253; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:07 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "6f7d8920d50b297a" ] }, "body": { "string": "[{\"id\":108221687,\"id_str\":\"108221687\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-176\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-176\",\"full_name\":\"@tweepytest\\/tweeps-176\",\"created_at\":\"Mon Mar 17 00:02:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108221686,\"id_str\":\"108221686\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-176\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-176\",\"full_name\":\"@tweepytest\\/tweeps-176\",\"created_at\":\"Mon Mar 17 00:02:13 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108221685,\"id_str\":\"108221685\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-177\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-177\",\"full_name\":\"@tweepytest\\/tweeps-177\",\"created_at\":\"Mon Mar 17 00:02:13 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219910,\"id_str\":\"108219910\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-175\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-175\",\"full_name\":\"@tweepytest\\/tweeps-175\",\"created_at\":\"Sun Mar 16 23:21:18 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219862,\"id_str\":\"108219862\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-173\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-173\",\"full_name\":\"@tweepytest\\/tweeps-173\",\"created_at\":\"Sun Mar 16 23:20:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219861,\"id_str\":\"108219861\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-174\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-174\",\"full_name\":\"@tweepytest\\/tweeps-174\",\"created_at\":\"Sun Mar 16 23:20:16 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219824,\"id_str\":\"108219824\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-171\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-171\",\"full_name\":\"@tweepytest\\/tweeps-171\",\"created_at\":\"Sun Mar 16 23:19:47 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108219822,\"id_str\":\"108219822\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-172\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-172\",\"full_name\":\"@tweepytest\\/tweeps-172\",\"created_at\":\"Sun Mar 16 23:19:47 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212204,\"id_str\":\"108212204\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-170\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-170\",\"full_name\":\"@tweepytest\\/tweeps-170\",\"created_at\":\"Sun Mar 16 20:30:57 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212200,\"id_str\":\"108212200\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-169\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-169\",\"full_name\":\"@tweepytest\\/tweeps-169\",\"created_at\":\"Sun Mar 16 20:30:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212199,\"id_str\":\"108212199\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-169\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-169\",\"full_name\":\"@tweepytest\\/tweeps-169\",\"created_at\":\"Sun Mar 16 20:30:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212198,\"id_str\":\"108212198\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-169\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-169\",\"full_name\":\"@tweepytest\\/tweeps-169\",\"created_at\":\"Sun Mar 16 20:30:50 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108212188,\"id_str\":\"108212188\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-168\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-168\",\"full_name\":\"@tweepytest\\/tweeps-168\",\"created_at\":\"Sun Mar 16 20:30:31 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108078239,\"id_str\":\"108078239\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-167\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-167\",\"full_name\":\"@tweepytest\\/tweeps-167\",\"created_at\":\"Fri Mar 14 22:26:59 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108076676,\"id_str\":\"108076676\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-166\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-166\",\"full_name\":\"@tweepytest\\/tweeps-166\",\"created_at\":\"Fri Mar 14 21:50:18 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108076666,\"id_str\":\"108076666\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-165\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-165\",\"full_name\":\"@tweepytest\\/tweeps-165\",\"created_at\":\"Fri Mar 14 21:50:08 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108003229,\"id_str\":\"108003229\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-164\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-164\",\"full_name\":\"@tweepytest\\/tweeps-164\",\"created_at\":\"Thu Mar 13 22:24:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108001143,\"id_str\":\"108001143\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-162\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-162\",\"full_name\":\"@tweepytest\\/tweeps-162\",\"created_at\":\"Thu Mar 13 21:47:26 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108001142,\"id_str\":\"108001142\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-162\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-162\",\"full_name\":\"@tweepytest\\/tweeps-162\",\"created_at\":\"Thu Mar 13 21:47:26 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":108001141,\"id_str\":\"108001141\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-163\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-163\",\"full_name\":\"@tweepytest\\/tweeps-163\",\"created_at\":\"Thu Mar 13 21:47:25 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107928409,\"id_str\":\"107928409\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-161\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-161\",\"full_name\":\"@tweepytest\\/tweeps-161\",\"created_at\":\"Wed Mar 12 22:43:46 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107928402,\"id_str\":\"107928402\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-159\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-159\",\"full_name\":\"@tweepytest\\/tweeps-159\",\"created_at\":\"Wed Mar 12 22:43:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107928401,\"id_str\":\"107928401\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-160\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-160\",\"full_name\":\"@tweepytest\\/tweeps-160\",\"created_at\":\"Wed Mar 12 22:43:28 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107922583,\"id_str\":\"107922583\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-157\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-157\",\"full_name\":\"@tweepytest\\/tweeps-157\",\"created_at\":\"Wed Mar 12 21:02:10 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107922582,\"id_str\":\"107922582\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-158\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-158\",\"full_name\":\"@tweepytest\\/tweeps-158\",\"created_at\":\"Wed Mar 12 21:02:10 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107854833,\"id_str\":\"107854833\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-156\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-156\",\"full_name\":\"@tweepytest\\/tweeps-156\",\"created_at\":\"Wed Mar 12 00:56:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107854516,\"id_str\":\"107854516\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-155\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-155\",\"full_name\":\"@tweepytest\\/tweeps-155\",\"created_at\":\"Wed Mar 12 00:50:09 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107852564,\"id_str\":\"107852564\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-154\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-154\",\"full_name\":\"@tweepytest\\/tweeps-154\",\"created_at\":\"Wed Mar 12 00:12:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107840768,\"id_str\":\"107840768\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-152\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-152\",\"full_name\":\"@tweepytest\\/tweeps-152\",\"created_at\":\"Tue Mar 11 20:25:38 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107840767,\"id_str\":\"107840767\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-153\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-153\",\"full_name\":\"@tweepytest\\/tweeps-153\",\"created_at\":\"Tue Mar 11 20:25:37 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107839558,\"id_str\":\"107839558\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-150\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-150\",\"full_name\":\"@tweepytest\\/tweeps-150\",\"created_at\":\"Tue Mar 11 20:00:44 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107839557,\"id_str\":\"107839557\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-151\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-151\",\"full_name\":\"@tweepytest\\/tweeps-151\",\"created_at\":\"Tue Mar 11 20:00:43 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107825491,\"id_str\":\"107825491\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-149\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-149\",\"full_name\":\"@tweepytest\\/tweeps-149\",\"created_at\":\"Tue Mar 11 15:41:12 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107783238,\"id_str\":\"107783238\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-148\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-148\",\"full_name\":\"@tweepytest\\/tweeps-148\",\"created_at\":\"Tue Mar 11 01:46:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107783237,\"id_str\":\"107783237\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-148\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-148\",\"full_name\":\"@tweepytest\\/tweeps-148\",\"created_at\":\"Tue Mar 11 01:46:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107780375,\"id_str\":\"107780375\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-147\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-147\",\"full_name\":\"@tweepytest\\/tweeps-147\",\"created_at\":\"Tue Mar 11 00:35:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107774703,\"id_str\":\"107774703\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-146\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-146\",\"full_name\":\"@tweepytest\\/tweeps-146\",\"created_at\":\"Mon Mar 10 22:24:58 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770927,\"id_str\":\"107770927\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-145\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-145\",\"full_name\":\"@tweepytest\\/tweeps-145\",\"created_at\":\"Mon Mar 10 21:03:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770908,\"id_str\":\"107770908\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-144\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-144\",\"full_name\":\"@tweepytest\\/tweeps-144\",\"created_at\":\"Mon Mar 10 21:02:57 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770677,\"id_str\":\"107770677\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-143\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-143\",\"full_name\":\"@tweepytest\\/tweeps-143\",\"created_at\":\"Mon Mar 10 20:57:22 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107770636,\"id_str\":\"107770636\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-142\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-142\",\"full_name\":\"@tweepytest\\/tweeps-142\",\"created_at\":\"Mon Mar 10 20:56:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107765717,\"id_str\":\"107765717\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-141\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-141\",\"full_name\":\"@tweepytest\\/tweeps-141\",\"created_at\":\"Mon Mar 10 19:15:54 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107676457,\"id_str\":\"107676457\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-140\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-140\",\"full_name\":\"@tweepytest\\/tweeps-140\",\"created_at\":\"Sun Mar 09 21:40:40 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107663501,\"id_str\":\"107663501\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-139\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-139\",\"full_name\":\"@tweepytest\\/tweeps-139\",\"created_at\":\"Sun Mar 09 16:59:48 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107663164,\"id_str\":\"107663164\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-137\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-137\",\"full_name\":\"@tweepytest\\/tweeps-137\",\"created_at\":\"Sun Mar 09 16:53:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107663162,\"id_str\":\"107663162\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-138\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-138\",\"full_name\":\"@tweepytest\\/tweeps-138\",\"created_at\":\"Sun Mar 09 16:53:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107662960,\"id_str\":\"107662960\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-135\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-135\",\"full_name\":\"@tweepytest\\/tweeps-135\",\"created_at\":\"Sun Mar 09 16:49:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107662959,\"id_str\":\"107662959\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-136\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-136\",\"full_name\":\"@tweepytest\\/tweeps-136\",\"created_at\":\"Sun Mar 09 16:49:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107662087,\"id_str\":\"107662087\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-134\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-134\",\"full_name\":\"@tweepytest\\/tweeps-134\",\"created_at\":\"Sun Mar 09 16:32:11 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107661852,\"id_str\":\"107661852\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-133\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-133\",\"full_name\":\"@tweepytest\\/tweeps-133\",\"created_at\":\"Sun Mar 09 16:28:37 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107660219,\"id_str\":\"107660219\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-132\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-132\",\"full_name\":\"@tweepytest\\/tweeps-132\",\"created_at\":\"Sun Mar 09 15:58:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107659095,\"id_str\":\"107659095\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-131\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-131\",\"full_name\":\"@tweepytest\\/tweeps-131\",\"created_at\":\"Sun Mar 09 15:40:19 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107656327,\"id_str\":\"107656327\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-130\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-130\",\"full_name\":\"@tweepytest\\/tweeps-130\",\"created_at\":\"Sun Mar 09 15:00:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107655699,\"id_str\":\"107655699\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-129\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-129\",\"full_name\":\"@tweepytest\\/tweeps-129\",\"created_at\":\"Sun Mar 09 14:51:55 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107520218,\"id_str\":\"107520218\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-127\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-127\",\"full_name\":\"@tweepytest\\/tweeps-127\",\"created_at\":\"Fri Mar 07 20:39:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107520217,\"id_str\":\"107520217\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-127\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-127\",\"full_name\":\"@tweepytest\\/tweeps-127\",\"created_at\":\"Fri Mar 07 20:39:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107520216,\"id_str\":\"107520216\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-128\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-128\",\"full_name\":\"@tweepytest\\/tweeps-128\",\"created_at\":\"Fri Mar 07 20:39:23 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107473738,\"id_str\":\"107473738\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-125\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-125\",\"full_name\":\"@tweepytest\\/tweeps-125\",\"created_at\":\"Fri Mar 07 04:44:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107473737,\"id_str\":\"107473737\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-126\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-126\",\"full_name\":\"@tweepytest\\/tweeps-126\",\"created_at\":\"Fri Mar 07 04:44:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471492,\"id_str\":\"107471492\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-124\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-124\",\"full_name\":\"@tweepytest\\/tweeps-124\",\"created_at\":\"Fri Mar 07 03:47:30 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471491,\"id_str\":\"107471491\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-124\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-124\",\"full_name\":\"@tweepytest\\/tweeps-124\",\"created_at\":\"Fri Mar 07 03:47:29 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471276,\"id_str\":\"107471276\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-123\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-123\",\"full_name\":\"@tweepytest\\/tweeps-123\",\"created_at\":\"Fri Mar 07 03:41:51 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":107471265,\"id_str\":\"107471265\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-122\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-122\",\"full_name\":\"@tweepytest\\/tweeps-122\",\"created_at\":\"Fri Mar 07 03:41:33 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106616306,\"id_str\":\"106616306\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-121\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-121\",\"full_name\":\"@tweepytest\\/tweeps-121\",\"created_at\":\"Tue Feb 25 18:40:04 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106568215,\"id_str\":\"106568215\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-120\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-120\",\"full_name\":\"@tweepytest\\/tweeps-120\",\"created_at\":\"Tue Feb 25 02:36:41 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106362025,\"id_str\":\"106362025\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-119\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-119\",\"full_name\":\"@tweepytest\\/tweeps-119\",\"created_at\":\"Sat Feb 22 04:18:32 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106362011,\"id_str\":\"106362011\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-118\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-118\",\"full_name\":\"@tweepytest\\/tweeps-118\",\"created_at\":\"Sat Feb 22 04:18:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106359581,\"id_str\":\"106359581\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-117\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-117\",\"full_name\":\"@tweepytest\\/tweeps-117\",\"created_at\":\"Sat Feb 22 03:19:17 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106339376,\"id_str\":\"106339376\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-116\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-116\",\"full_name\":\"@tweepytest\\/tweeps-116\",\"created_at\":\"Fri Feb 21 19:53:43 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106339363,\"id_str\":\"106339363\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-114\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-114\",\"full_name\":\"@tweepytest\\/tweeps-114\",\"created_at\":\"Fri Feb 21 19:53:31 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106339362,\"id_str\":\"106339362\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-115\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-115\",\"full_name\":\"@tweepytest\\/tweeps-115\",\"created_at\":\"Fri Feb 21 19:53:30 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106312115,\"id_str\":\"106312115\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-113\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-113\",\"full_name\":\"@tweepytest\\/tweeps-113\",\"created_at\":\"Fri Feb 21 11:47:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106312103,\"id_str\":\"106312103\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-112\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-112\",\"full_name\":\"@tweepytest\\/tweeps-112\",\"created_at\":\"Fri Feb 21 11:47:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106283951,\"id_str\":\"106283951\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-111\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-111\",\"full_name\":\"@tweepytest\\/tweeps-111\",\"created_at\":\"Fri Feb 21 00:50:13 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106283931,\"id_str\":\"106283931\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-110\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-110\",\"full_name\":\"@tweepytest\\/tweeps-110\",\"created_at\":\"Fri Feb 21 00:49:48 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106283854,\"id_str\":\"106283854\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-109\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-109\",\"full_name\":\"@tweepytest\\/tweeps-109\",\"created_at\":\"Fri Feb 21 00:48:06 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281866,\"id_str\":\"106281866\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-108\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-108\",\"full_name\":\"@tweepytest\\/tweeps-108\",\"created_at\":\"Fri Feb 21 00:00:41 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281663,\"id_str\":\"106281663\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-106\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-106\",\"full_name\":\"@tweepytest\\/tweeps-106\",\"created_at\":\"Thu Feb 20 23:56:02 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281662,\"id_str\":\"106281662\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-107\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-107\",\"full_name\":\"@tweepytest\\/tweeps-107\",\"created_at\":\"Thu Feb 20 23:56:01 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281655,\"id_str\":\"106281655\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-105\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-105\",\"full_name\":\"@tweepytest\\/tweeps-105\",\"created_at\":\"Thu Feb 20 23:55:45 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281617,\"id_str\":\"106281617\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-103\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-103\",\"full_name\":\"@tweepytest\\/tweeps-103\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281615,\"id_str\":\"106281615\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-103\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-103\",\"full_name\":\"@tweepytest\\/tweeps-103\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281613,\"id_str\":\"106281613\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-103\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-103\",\"full_name\":\"@tweepytest\\/tweeps-103\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106281611,\"id_str\":\"106281611\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-104\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-104\",\"full_name\":\"@tweepytest\\/tweeps-104\",\"created_at\":\"Thu Feb 20 23:54:56 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106270137,\"id_str\":\"106270137\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-102\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-102\",\"full_name\":\"@tweepytest\\/tweeps-102\",\"created_at\":\"Thu Feb 20 19:57:12 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106240830,\"id_str\":\"106240830\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-101\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-101\",\"full_name\":\"@tweepytest\\/tweeps-101\",\"created_at\":\"Thu Feb 20 11:24:14 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106240688,\"id_str\":\"106240688\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-100\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-100\",\"full_name\":\"@tweepytest\\/tweeps-100\",\"created_at\":\"Thu Feb 20 11:21:24 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106240655,\"id_str\":\"106240655\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-99\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-99\",\"full_name\":\"@tweepytest\\/tweeps-99\",\"created_at\":\"Thu Feb 20 11:20:37 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106128014,\"id_str\":\"106128014\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-98\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-98\",\"full_name\":\"@tweepytest\\/tweeps-98\",\"created_at\":\"Tue Feb 18 20:15:25 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127994,\"id_str\":\"106127994\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-97\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-97\",\"full_name\":\"@tweepytest\\/tweeps-97\",\"created_at\":\"Tue Feb 18 20:14:54 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127562,\"id_str\":\"106127562\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-96\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-96\",\"full_name\":\"@tweepytest\\/tweeps-96\",\"created_at\":\"Tue Feb 18 20:07:00 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127544,\"id_str\":\"106127544\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-95\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-95\",\"full_name\":\"@tweepytest\\/tweeps-95\",\"created_at\":\"Tue Feb 18 20:06:44 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127271,\"id_str\":\"106127271\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-93\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-93\",\"full_name\":\"@tweepytest\\/tweeps-93\",\"created_at\":\"Tue Feb 18 20:01:21 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127270,\"id_str\":\"106127270\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-93\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-93\",\"full_name\":\"@tweepytest\\/tweeps-93\",\"created_at\":\"Tue Feb 18 20:01:20 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106127269,\"id_str\":\"106127269\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-94\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-94\",\"full_name\":\"@tweepytest\\/tweeps-94\",\"created_at\":\"Tue Feb 18 20:01:20 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106125793,\"id_str\":\"106125793\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-91\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-91\",\"full_name\":\"@tweepytest\\/tweeps-91\",\"created_at\":\"Tue Feb 18 19:33:21 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":106125792,\"id_str\":\"106125792\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-92\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-92\",\"full_name\":\"@tweepytest\\/tweeps-92\",\"created_at\":\"Tue Feb 18 19:33:21 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":104171220,\"id_str\":\"104171220\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-90\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-90\",\"full_name\":\"@tweepytest\\/tweeps-90\",\"created_at\":\"Tue Jan 21 21:18:30 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":104109651,\"id_str\":\"104109651\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-89\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-89\",\"full_name\":\"@tweepytest\\/tweeps-89\",\"created_at\":\"Tue Jan 21 00:45:06 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":104092274,\"id_str\":\"104092274\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-88\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-88\",\"full_name\":\"@tweepytest\\/tweeps-88\",\"created_at\":\"Mon Jan 20 18:54:59 +0000 2014\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}}]" } } } ] }tweepy-3.5.0/cassettes/testlistsmemberships.json000066400000000000000000000136301265716604700222430ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/memberships.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:24 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9691e60cbc207800b997dd1874db5b33" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "e67ab86579c43af0" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "96" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008453774829; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:24 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:24 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380984" ] }, "body": { "string": "{\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\",\"lists\":[]}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/memberships.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:09 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c23215f1778dd15e92de5abc2f174e82" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401009" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "96" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:09 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010926385814; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:09 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "226ed7348970efa2" ] }, "body": { "string": "{\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\",\"lists\":[]}" } } } ] }tweepy-3.5.0/cassettes/testlistssubscriptions.json000066400000000000000000000136341265716604700226400ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/subscriptions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:25 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "820363b46792cbf04e83a9b8db036134" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "aa8a6e96960d1c2d" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "96" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008516252142; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:25 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:25 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380985" ] }, "body": { "string": "{\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\",\"lists\":[]}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/subscriptions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:09 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "112c5355a6d0f38d180c63f2030234e6" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401009" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "96" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:09 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010961813999; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:09 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "ea3dcfd594ff79de" ] }, "body": { "string": "{\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\",\"lists\":[]}" } } } ] }tweepy-3.5.0/cassettes/testlistsubscribers.json000066400000000000000000001140171265716604700220710ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/subscribers.json?slug=stars&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:25 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1634facff18d8b9e1042ad783aabe7f5" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "b35030ee1850cdcb" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "14833" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008551640273; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:25 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:25 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380985" ] }, "body": { "string": "{\"users\":[{\"id\":29342013,\"id_str\":\"29342013\",\"name\":\"Victor Youk\",\"screen_name\":\"RazorConcepts\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Tue Apr 07 00:43:46 +0000 2009\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":146,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Dec 18 17:58:45 +0000 2011\",\"id\":148462215962431489,\"id_str\":\"148462215962431489\",\"text\":\"10 Must Have Games of 2011: Holiday Buying Guide #TLDGiftGuide via @tldtoday http:\\/\\/t.co\\/PqIwXxgD\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"TLDGiftGuide\",\"indices\":[49,62]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tldtoday\",\"name\":\"Jonathan Morrison\",\"id\":126124275,\"id_str\":\"126124275\",\"indices\":[67,76]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PqIwXxgD\",\"expanded_url\":\"http:\\/\\/bit.ly\\/tYobBH\",\"display_url\":\"bit.ly\\/tYobBH\",\"indices\":[77,97]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1453851247\\/untitled_normal.PNG\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1453851247\\/untitled_normal.PNG\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":198183079,\"id_str\":\"198183079\",\"name\":\"Keyur Parikh\",\"screen_name\":\"parikhkeyur\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_count\":1,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Sun Oct 03 15:52:04 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-14400,\"time_zone\":\"Atlantic Time (Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":0,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000396001899\\/07c48dab2db75b9b10a15d912ecf87ca_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000396001899\\/07c48dab2db75b9b10a15d912ecf87ca_normal.png\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":20568161,\"id_str\":\"20568161\",\"name\":\"user5idd\",\"screen_name\":\"user5idd\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_count\":1,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 11 03:20:12 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/77421005\\/PA210009_sm_crop_normal.JPG\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/77421005\\/PA210009_sm_crop_normal.JPG\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":95865857,\"id_str\":\"95865857\",\"name\":\"\\u30b7\\u30f3\",\"screen_name\":\"edoaru06\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\u65e5\\u3005\\u306e\\u611f\\u3058\\u305f\\u4e8b\\u3001\\u601d\\u3063\\u305f\\u4e8b\\u3001\\u8003\\u3048\\u305f\\u4e8b\\u306a\\u3069\\u3092\\u545f\\u3044\\u3066\\u304a\\u308a\\u307e\\u3059\\uff3e\\uff3e\\n\\u8208\\u5473\\u95a2\\u5fc3 : Python\\/Ruby\\/Web\\u95a2\\u9023\\/\\u30cf\\u30ac\\u30ec\\u30f3\\/\\u30dd\\u30eb\\u30ce\\u30b0\\u30e9\\u30d5\\u30a3\\u30c6\\u30a3\\/\\u30a2\\u30f3\\u30c0\\u30fc\\u30b0\\u30e9\\u30d5\\/IT\\u60c5\\u5831\\/\\u30e9\\u30a4\\u30d5\\u30cf\\u30c3\\u30af\\/\\u30e9\\u30a4\\u30d5\\u30ed\\u30b0\\/Evernote\\/Toodledo\\/MBA\\/\\u30de\\u30a4\\u30f3\\u30c9\\u30de\\u30c3\\u30d7\\/\\u547c\\u5438\\u6cd5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":196,\"friends_count\":401,\"listed_count\":7,\"created_at\":\"Thu Dec 10 09:35:49 +0000 2009\",\"favourites_count\":34,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6919,\"lang\":\"ja\",\"status\":{\"created_at\":\"Sat Nov 29 21:22:56 +0000 2014\",\"id\":538805334438330370,\"id_str\":\"538805334438330370\",\"text\":\"\\u30c7\\u30a4\\u30ea\\u30fc YOK is out! http:\\/\\/t.co\\/EicFiySCe6 Stories via @grazia_fr @ken50106 @metakit\",\"source\":\"\\u003ca href=\\\"http:\\/\\/paper.li\\\" rel=\\\"nofollow\\\"\\u003ePaper.li\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"grazia_fr\",\"name\":\"Grazia France\",\"id\":60531346,\"id_str\":\"60531346\",\"indices\":[52,62]},{\"screen_name\":\"ken50106\",\"name\":\"ken50106\",\"id\":71487380,\"id_str\":\"71487380\",\"indices\":[63,72]},{\"screen_name\":\"metakit\",\"name\":\"\\u6a58\\u5ddd\\u5e78\\u592b(\\u304d\\u3064\\u304b\\u308f\\u3086\\u304d\\u304a)\",\"id\":31048937,\"id_str\":\"31048937\",\"indices\":[73,81]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EicFiySCe6\",\"expanded_url\":\"http:\\/\\/paper.li\\/edoaru06\",\"display_url\":\"paper.li\\/edoaru06\",\"indices\":[17,39]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/428917475967647745\\/k7QKWIlK_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/428917475967647745\\/k7QKWIlK_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/95865857\\/1399642440\",\"profile_link_color\":\"55FF00\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":126201471,\"id_str\":\"126201471\",\"name\":\"howawong_mother_app\",\"screen_name\":\"howawong_ma\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/fe1I0MsDyM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fe1I0MsDyM\",\"expanded_url\":\"http:\\/\\/www.motherapp.com\",\"display_url\":\"motherapp.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 25 03:43:56 +0000 2010\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":130,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Oct 18 04:34:03 +0000 2011\",\"id\":126154047609765888,\"id_str\":\"126154047609765888\",\"text\":\"Surface Mount Machine http:\\/\\/t.co\\/AiqAEu3L\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AiqAEu3L\",\"expanded_url\":\"http:\\/\\/shar.es\\/bswpf\",\"display_url\":\"shar.es\\/bswpf\",\"indices\":[22,42]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/773733372\\/motherapp_twitter6_bigger_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/773733372\\/motherapp_twitter6_bigger_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16557165,\"id_str\":\"16557165\",\"name\":\"OyvindM\",\"screen_name\":\"OyvindM\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Thu Oct 02 09:14:15 +0000 2008\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Oct 02 09:18:06 +0000 2008\",\"id\":943051394,\"id_str\":\"943051394\",\"text\":\"test\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_2_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_2_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":120203330,\"id_str\":\"120203330\",\"name\":\"Say No to Boredom!!\",\"screen_name\":\"sweetdeals4me\",\"location\":\"The World Wide Web\",\"profile_location\":null,\"description\":\"Take a little break from all your tweeting! Do something fun! Hope I can help!\",\"url\":\"http:\\/\\/t.co\\/ZTflwB3Uxk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZTflwB3Uxk\",\"expanded_url\":\"http:\\/\\/saynotoboredom.wordpress.com\\/\",\"display_url\":\"saynotoboredom.wordpress.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":463,\"friends_count\":1427,\"listed_count\":5,\"created_at\":\"Fri Mar 05 19:43:54 +0000 2010\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":651,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Apr 26 20:06:43 +0000 2013\",\"id\":327876415213170688,\"id_str\":\"327876415213170688\",\"text\":\"Rage on with my referral code zyv57032 Apr 26 08:06:27 PM #rageofbahamut @rageofbahamut\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"rageofbahamut\",\"indices\":[58,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RageofBahamut\",\"name\":\"Rage of Bahamut\",\"id\":501578739,\"id_str\":\"501578739\",\"indices\":[73,87]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/81010718\\/mqpro_fadedblocks.br.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/81010718\\/mqpro_fadedblocks.br.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2325857545\\/cljkmz70khh0vqxyhqhy_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2325857545\\/cljkmz70khh0vqxyhqhy_normal.jpeg\",\"profile_link_color\":\"888888\",\"profile_sidebar_border_color\":\"888888\",\"profile_sidebar_fill_color\":\"DDDDDD\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/subscribers.json?owner_screen_name=applepie&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:10 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5fba244eb06119d5580fc16416136567" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401009" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "14757" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:09 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740010997833759; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:10 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "611ab16a0d404e58" ] }, "body": { "string": "{\"users\":[{\"id\":29342013,\"id_str\":\"29342013\",\"name\":\"Victor Youk\",\"screen_name\":\"RazorConcepts\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":16,\"friends_count\":18,\"listed_count\":0,\"created_at\":\"Tue Apr 07 00:43:46 +0000 2009\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":146,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Dec 18 17:58:45 +0000 2011\",\"id\":148462215962431489,\"id_str\":\"148462215962431489\",\"text\":\"10 Must Have Games of 2011: Holiday Buying Guide #TLDGiftGuide via @tldtoday http:\\/\\/t.co\\/PqIwXxgD\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"TLDGiftGuide\",\"indices\":[49,62]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"tldtoday\",\"name\":\"Jonathan Morrison\",\"id\":126124275,\"id_str\":\"126124275\",\"indices\":[67,76]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PqIwXxgD\",\"expanded_url\":\"http:\\/\\/bit.ly\\/tYobBH\",\"display_url\":\"bit.ly\\/tYobBH\",\"indices\":[77,97]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1453851247\\/untitled_normal.PNG\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1453851247\\/untitled_normal.PNG\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":198183079,\"id_str\":\"198183079\",\"name\":\"Keyur Parikh\",\"screen_name\":\"parikhkeyur\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_count\":1,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Sun Oct 03 15:52:04 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-14400,\"time_zone\":\"Atlantic Time (Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":0,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000396001899\\/07c48dab2db75b9b10a15d912ecf87ca_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000396001899\\/07c48dab2db75b9b10a15d912ecf87ca_normal.png\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":20568161,\"id_str\":\"20568161\",\"name\":\"user5idd\",\"screen_name\":\"user5idd\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_count\":1,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 11 03:20:12 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":698,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/77421005\\/PA210009_sm_crop_normal.JPG\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/77421005\\/PA210009_sm_crop_normal.JPG\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":95865857,\"id_str\":\"95865857\",\"name\":\"\\u30b7\\u30f3\",\"screen_name\":\"edoaru06\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\u65e5\\u3005\\u306e\\u611f\\u3058\\u305f\\u4e8b\\u3001\\u601d\\u3063\\u305f\\u4e8b\\u3001\\u8003\\u3048\\u305f\\u4e8b\\u306a\\u3069\\u3092\\u545f\\u3044\\u3066\\u304a\\u308a\\u307e\\u3059\\uff3e\\uff3e\\n\\u8208\\u5473\\u95a2\\u5fc3 : Python\\/Ruby\\/Web\\u95a2\\u9023\\/\\u30cf\\u30ac\\u30ec\\u30f3\\/\\u30dd\\u30eb\\u30ce\\u30b0\\u30e9\\u30d5\\u30a3\\u30c6\\u30a3\\/\\u30a2\\u30f3\\u30c0\\u30fc\\u30b0\\u30e9\\u30d5\\/IT\\u60c5\\u5831\\/\\u30e9\\u30a4\\u30d5\\u30cf\\u30c3\\u30af\\/\\u30e9\\u30a4\\u30d5\\u30ed\\u30b0\\/Evernote\\/Toodledo\\/MBA\\/\\u30de\\u30a4\\u30f3\\u30c9\\u30de\\u30c3\\u30d7\\/\\u547c\\u5438\\u6cd5\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":196,\"friends_count\":401,\"listed_count\":7,\"created_at\":\"Thu Dec 10 09:35:49 +0000 2009\",\"favourites_count\":34,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6920,\"lang\":\"ja\",\"status\":{\"created_at\":\"Sun Nov 30 21:23:00 +0000 2014\",\"id\":539167736224837632,\"id_str\":\"539167736224837632\",\"text\":\"\\u30c7\\u30a4\\u30ea\\u30fc YOK is out! http:\\/\\/t.co\\/EicFiySCe6 Stories via @gamella @taba_tea\",\"source\":\"\\u003ca href=\\\"http:\\/\\/paper.li\\\" rel=\\\"nofollow\\\"\\u003ePaper.li\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gamella\",\"name\":\"gamella\",\"id\":6708962,\"id_str\":\"6708962\",\"indices\":[52,60]},{\"screen_name\":\"taba_tea\",\"name\":\"\\u30bf\\u30d0\\u30c6\\u30a3 \\u30d3\\u30e5\\u30fc\\u30c6\\u30a3\\u30d5\\u30eb\\u30cf\\u30df\\u30f3\\u30b0\\u30d0\\u30fc\\u30c9\",\"id\":91345002,\"id_str\":\"91345002\",\"indices\":[61,70]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EicFiySCe6\",\"expanded_url\":\"http:\\/\\/paper.li\\/edoaru06\",\"display_url\":\"paper.li\\/edoaru06\",\"indices\":[17,39]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/428917475967647745\\/k7QKWIlK_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/428917475967647745\\/k7QKWIlK_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/95865857\\/1399642440\",\"profile_link_color\":\"55FF00\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":126201471,\"id_str\":\"126201471\",\"name\":\"howawong_mother_app\",\"screen_name\":\"howawong_ma\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/fe1I0MsDyM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fe1I0MsDyM\",\"expanded_url\":\"http:\\/\\/www.motherapp.com\",\"display_url\":\"motherapp.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":3,\"listed_count\":0,\"created_at\":\"Thu Mar 25 03:43:56 +0000 2010\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":130,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Oct 18 04:34:03 +0000 2011\",\"id\":126154047609765888,\"id_str\":\"126154047609765888\",\"text\":\"Surface Mount Machine http:\\/\\/t.co\\/AiqAEu3L\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AiqAEu3L\",\"expanded_url\":\"http:\\/\\/shar.es\\/bswpf\",\"display_url\":\"shar.es\\/bswpf\",\"indices\":[22,42]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/773733372\\/motherapp_twitter6_bigger_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/773733372\\/motherapp_twitter6_bigger_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16557165,\"id_str\":\"16557165\",\"name\":\"OyvindM\",\"screen_name\":\"OyvindM\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Thu Oct 02 09:14:15 +0000 2008\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Oct 02 09:18:06 +0000 2008\",\"id\":943051394,\"id_str\":\"943051394\",\"text\":\"test\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_2_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_2_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":120203330,\"id_str\":\"120203330\",\"name\":\"Say No to Boredom!!\",\"screen_name\":\"sweetdeals4me\",\"location\":\"The World Wide Web\",\"profile_location\":null,\"description\":\"Take a little break from all your tweeting! Do something fun! Hope I can help!\",\"url\":\"http:\\/\\/t.co\\/ZTflwB3Uxk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZTflwB3Uxk\",\"expanded_url\":\"http:\\/\\/saynotoboredom.wordpress.com\\/\",\"display_url\":\"saynotoboredom.wordpress.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":463,\"friends_count\":1427,\"listed_count\":5,\"created_at\":\"Fri Mar 05 19:43:54 +0000 2010\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":651,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Apr 26 20:06:43 +0000 2013\",\"id\":327876415213170688,\"id_str\":\"327876415213170688\",\"text\":\"Rage on with my referral code zyv57032 Apr 26 08:06:27 PM #rageofbahamut @rageofbahamut\",\"source\":\"\\u003ca href=\\\"https:\\/\\/dev.twitter.com\\/docs\\/tfw\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Websites\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"rageofbahamut\",\"indices\":[58,72]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RageofBahamut\",\"name\":\"Rage of Bahamut\",\"id\":501578739,\"id_str\":\"501578739\",\"indices\":[73,87]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/81010718\\/mqpro_fadedblocks.br.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/81010718\\/mqpro_fadedblocks.br.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2325857545\\/cljkmz70khh0vqxyhqhy_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2325857545\\/cljkmz70khh0vqxyhqhy_normal.jpeg\",\"profile_link_color\":\"888888\",\"profile_sidebar_border_color\":\"888888\",\"profile_sidebar_fill_color\":\"DDDDDD\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testlisttimeline.json000066400000000000000000004667511265716604700213700ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/statuses.json?slug=stars&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:26 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9e17a07a65c07c760946447e06120244" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "c23925ec04bff9e5" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "75505" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008620391671; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:26 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:26 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380986" ] }, "body": { "string": "[{\"created_at\":\"Sun Nov 30 20:35:03 +0000 2014\",\"id\":539155671640326145,\"id_str\":\"539155671640326145\",\"text\":\"Quest complete, at the second place we looked. That was way too easy. #Parsnipwatch2014\",\"source\":\"\\u003ca href=\\\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.dwdesign.tweetings&hl=en\\\" rel=\\\"nofollow\\\"\\u003eTweetings for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":16,\"entities\":{\"hashtags\":[{\"text\":\"Parsnipwatch2014\",\"indices\":[70,87]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:24:18 +0000 2014\",\"id\":539152966138097665,\"id_str\":\"539152966138097665\",\"text\":\"We are on a quest for parsnips. #Parsnipwatch2014\",\"source\":\"\\u003ca href=\\\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.dwdesign.tweetings&hl=en\\\" rel=\\\"nofollow\\\"\\u003eTweetings for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":9,\"favorite_count\":60,\"entities\":{\"hashtags\":[{\"text\":\"Parsnipwatch2014\",\"indices\":[32,49]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:16:29 +0000 2014\",\"id\":539150995901927424,\"id_str\":\"539150995901927424\",\"text\":\"RT @RikerGoogling: replicator accident treatment chocolate hand\",\"source\":\"\\u003ca href=\\\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.dwdesign.tweetings&hl=en\\\" rel=\\\"nofollow\\\"\\u003eTweetings for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 20:15:52 +0000 2014\",\"id\":539150843769933825,\"id_str\":\"539150843769933825\",\"text\":\"replicator accident treatment chocolate hand\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2341337263,\"id_str\":\"2341337263\",\"name\":\"Riker Googling\",\"screen_name\":\"RikerGoogling\",\"location\":\"Holodeck-4\",\"profile_location\":null,\"description\":\"It's okay, I'm in incognito mode. (By @JoeSondow) whatthehell@rikergoogling.net\",\"url\":\"http:\\/\\/t.co\\/uhlJpyGffu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uhlJpyGffu\",\"expanded_url\":\"http:\\/\\/rikergoogling.net\",\"display_url\":\"rikergoogling.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43291,\"friends_count\":2,\"listed_count\":429,\"created_at\":\"Thu Feb 13 03:42:49 +0000 2014\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":319,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"5D7895\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/433816379326595072\\/erB6obTD.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/433816379326595072\\/erB6obTD.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/499021253953347585\\/COG26p9r_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/499021253953347585\\/COG26p9r_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2341337263\\/1392264189\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":97,\"favorite_count\":147,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":97,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RikerGoogling\",\"name\":\"Riker Googling\",\"id\":2341337263,\"id_str\":\"2341337263\",\"indices\":[3,17]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:12:14 +0000 2014\",\"id\":539149928941899776,\"id_str\":\"539149928941899776\",\"text\":\"\\u201c@Nym146: @JewelStaite you come across as a little up yourself. Very disappointing.\\u201d\\n\\nThat's me.. disappointingly up myself. Take care!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539130771970469889,\"in_reply_to_status_id_str\":\"539130771970469889\",\"in_reply_to_user_id\":2524277999,\"in_reply_to_user_id_str\":\"2524277999\",\"in_reply_to_screen_name\":\"Nym146\",\"user\":{\"id\":34175976,\"id_str\":\"34175976\",\"name\":\"Jewel Staite\",\"screen_name\":\"JewelStaite\",\"location\":\"\",\"profile_location\":null,\"description\":\"I play make-believe for a living. Stay in school\",\"url\":\"http:\\/\\/t.co\\/7BHHhn1DBX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7BHHhn1DBX\",\"expanded_url\":\"http:\\/\\/www.happyopu.net\",\"display_url\":\"happyopu.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":241938,\"friends_count\":237,\"listed_count\":9143,\"created_at\":\"Wed Apr 22 04:01:43 +0000 2009\",\"favourites_count\":1555,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3090,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B80093\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/512319693315932162\\/Y0y7ul-N_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/512319693315932162\\/Y0y7ul-N_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/34175976\\/1413075876\",\"profile_link_color\":\"009AB9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5,\"favorite_count\":109,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Nym146\",\"name\":\"Nym\",\"id\":2524277999,\"id_str\":\"2524277999\",\"indices\":[1,8]},{\"screen_name\":\"JewelStaite\",\"name\":\"Jewel Staite\",\"id\":34175976,\"id_str\":\"34175976\",\"indices\":[10,22]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:49:56 +0000 2014\",\"id\":539144316787380225,\"id_str\":\"539144316787380225\",\"text\":\"Time is running out - College Students! NOW is your chance to be inspired! http:\\/\\/t.co\\/1DLq20AdK3\\/s\\/w9G7 @ISFCollege\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":58233603,\"id_str\":\"58233603\",\"name\":\"ian somerhalder\",\"screen_name\":\"iansomerhalder\",\"location\":\"Atlanta, NYC, Venice... \",\"profile_location\":null,\"description\":\"Dead guy on LOST now undead on The Vampire Diaries.Proud Co-Founder of The Ian Somerhalder Foundation. Still happily contemplating Man's existential dilemma...\",\"url\":\"http:\\/\\/t.co\\/buGrmns4hw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/buGrmns4hw\",\"expanded_url\":\"http:\\/\\/www.twitter.com\\/iansomerhalder\",\"display_url\":\"twitter.com\\/iansomerhalder\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5447944,\"friends_count\":604,\"listed_count\":38180,\"created_at\":\"Sun Jul 19 16:36:43 +0000 2009\",\"favourites_count\":12,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8013,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000598779913\\/343e53f9674410d786cab7c8fd8c4688_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000598779913\\/343e53f9674410d786cab7c8fd8c4688_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":826,\"favorite_count\":1785,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ISFCollege\",\"name\":\"ISF College #ISF\",\"id\":457855550,\"id_str\":\"457855550\",\"indices\":[105,116]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1DLq20AdK3\",\"expanded_url\":\"http:\\/\\/tinyurl.com\\/pyytand\",\"display_url\":\"tinyurl.com\\/pyytand\",\"indices\":[75,97]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:10:50 +0000 2014\",\"id\":539134474886189057,\"id_str\":\"539134474886189057\",\"text\":\"RT @DevilsGateBrew: Catching up \\u2013 Porter, Pompey, and\\u00a0W00tstout http:\\/\\/t.co\\/4ZCaJGuweu\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 19:08:42 +0000 2014\",\"id\":539133939210678273,\"id_str\":\"539133939210678273\",\"text\":\"Catching up \\u2013 Porter, Pompey, and\\u00a0W00tstout http:\\/\\/t.co\\/4ZCaJGuweu\",\"source\":\"\\u003ca href=\\\"http:\\/\\/publicize.wp.com\\/\\\" rel=\\\"nofollow\\\"\\u003eWordPress.com\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":801580663,\"id_str\":\"801580663\",\"name\":\"Devil's Gate\",\"screen_name\":\"DevilsGateBrew\",\"location\":\"The Internet\",\"profile_location\":null,\"description\":\"Homebrewing by Wil Wheaton.\",\"url\":\"http:\\/\\/t.co\\/iOPqXDHO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/iOPqXDHO\",\"expanded_url\":\"http:\\/\\/devilsgatebrewing.com\",\"display_url\":\"devilsgatebrewing.com\",\"indices\":[0,20]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4037,\"friends_count\":4,\"listed_count\":81,\"created_at\":\"Tue Sep 04 01:26:35 +0000 2012\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":454,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2574716284\\/pjt9nyib389mjwn727yt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2574716284\\/pjt9nyib389mjwn727yt_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5,\"favorite_count\":12,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4ZCaJGuweu\",\"expanded_url\":\"http:\\/\\/wp.me\\/p2Iwnt-3K\",\"display_url\":\"wp.me\\/p2Iwnt-3K\",\"indices\":[44,66]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":5,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DevilsGateBrew\",\"name\":\"Devil's Gate\",\"id\":801580663,\"id_str\":\"801580663\",\"indices\":[3,18]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4ZCaJGuweu\",\"expanded_url\":\"http:\\/\\/wp.me\\/p2Iwnt-3K\",\"display_url\":\"wp.me\\/p2Iwnt-3K\",\"indices\":[64,86]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:43:36 +0000 2014\",\"id\":539127621632925696,\"id_str\":\"539127621632925696\",\"text\":\"3 hours of knee busting, elbow smacking awesomeness at Toronto's incredible CJ's Skatepark & school...I still suck, but loving it even more!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":5802762,\"id_str\":\"5802762\",\"name\":\"David Hewlett\",\"screen_name\":\"dhewlett\",\"location\":\"Toronto, Canada\",\"profile_location\":null,\"description\":\"Daddy-Nerd, Actor-Nerd, Writer\\/Director-Nerd\\u2026and all round Geek! Yes, I'm also that irritating guy from Stargate Atlantis.\",\"url\":\"https:\\/\\/t.co\\/Z71ChbC3Re\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Z71ChbC3Re\",\"expanded_url\":\"https:\\/\\/www.youtube.com\\/user\\/h0rrid\",\"display_url\":\"youtube.com\\/user\\/h0rrid\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":93149,\"friends_count\":485,\"listed_count\":3945,\"created_at\":\"Sun May 06 06:53:21 +0000 2007\",\"favourites_count\":9,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6472,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/644512199\\/wideye_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/644512199\\/wideye_normal.jpg\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":17,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:40:10 +0000 2014\",\"id\":539126759736999937,\"id_str\":\"539126759736999937\",\"text\":\"\\u201c@NathanFillion: Thank you Nemo and Marion for an excellent evening at the @blackfrogeatery.\\u201d\\n\\nMARIAN! Curse you, autocorrect.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":31353077,\"id_str\":\"31353077\",\"name\":\"Nathan Fillion\",\"screen_name\":\"NathanFillion\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"It costs nothing to say something kind. Even less to shut up altogether.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2710354,\"friends_count\":526,\"listed_count\":37311,\"created_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"favourites_count\":193,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7873,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":113,\"favorite_count\":383,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NathanFillion\",\"name\":\"Nathan Fillion\",\"id\":31353077,\"id_str\":\"31353077\",\"indices\":[1,15]},{\"screen_name\":\"blackfrogeatery\",\"name\":\"Black Frog\",\"id\":415921905,\"id_str\":\"415921905\",\"indices\":[75,91]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:38:38 +0000 2014\",\"id\":539126372006772736,\"id_str\":\"539126372006772736\",\"text\":\"\\\"@goMarinaSirtis: Gee, what's @reneauberjonois doing to our notifications lol, so many, great tho! Popular guy :)\\\" He's one of my fave ppl!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1323187164,\"id_str\":\"1323187164\",\"name\":\"Marina Sirtis\",\"screen_name\":\"Marina_Sirtis\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Twitter Account For Actress Marina Sirtis. No name calling or disrespect to anyone please.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111778,\"friends_count\":90,\"listed_count\":1775,\"created_at\":\"Tue Apr 02 20:17:13 +0000 2013\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5173,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":57,\"favorite_count\":158,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"goMarinaSirtis\",\"name\":\"goMarinaSirtis.com\",\"id\":471546667,\"id_str\":\"471546667\",\"indices\":[1,16]},{\"screen_name\":\"reneauberjonois\",\"name\":\"Rene Auberjonois\",\"id\":93465778,\"id_str\":\"93465778\",\"indices\":[30,46]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:35:59 +0000 2014\",\"id\":539125705813295104,\"id_str\":\"539125705813295104\",\"text\":\"RT @vibixa_weetabix: @ITVTonight #Weetabix axing 105 jobs @vibixa Weetabix owned carton company, vibixa very profitable but just above min\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1323187164,\"id_str\":\"1323187164\",\"name\":\"Marina Sirtis\",\"screen_name\":\"Marina_Sirtis\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Twitter Account For Actress Marina Sirtis. No name calling or disrespect to anyone please.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111778,\"friends_count\":90,\"listed_count\":1775,\"created_at\":\"Tue Apr 02 20:17:13 +0000 2013\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5173,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 27 20:32:45 +0000 2014\",\"id\":538067926872784897,\"id_str\":\"538067926872784897\",\"text\":\"@ITVTonight #Weetabix axing 105 jobs @vibixa Weetabix owned carton company, vibixa very profitable but just above minimum redundancy\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Windows Phone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":351615284,\"in_reply_to_user_id_str\":\"351615284\",\"in_reply_to_screen_name\":\"ITVTonight\",\"user\":{\"id\":2874383651,\"id_str\":\"2874383651\",\"name\":\"Vibixa Worker\",\"screen_name\":\"vibixa_weetabix\",\"location\":\"Vibixa\",\"profile_location\":null,\"description\":\"105 vibixa employees seeking a fair redundancy package after parent company Weetabix announced it is to close its very profitable carton printing company\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":39,\"friends_count\":80,\"listed_count\":1,\"created_at\":\"Wed Nov 12 22:46:17 +0000 2014\",\"favourites_count\":16,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":167,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/532670772758986753\\/slrbTzuy_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/532670772758986753\\/slrbTzuy_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3,\"favorite_count\":1,\"entities\":{\"hashtags\":[{\"text\":\"Weetabix\",\"indices\":[12,21]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ITVTonight\",\"name\":\"Tonight\",\"id\":351615284,\"id_str\":\"351615284\",\"indices\":[0,11]},{\"screen_name\":\"vibixa\",\"name\":\"Tru\",\"id\":1522577395,\"id_str\":\"1522577395\",\"indices\":[37,44]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":3,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Weetabix\",\"indices\":[33,42]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vibixa_weetabix\",\"name\":\"Vibixa Worker\",\"id\":2874383651,\"id_str\":\"2874383651\",\"indices\":[3,19]},{\"screen_name\":\"ITVTonight\",\"name\":\"Tonight\",\"id\":351615284,\"id_str\":\"351615284\",\"indices\":[21,32]},{\"screen_name\":\"vibixa\",\"name\":\"Tru\",\"id\":1522577395,\"id_str\":\"1522577395\",\"indices\":[58,65]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:31:49 +0000 2014\",\"id\":539124659514793984,\"id_str\":\"539124659514793984\",\"text\":\"Thank you Nemo and Marion for an excellent evening at the @blackfrogeatery. Always good to see old friends.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":31353077,\"id_str\":\"31353077\",\"name\":\"Nathan Fillion\",\"screen_name\":\"NathanFillion\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"It costs nothing to say something kind. Even less to shut up altogether.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2710354,\"friends_count\":526,\"listed_count\":37311,\"created_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"favourites_count\":193,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7873,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":99,\"favorite_count\":344,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"blackfrogeatery\",\"name\":\"Black Frog\",\"id\":415921905,\"id_str\":\"415921905\",\"indices\":[58,74]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:28:03 +0000 2014\",\"id\":539123710691901440,\"id_str\":\"539123710691901440\",\"text\":\"Is it mean that I'm glad Costa can't play Wednesday? #anythinghelps.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1323187164,\"id_str\":\"1323187164\",\"name\":\"Marina Sirtis\",\"screen_name\":\"Marina_Sirtis\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Twitter Account For Actress Marina Sirtis. No name calling or disrespect to anyone please.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":111778,\"friends_count\":90,\"listed_count\":1775,\"created_at\":\"Tue Apr 02 20:17:13 +0000 2013\",\"favourites_count\":17,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5173,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3,\"favorite_count\":18,\"entities\":{\"hashtags\":[{\"text\":\"anythinghelps\",\"indices\":[53,67]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:22:05 +0000 2014\",\"id\":539122206576766976,\"id_str\":\"539122206576766976\",\"text\":\"RT @TrivWorks: You're coming @hodgman's 12\\/7 @BellHouseNY trivia night to benefit @826NYC, right? http:\\/\\/t.co\\/kWAPjMTo1W http:\\/\\/t.co\\/Uk0J9K\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":14348594,\"id_str\":\"14348594\",\"name\":\"John Hodgman\",\"screen_name\":\"hodgman\",\"location\":\"Brooklyn\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/M6Hd3A0Off\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/M6Hd3A0Off\",\"expanded_url\":\"http:\\/\\/www.johnhodgman.com\",\"display_url\":\"johnhodgman.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1003943,\"friends_count\":1913,\"listed_count\":16854,\"created_at\":\"Thu Apr 10 04:55:57 +0000 2008\",\"favourites_count\":13685,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":29725,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0B191A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/337514795\\/ferret_at_the_chateau_small.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/337514795\\/ferret_at_the_chateau_small.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423577280745439232\\/bg3_uk5V_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423577280745439232\\/bg3_uk5V_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14348594\\/1357219412\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"394FBF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 14:34:41 +0000 2014\",\"id\":539064982047293441,\"id_str\":\"539064982047293441\",\"text\":\"You're coming @hodgman's 12\\/7 @BellHouseNY trivia night to benefit @826NYC, right? http:\\/\\/t.co\\/kWAPjMTo1W http:\\/\\/t.co\\/Uk0J9K6YB5 #Brooklyn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":72627052,\"id_str\":\"72627052\",\"name\":\"TrivWorks\",\"screen_name\":\"TrivWorks\",\"location\":\"Brooklyn, NY\",\"profile_location\":null,\"description\":\"Creators of corporate trivia events | Producers of NYC's biggest trivia nights @BellHouseNY w\\/ @PatKiernan | Tweeters of trivia, cultural commentary & bad puns\",\"url\":\"http:\\/\\/t.co\\/ZIZMZfgwqN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZIZMZfgwqN\",\"expanded_url\":\"http:\\/\\/www.TrivWorks.com\",\"display_url\":\"TrivWorks.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5514,\"friends_count\":3192,\"listed_count\":138,\"created_at\":\"Tue Sep 08 18:30:42 +0000 2009\",\"favourites_count\":10471,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":40289,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/890326403\\/29f631e1b59197dbae91843320d70b4a.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/890326403\\/29f631e1b59197dbae91843320d70b4a.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/951191853\\/TrivWorks.Logo_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/951191853\\/TrivWorks.Logo_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/72627052\\/1353038925\",\"profile_link_color\":\"807E8F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"3E8AE6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":8,\"favorite_count\":7,\"entities\":{\"hashtags\":[{\"text\":\"Brooklyn\",\"indices\":[129,138]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"hodgman\",\"name\":\"John Hodgman\",\"id\":14348594,\"id_str\":\"14348594\",\"indices\":[14,22]},{\"screen_name\":\"BellHouseNY\",\"name\":\"The Bell House\",\"id\":17387997,\"id_str\":\"17387997\",\"indices\":[30,42]},{\"screen_name\":\"826NYC\",\"name\":\"826NYC\",\"id\":29224261,\"id_str\":\"29224261\",\"indices\":[67,74]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kWAPjMTo1W\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1t8wPeN\",\"display_url\":\"bit.ly\\/1t8wPeN\",\"indices\":[83,105]}],\"media\":[{\"id\":524582007855415296,\"id_str\":\"524582007855415296\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"url\":\"http:\\/\\/t.co\\/Uk0J9K6YB5\",\"display_url\":\"pic.twitter.com\\/Uk0J9K6YB5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TrivWorks\\/status\\/524582008773943296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":581,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":340,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":193,\"resize\":\"fit\"}},\"source_status_id\":524582008773943296,\"source_status_id_str\":\"524582008773943296\"}]},\"extended_entities\":{\"media\":[{\"id\":524582007855415296,\"id_str\":\"524582007855415296\",\"indices\":[106,128],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"url\":\"http:\\/\\/t.co\\/Uk0J9K6YB5\",\"display_url\":\"pic.twitter.com\\/Uk0J9K6YB5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TrivWorks\\/status\\/524582008773943296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":581,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":340,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":193,\"resize\":\"fit\"}},\"source_status_id\":524582008773943296,\"source_status_id_str\":\"524582008773943296\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":8,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Brooklyn\",\"indices\":[139,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TrivWorks\",\"name\":\"TrivWorks\",\"id\":72627052,\"id_str\":\"72627052\",\"indices\":[3,13]},{\"screen_name\":\"hodgman\",\"name\":\"John Hodgman\",\"id\":14348594,\"id_str\":\"14348594\",\"indices\":[29,37]},{\"screen_name\":\"BellHouseNY\",\"name\":\"The Bell House\",\"id\":17387997,\"id_str\":\"17387997\",\"indices\":[45,57]},{\"screen_name\":\"826NYC\",\"name\":\"826NYC\",\"id\":29224261,\"id_str\":\"29224261\",\"indices\":[82,89]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kWAPjMTo1W\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1t8wPeN\",\"display_url\":\"bit.ly\\/1t8wPeN\",\"indices\":[98,120]}],\"media\":[{\"id\":524582007855415296,\"id_str\":\"524582007855415296\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"url\":\"http:\\/\\/t.co\\/Uk0J9K6YB5\",\"display_url\":\"pic.twitter.com\\/Uk0J9K6YB5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TrivWorks\\/status\\/524582008773943296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":581,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":340,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":193,\"resize\":\"fit\"}},\"source_status_id\":524582008773943296,\"source_status_id_str\":\"524582008773943296\"}]},\"extended_entities\":{\"media\":[{\"id\":524582007855415296,\"id_str\":\"524582007855415296\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0ewjonIgAAIauw.jpg\",\"url\":\"http:\\/\\/t.co\\/Uk0J9K6YB5\",\"display_url\":\"pic.twitter.com\\/Uk0J9K6YB5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TrivWorks\\/status\\/524582008773943296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":581,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":340,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":193,\"resize\":\"fit\"}},\"source_status_id\":524582008773943296,\"source_status_id_str\":\"524582008773943296\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:12:23 +0000 2014\",\"id\":539119766439342080,\"id_str\":\"539119766439342080\",\"text\":\"Anyone know where I can get a can of Cougar Gold cheese while I'm in #Seattle?\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitterrific.com\\\" rel=\\\"nofollow\\\"\\u003eTwitterrific\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":50835878,\"id_str\":\"50835878\",\"name\":\"Drew Carey\",\"screen_name\":\"DrewFromTV\",\"location\":\"Los Angeles via Cleveland\",\"profile_location\":null,\"description\":\"The Price Is Right on CBS \\u2022 Stand-Up Comic.\",\"url\":\"http:\\/\\/t.co\\/z4Fq7CgqtM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/z4Fq7CgqtM\",\"expanded_url\":\"http:\\/\\/DrewCarey.com\",\"display_url\":\"DrewCarey.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":659721,\"friends_count\":330,\"listed_count\":13590,\"created_at\":\"Fri Jun 26 00:20:02 +0000 2009\",\"favourites_count\":70,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7958,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/29108354\\/drewfromtv_bg_090704.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/29108354\\/drewfromtv_bg_090704.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458754000892866560\\/AmQvs0gS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458754000892866560\\/AmQvs0gS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/50835878\\/1398211253\",\"profile_link_color\":\"1E26D1\",\"profile_sidebar_border_color\":\"4F4747\",\"profile_sidebar_fill_color\":\"F2EDED\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":9,\"favorite_count\":10,\"entities\":{\"hashtags\":[{\"text\":\"Seattle\",\"indices\":[69,77]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:11:50 +0000 2014\",\"id\":539119628010532864,\"id_str\":\"539119628010532864\",\"text\":\"RT @evanoobrien: Saw #Doubles w\\/ my pal hilarious @mikunelson & adorable @breagrant \\u2014go watch it now! \\u2022\\u2022 http:\\/\\/t.co\\/oG3C1lsF48 \\u2022\\u2022 http:\\/\\/\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":15111389,\"id_str\":\"15111389\",\"name\":\"Brea Grant\",\"screen_name\":\"breagrant\",\"location\":\"the nothing\",\"profile_location\":null,\"description\":\"lucky enough to get to work in the moving picture industry. unlucky enough to bruise easily.\",\"url\":\"http:\\/\\/t.co\\/R03qXJSli1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/R03qXJSli1\",\"expanded_url\":\"http:\\/\\/breagrant.com\",\"display_url\":\"breagrant.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":46440,\"friends_count\":1462,\"listed_count\":2311,\"created_at\":\"Fri Jun 13 20:50:10 +0000 2008\",\"favourites_count\":3009,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":16216,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EBEFF0\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/879970769\\/be98b427757a7727d82f4b2d9410087e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/879970769\\/be98b427757a7727d82f4b2d9410087e.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527151455979859968\\/BvfcVulG_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527151455979859968\\/BvfcVulG_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/15111389\\/1414805478\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 08:26:48 +0000 2014\",\"id\":538972399736070144,\"id_str\":\"538972399736070144\",\"text\":\"Saw #Doubles w\\/ my pal hilarious @mikunelson & adorable @breagrant \\u2014go watch it now! \\u2022\\u2022 http:\\/\\/t.co\\/oG3C1lsF48 \\u2022\\u2022 http:\\/\\/t.co\\/sL602DC3qa\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":37264243,\"id_str\":\"37264243\",\"name\":\"Evan O'Brien\",\"screen_name\":\"evanoobrien\",\"location\":\"LA + NYC\",\"profile_location\":null,\"description\":\"Actor \\u2022 Comedian \\u2022 Coffee \\u2022 #Viva\",\"url\":\"http:\\/\\/t.co\\/VqaY0lvtEH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/VqaY0lvtEH\",\"expanded_url\":\"http:\\/\\/www.evanobrien.com\",\"display_url\":\"evanobrien.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1281,\"friends_count\":67,\"listed_count\":4,\"created_at\":\"Sat May 02 19:31:41 +0000 2009\",\"favourites_count\":1386,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":315,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"CC861D\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000119680399\\/03a70a9a8b11da0718d0d731e7987905.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000119680399\\/03a70a9a8b11da0718d0d731e7987905.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/533048358101733376\\/cQz2nk5-_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/533048358101733376\\/cQz2nk5-_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/37264243\\/1407660818\",\"profile_link_color\":\"2B08F5\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":{\"type\":\"Point\",\"coordinates\":[34.08546486,-118.28420859]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-118.28420859,34.08546486]},\"place\":{\"id\":\"3b77caf94bfc81fe\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3b77caf94bfc81fe.json\",\"place_type\":\"city\",\"name\":\"Los Angeles\",\"full_name\":\"Los Angeles, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.668404,33.704538],[-118.155409,33.704538],[-118.155409,34.337041],[-118.668404,34.337041]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Doubles\",\"indices\":[4,12]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mikunelson\",\"name\":\"Mike Nelson\",\"id\":90497341,\"id_str\":\"90497341\",\"indices\":[33,44]},{\"screen_name\":\"breagrant\",\"name\":\"Brea Grant\",\"id\":15111389,\"id_str\":\"15111389\",\"indices\":[60,70]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oG3C1lsF48\",\"expanded_url\":\"http:\\/\\/youtu.be\\/BD8ckcwh6lw\",\"display_url\":\"youtu.be\\/BD8ckcwh6lw\",\"indices\":[93,115]}],\"media\":[{\"id\":538972397097869312,\"id_str\":\"538972397097869312\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"url\":\"http:\\/\\/t.co\\/sL602DC3qa\",\"display_url\":\"pic.twitter.com\\/sL602DC3qa\",\"expanded_url\":\"http:\\/\\/twitter.com\\/evanoobrien\\/status\\/538972399736070144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538972397097869312,\"id_str\":\"538972397097869312\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"url\":\"http:\\/\\/t.co\\/sL602DC3qa\",\"display_url\":\"pic.twitter.com\\/sL602DC3qa\",\"expanded_url\":\"http:\\/\\/twitter.com\\/evanoobrien\\/status\\/538972399736070144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Doubles\",\"indices\":[21,29]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"evanoobrien\",\"name\":\"Evan O'Brien\",\"id\":37264243,\"id_str\":\"37264243\",\"indices\":[3,15]},{\"screen_name\":\"mikunelson\",\"name\":\"Mike Nelson\",\"id\":90497341,\"id_str\":\"90497341\",\"indices\":[50,61]},{\"screen_name\":\"breagrant\",\"name\":\"Brea Grant\",\"id\":15111389,\"id_str\":\"15111389\",\"indices\":[77,87]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oG3C1lsF48\",\"expanded_url\":\"http:\\/\\/youtu.be\\/BD8ckcwh6lw\",\"display_url\":\"youtu.be\\/BD8ckcwh6lw\",\"indices\":[110,132]}],\"media\":[{\"id\":538972397097869312,\"id_str\":\"538972397097869312\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"url\":\"http:\\/\\/t.co\\/sL602DC3qa\",\"display_url\":\"pic.twitter.com\\/sL602DC3qa\",\"expanded_url\":\"http:\\/\\/twitter.com\\/evanoobrien\\/status\\/538972399736070144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"}},\"source_status_id\":538972399736070144,\"source_status_id_str\":\"538972399736070144\"}]},\"extended_entities\":{\"media\":[{\"id\":538972397097869312,\"id_str\":\"538972397097869312\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3rQiiDCYAArmJx.jpg\",\"url\":\"http:\\/\\/t.co\\/sL602DC3qa\",\"display_url\":\"pic.twitter.com\\/sL602DC3qa\",\"expanded_url\":\"http:\\/\\/twitter.com\\/evanoobrien\\/status\\/538972399736070144\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"large\":{\"w\":640,\"h\":360,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"}},\"source_status_id\":538972399736070144,\"source_status_id_str\":\"538972399736070144\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:04:35 +0000 2014\",\"id\":539117802141917184,\"id_str\":\"539117802141917184\",\"text\":\"Did you know that you can pay what you want (even zero) for my audiobooks? They\\u2019re at http:\\/\\/t.co\\/OCF6chphLr if you\\u2019re interested.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":86,\"favorite_count\":180,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OCF6chphLr\",\"expanded_url\":\"http:\\/\\/wilwheaton.bandcamp.com\",\"display_url\":\"wilwheaton.bandcamp.com\",\"indices\":[86,108]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:03:06 +0000 2014\",\"id\":539117432703422464,\"id_str\":\"539117432703422464\",\"text\":\"#TeamBailey!! RT @BaileyLAKings: Hey @CMPunk you think you can talk smack on my jumbotron? #notinmyhouse http:\\/\\/t.co\\/9AxIc8QuHS\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":27,\"favorite_count\":58,\"entities\":{\"hashtags\":[{\"text\":\"TeamBailey\",\"indices\":[0,11]},{\"text\":\"notinmyhouse\",\"indices\":[91,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BaileyLAKings\",\"name\":\"Bailey LA Kings\",\"id\":205938397,\"id_str\":\"205938397\",\"indices\":[17,31]},{\"screen_name\":\"CMPunk\",\"name\":\"Coach\",\"id\":177345928,\"id_str\":\"177345928\",\"indices\":[37,44]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9AxIc8QuHS\",\"expanded_url\":\"http:\\/\\/youtu.be\\/s0OUXMp0kpg\",\"display_url\":\"youtu.be\\/s0OUXMp0kpg\",\"indices\":[106,128]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 18:00:43 +0000 2014\",\"id\":539116831735181312,\"id_str\":\"539116831735181312\",\"text\":\"RT @nickcarver: I'm told I look like @wilw. This photo should put that to rest. On a related note David Arquette is kind of obnoxious http:\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738603,\"friends_count\":348,\"listed_count\":38022,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52310,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 17:58:37 +0000 2014\",\"id\":539116301247971328,\"id_str\":\"539116301247971328\",\"text\":\"I'm told I look like @wilw. This photo should put that to rest. On a related note David Arquette is kind of obnoxious http:\\/\\/t.co\\/Y7u4NW4yZK\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":17332525,\"id_str\":\"17332525\",\"name\":\"Nick Carver\",\"screen_name\":\"nickcarver\",\"location\":\"Tustin, CA\",\"profile_location\":null,\"description\":\"Professional photographer and instructor in Orange County. Analog film fanatic, lover of nature, and fan of all things old timey.\",\"url\":\"http:\\/\\/t.co\\/k3pU5rG8Mz\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/k3pU5rG8Mz\",\"expanded_url\":\"http:\\/\\/nickcarverphotography.com\\/blog\",\"display_url\":\"nickcarverphotography.com\\/blog\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":453,\"friends_count\":395,\"listed_count\":10,\"created_at\":\"Wed Nov 12 05:19:47 +0000 2008\",\"favourites_count\":92,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1395,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3470094950\\/30cd527c5a4f9f7b8adedac34b55cd7d_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3470094950\\/30cd527c5a4f9f7b8adedac34b55cd7d_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17332525\\/1417373316\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":21,\"favorite_count\":187,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wilw\",\"name\":\"Wil Wheaton\",\"id\":1183041,\"id_str\":\"1183041\",\"indices\":[21,26]}],\"urls\":[],\"media\":[{\"id\":539116297443737600,\"id_str\":\"539116297443737600\",\"indices\":[118,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"url\":\"http:\\/\\/t.co\\/Y7u4NW4yZK\",\"display_url\":\"pic.twitter.com\\/Y7u4NW4yZK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/nickcarver\\/status\\/539116301247971328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539116297443737600,\"id_str\":\"539116297443737600\",\"indices\":[118,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"url\":\"http:\\/\\/t.co\\/Y7u4NW4yZK\",\"display_url\":\"pic.twitter.com\\/Y7u4NW4yZK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/nickcarver\\/status\\/539116301247971328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":21,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nickcarver\",\"name\":\"Nick Carver\",\"id\":17332525,\"id_str\":\"17332525\",\"indices\":[3,14]},{\"screen_name\":\"wilw\",\"name\":\"Wil Wheaton\",\"id\":1183041,\"id_str\":\"1183041\",\"indices\":[37,42]}],\"urls\":[],\"media\":[{\"id\":539116297443737600,\"id_str\":\"539116297443737600\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"url\":\"http:\\/\\/t.co\\/Y7u4NW4yZK\",\"display_url\":\"pic.twitter.com\\/Y7u4NW4yZK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/nickcarver\\/status\\/539116301247971328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}},\"source_status_id\":539116301247971328,\"source_status_id_str\":\"539116301247971328\"}]},\"extended_entities\":{\"media\":[{\"id\":539116297443737600,\"id_str\":\"539116297443737600\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTaonCAAAoytw.jpg\",\"url\":\"http:\\/\\/t.co\\/Y7u4NW4yZK\",\"display_url\":\"pic.twitter.com\\/Y7u4NW4yZK\",\"expanded_url\":\"http:\\/\\/twitter.com\\/nickcarver\\/status\\/539116301247971328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}},\"source_status_id\":539116301247971328,\"source_status_id_str\":\"539116301247971328\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 17:59:26 +0000 2014\",\"id\":539116509256114176,\"id_str\":\"539116509256114176\",\"text\":\".@NRO @RichLowry \\n\\nFun when they shout you down, isn't it?\\n\\n#DiamondFormation \\n\\n(ref: \\\"The Crusader,\\\" by Paul Kengor) http:\\/\\/t.co\\/zFv2bXWwPh\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539112875886149632,\"in_reply_to_status_id_str\":\"539112875886149632\",\"in_reply_to_user_id\":19417492,\"in_reply_to_user_id_str\":\"19417492\",\"in_reply_to_screen_name\":\"NRO\",\"user\":{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202137,\"friends_count\":1623,\"listed_count\":7661,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12299,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":10,\"favorite_count\":19,\"entities\":{\"hashtags\":[{\"text\":\"DiamondFormation\",\"indices\":[60,77]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"NRO\",\"name\":\"National Review\",\"id\":19417492,\"id_str\":\"19417492\",\"indices\":[1,5]},{\"screen_name\":\"RichLowry\",\"name\":\"Rich Lowry\",\"id\":40116885,\"id_str\":\"40116885\",\"indices\":[6,16]}],\"urls\":[],\"media\":[{\"id\":539116508962508800,\"id_str\":\"539116508962508800\",\"indices\":[118,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTm8lCUAAPPVA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTm8lCUAAPPVA.jpg\",\"url\":\"http:\\/\\/t.co\\/zFv2bXWwPh\",\"display_url\":\"pic.twitter.com\\/zFv2bXWwPh\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AdamBaldwin\\/status\\/539116509256114176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1615,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":536,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":946,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539116508962508800,\"id_str\":\"539116508962508800\",\"indices\":[118,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tTm8lCUAAPPVA.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tTm8lCUAAPPVA.jpg\",\"url\":\"http:\\/\\/t.co\\/zFv2bXWwPh\",\"display_url\":\"pic.twitter.com\\/zFv2bXWwPh\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AdamBaldwin\\/status\\/539116509256114176\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":1615,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":536,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":946,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/statuses.json?owner_screen_name=applepie&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:11 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "cdf77c57ebea4a130e0a38b24eb9615f" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401011" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "62342" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:11 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011100039218; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:11 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "b3f2629dc7c1636f" ] }, "body": { "string": "[{\"created_at\":\"Mon Dec 01 02:12:20 +0000 2014\",\"id\":539240551602999300,\"id_str\":\"539240551602999300\",\"text\":\"A little on the nose with the bible quotes on the wall there walking dead.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":14348594,\"id_str\":\"14348594\",\"name\":\"John Hodgman\",\"screen_name\":\"hodgman\",\"location\":\"Brooklyn\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/M6Hd3A0Off\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/M6Hd3A0Off\",\"expanded_url\":\"http:\\/\\/www.johnhodgman.com\",\"display_url\":\"johnhodgman.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1004013,\"friends_count\":1913,\"listed_count\":16852,\"created_at\":\"Thu Apr 10 04:55:57 +0000 2008\",\"favourites_count\":13693,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":29730,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"0B191A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/337514795\\/ferret_at_the_chateau_small.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/337514795\\/ferret_at_the_chateau_small.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423577280745439232\\/bg3_uk5V_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423577280745439232\\/bg3_uk5V_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14348594\\/1357219412\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"394FBF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":12,\"favorite_count\":23,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 02:08:32 +0000 2014\",\"id\":539239595271933952,\"id_str\":\"539239595271933952\",\"text\":\"RT @msclaudette: Finally got to open this beauty w @jamesboorman Well done @mjkeenan & Ochota Barrels it was awesome! #ochotabarrels http:\\/\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":18197476,\"id_str\":\"18197476\",\"name\":\"Maynard J Keenan\",\"screen_name\":\"mjkeenan\",\"location\":\"Jerome, Arizona\",\"profile_location\":null,\"description\":\"World Class Multi-tasker, Winemaker, Entertainer, Curmudgeon.\",\"url\":\"http:\\/\\/t.co\\/244uDO5xHI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/244uDO5xHI\",\"expanded_url\":\"http:\\/\\/www.puscifer.com\",\"display_url\":\"puscifer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":137007,\"friends_count\":88,\"listed_count\":2676,\"created_at\":\"Wed Dec 17 19:43:48 +0000 2008\",\"favourites_count\":13,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1329,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ED1C11\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/234858583\\/REV_22_20v2_2.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/234858583\\/REV_22_20v2_2.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1055369858\\/BlogPhoto_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1055369858\\/BlogPhoto_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18197476\\/1364740166\",\"profile_link_color\":\"422BD0\",\"profile_sidebar_border_color\":\"306315\",\"profile_sidebar_fill_color\":\"827479\",\"profile_text_color\":\"520452\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 23:07:46 +0000 2014\",\"id\":538831714563280896,\"id_str\":\"538831714563280896\",\"text\":\"Finally got to open this beauty w @jamesboorman Well done @mjkeenan & Ochota Barrels it was awesome! #ochotabarrels http:\\/\\/t.co\\/ZhjVEYmNsp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":52952522,\"id_str\":\"52952522\",\"name\":\"Marissa Boorman\",\"screen_name\":\"msclaudette\",\"location\":\"Adelaide, South Australia\",\"profile_location\":null,\"description\":\"I am a Mum. I enjoy music, taking photos, good food & great wine! I work as a Teacher's Aide.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":37,\"friends_count\":164,\"listed_count\":1,\"created_at\":\"Thu Jul 02 03:19:10 +0000 2009\",\"favourites_count\":0,\"utc_offset\":37800,\"time_zone\":\"Adelaide\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":718,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/296655876\\/Image139_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/296655876\\/Image139_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2,\"favorite_count\":8,\"entities\":{\"hashtags\":[{\"text\":\"ochotabarrels\",\"indices\":[105,119]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"jamesboorman\",\"name\":\"James Boorman\",\"id\":66104098,\"id_str\":\"66104098\",\"indices\":[34,47]},{\"screen_name\":\"mjkeenan\",\"name\":\"Maynard J Keenan\",\"id\":18197476,\"id_str\":\"18197476\",\"indices\":[58,67]}],\"urls\":[],\"media\":[{\"id\":538831699841253376,\"id_str\":\"538831699841253376\",\"indices\":[120,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"url\":\"http:\\/\\/t.co\\/ZhjVEYmNsp\",\"display_url\":\"pic.twitter.com\\/ZhjVEYmNsp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/msclaudette\\/status\\/538831714563280896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538831699841253376,\"id_str\":\"538831699841253376\",\"indices\":[120,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"url\":\"http:\\/\\/t.co\\/ZhjVEYmNsp\",\"display_url\":\"pic.twitter.com\\/ZhjVEYmNsp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/msclaudette\\/status\\/538831714563280896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":2,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"ochotabarrels\",\"indices\":[122,136]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"msclaudette\",\"name\":\"Marissa Boorman\",\"id\":52952522,\"id_str\":\"52952522\",\"indices\":[3,15]},{\"screen_name\":\"jamesboorman\",\"name\":\"James Boorman\",\"id\":66104098,\"id_str\":\"66104098\",\"indices\":[51,64]},{\"screen_name\":\"mjkeenan\",\"name\":\"Maynard J Keenan\",\"id\":18197476,\"id_str\":\"18197476\",\"indices\":[75,84]}],\"urls\":[],\"media\":[{\"id\":538831699841253376,\"id_str\":\"538831699841253376\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"url\":\"http:\\/\\/t.co\\/ZhjVEYmNsp\",\"display_url\":\"pic.twitter.com\\/ZhjVEYmNsp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/msclaudette\\/status\\/538831714563280896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}},\"source_status_id\":538831714563280896,\"source_status_id_str\":\"538831714563280896\"}]},\"extended_entities\":{\"media\":[{\"id\":538831699841253376,\"id_str\":\"538831699841253376\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3pQk37CAAACJtE.jpg\",\"url\":\"http:\\/\\/t.co\\/ZhjVEYmNsp\",\"display_url\":\"pic.twitter.com\\/ZhjVEYmNsp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/msclaudette\\/status\\/538831714563280896\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}},\"source_status_id\":538831714563280896,\"source_status_id_str\":\"538831714563280896\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 02:01:15 +0000 2014\",\"id\":539237760809181184,\"id_str\":\"539237760809181184\",\"text\":\".@daddy_warpig Let\\u2019s presume Chu\\u2019s lying when he claims to be an \\u201cactor\\u201d. What else has he lied about?\\n\\nMaster @yesnicksearcy can analyze.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539200185055064064,\"in_reply_to_status_id_str\":\"539200185055064064\",\"in_reply_to_user_id\":65974890,\"in_reply_to_user_id_str\":\"65974890\",\"in_reply_to_screen_name\":\"daddy_warpig\",\"user\":{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202145,\"friends_count\":1624,\"listed_count\":7662,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12308,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":2,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"daddy_warpig\",\"name\":\"Daddy Warpig\",\"id\":65974890,\"id_str\":\"65974890\",\"indices\":[1,14]},{\"screen_name\":\"yesnicksearcy\",\"name\":\"Yes, Nick Searcy!\",\"id\":112280016,\"id_str\":\"112280016\",\"indices\":[111,125]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:46:49 +0000 2014\",\"id\":539234129670193154,\"id_str\":\"539234129670193154\",\"text\":\"MT @rsmccain \\u201cWhatever side of an issue feminists are on, I\\u2019m on the other side. #GamerGate\\u201d\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539233467671011328,\"in_reply_to_status_id_str\":\"539233467671011328\",\"in_reply_to_user_id\":21286108,\"in_reply_to_user_id_str\":\"21286108\",\"in_reply_to_screen_name\":\"rsmccain\",\"user\":{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202145,\"friends_count\":1624,\"listed_count\":7662,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12308,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":12,\"favorite_count\":23,\"entities\":{\"hashtags\":[{\"text\":\"GamerGate\",\"indices\":[81,91]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"rsmccain\",\"name\":\"Robert Stacy McCain\",\"id\":21286108,\"id_str\":\"21286108\",\"indices\":[3,12]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:43:29 +0000 2014\",\"id\":539233288540266497,\"id_str\":\"539233288540266497\",\"text\":\"#TriggerWarning, Bitches! ~ https:\\/\\/t.co\\/KBB8Giu6Jk\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202145,\"friends_count\":1624,\"listed_count\":7662,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12308,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":10,\"favorite_count\":11,\"entities\":{\"hashtags\":[{\"text\":\"TriggerWarning\",\"indices\":[0,15]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KBB8Giu6Jk\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/watch?v=ew9cEATPzDE\",\"display_url\":\"m.youtube.com\\/watch?v=ew9cEA\\u2026\",\"indices\":[28,51]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:38:15 +0000 2014\",\"id\":539231974741639168,\"id_str\":\"539231974741639168\",\"text\":\"I was going to make a joke about cooking with fresh herbs, but I don\\u2019t have thyme.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/software\\/tweetbot\\/mac\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738764,\"friends_count\":348,\"listed_count\":38019,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52318,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":249,\"favorite_count\":673,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:29:47 +0000 2014\",\"id\":539229842567225344,\"id_str\":\"539229842567225344\",\"text\":\"I want a Jibo. With little legs. And he\\u2019s a little sarcastic, but self-deprecating. http:\\/\\/t.co\\/IUDtaiFOqB\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":31353077,\"id_str\":\"31353077\",\"name\":\"Nathan Fillion\",\"screen_name\":\"NathanFillion\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"It costs nothing to say something kind. Even less to shut up altogether.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2710952,\"friends_count\":526,\"listed_count\":37310,\"created_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"favourites_count\":193,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7874,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":65,\"favorite_count\":240,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IUDtaiFOqB\",\"expanded_url\":\"http:\\/\\/youtu.be\\/3N1Q8oFpX1Y\",\"display_url\":\"youtu.be\\/3N1Q8oFpX1Y\",\"indices\":[84,106]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:23:35 +0000 2014\",\"id\":539228280298418176,\"id_str\":\"539228280298418176\",\"text\":\"I wanna watch Peter Pan LIVE- is anyone streaming the east coast feed at 5pm thurs? Can I put it on my Appletv?\\nNo judgements\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.whosay.com\\\" rel=\\\"nofollow\\\"\\u003eWhoSay\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":30364057,\"id_str\":\"30364057\",\"name\":\"Sarah Silverman\",\"screen_name\":\"SarahKSilverman\",\"location\":\"state of Palestine \",\"profile_location\":null,\"description\":\"We're all just molecules, Cutie.\",\"url\":\"http:\\/\\/t.co\\/dbeLhAks6Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dbeLhAks6Y\",\"expanded_url\":\"http:\\/\\/youtube.com\\/sarahsilverman\",\"display_url\":\"youtube.com\\/sarahsilverman\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5751979,\"friends_count\":496,\"listed_count\":54026,\"created_at\":\"Sat Apr 11 01:28:47 +0000 2009\",\"favourites_count\":1316,\"utc_offset\":12600,\"time_zone\":\"Tehran\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3663,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0F1724\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/82352675\\/get-attachment.aspx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/82352675\\/get-attachment.aspx.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/533405266658615296\\/ULwCXwFs_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/533405266658615296\\/ULwCXwFs_normal.jpeg\",\"profile_link_color\":\"FF3300\",\"profile_sidebar_border_color\":\"86A4A6\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":39,\"favorite_count\":185,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:21:37 +0000 2014\",\"id\":539227788813684736,\"id_str\":\"539227788813684736\",\"text\":\"Can #Dawson be any happier to be heading to #IvanhoeIsland with his peeps, Marie & Boyce?\\u2026 http:\\/\\/t.co\\/81ix0yqB12\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":140233086,\"id_str\":\"140233086\",\"name\":\"Tricia Helfer\",\"screen_name\":\"trutriciahelfer\",\"location\":\"California\",\"profile_location\":null,\"description\":\"Official Twitter account for actress Tricia Helfer.\",\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"expanded_url\":\"http:\\/\\/www.triciahelfer.com\",\"display_url\":\"triciahelfer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88322,\"friends_count\":362,\"listed_count\":2532,\"created_at\":\"Tue May 04 23:56:01 +0000 2010\",\"favourites_count\":151,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6140,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/140233086\\/1398358190\",\"profile_link_color\":\"FF0066\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"858585\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":12,\"entities\":{\"hashtags\":[{\"text\":\"Dawson\",\"indices\":[4,11]},{\"text\":\"IvanhoeIsland\",\"indices\":[44,58]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/81ix0yqB12\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wC6RdKTNR9\\/\",\"display_url\":\"instagram.com\\/p\\/wC6RdKTNR9\\/\",\"indices\":[95,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 01:09:06 +0000 2014\",\"id\":539224637331087360,\"id_str\":\"539224637331087360\",\"text\":\"Yay, Los Angeles is getting some rain!! Perfect weather for reading a script by the fireplace while sipping on a Marker's Mark.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":140233086,\"id_str\":\"140233086\",\"name\":\"Tricia Helfer\",\"screen_name\":\"trutriciahelfer\",\"location\":\"California\",\"profile_location\":null,\"description\":\"Official Twitter account for actress Tricia Helfer.\",\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"expanded_url\":\"http:\\/\\/www.triciahelfer.com\",\"display_url\":\"triciahelfer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":88322,\"friends_count\":362,\"listed_count\":2532,\"created_at\":\"Tue May 04 23:56:01 +0000 2010\",\"favourites_count\":151,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6140,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/449637756679884800\\/i_wIG0-r.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/140233086\\/1398358190\",\"profile_link_color\":\"FF0066\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"858585\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":7,\"favorite_count\":53,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 00:56:25 +0000 2014\",\"id\":539221446174601217,\"id_str\":\"539221446174601217\",\"text\":\"NO idea when @TayeDiggs followed me or why but goddamn if a lady doesn't feel pretty right now. #youllseeboys\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":89604563,\"id_str\":\"89604563\",\"name\":\"Allison Scagliotti\",\"screen_name\":\"allisonscag\",\"location\":\"Space ghost, coast to coast.\",\"profile_location\":null,\"description\":\"A loose ankled carnie in a wide brimmed hat.\",\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1270095\\/\",\"display_url\":\"imdb.com\\/name\\/nm1270095\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87807,\"friends_count\":827,\"listed_count\":2714,\"created_at\":\"Fri Nov 13 02:24:14 +0000 2009\",\"favourites_count\":536,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4725,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/89604563\\/1384936327\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5,\"favorite_count\":77,\"entities\":{\"hashtags\":[{\"text\":\"youllseeboys\",\"indices\":[96,109]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TayeDiggs\",\"name\":\"Taye Diggs\",\"id\":210684204,\"id_str\":\"210684204\",\"indices\":[13,23]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 00:42:07 +0000 2014\",\"id\":539217847293984768,\"id_str\":\"539217847293984768\",\"text\":\"I'll always be a New England girl at heart, but happy for the guys in Green Bay. Great win. Super Bowl preview? #NEvsGB #GoPackGo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPad\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":20196258,\"id_str\":\"20196258\",\"name\":\"Elizabeth Banks\",\"screen_name\":\"ElizabethBanks\",\"location\":\"pineapple at bottom of sea\",\"profile_location\":null,\"description\":\"Amateur Goofball; proud native, Pittsfield, MA; Hunger Games this, Pitch Perfect that.\",\"url\":\"http:\\/\\/t.co\\/hUc9g7AbHg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hUc9g7AbHg\",\"expanded_url\":\"http:\\/\\/www.elizabethbanks.com\",\"display_url\":\"elizabethbanks.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1606766,\"friends_count\":266,\"listed_count\":13098,\"created_at\":\"Thu Feb 05 22:27:00 +0000 2009\",\"favourites_count\":505,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5569,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/552927548\\/banks_twitter.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/552927548\\/banks_twitter.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/524683546707775489\\/-MOB4bN2_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/524683546707775489\\/-MOB4bN2_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20196258\\/1413929269\",\"profile_link_color\":\"0435B4\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color\":\"161713\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":93,\"favorite_count\":326,\"entities\":{\"hashtags\":[{\"text\":\"NEvsGB\",\"indices\":[112,119]},{\"text\":\"GoPackGo\",\"indices\":[120,129]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 00:17:34 +0000 2014\",\"id\":539211666697646080,\"id_str\":\"539211666697646080\",\"text\":\"VO2GoGo article: Why New VO Artists Cringe At The Sound Of Their Recorded Voice http:\\/\\/t.co\\/WJ7U6G4F9J\",\"source\":\"\\u003ca href=\\\"http:\\/\\/dlvr.it\\\" rel=\\\"nofollow\\\"\\u003edlvr.it\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":17562014,\"id_str\":\"17562014\",\"name\":\"DavidHLawrence XVII\",\"screen_name\":\"dhlawrencexvii\",\"location\":\"my lair, my evil lair\",\"profile_location\":null,\"description\":\"Creepy, evil villain on NBC, ABC, CBS, FOX, the BBC, etc. I teach VO at http:\\/\\/t.co\\/u64g26CZ8A and created http:\\/\\/t.co\\/Lykb64Q3qM\",\"url\":\"http:\\/\\/t.co\\/aBBzJs5fhK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/aBBzJs5fhK\",\"expanded_url\":\"http:\\/\\/www.davids.com\\/\",\"display_url\":\"davids.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/u64g26CZ8A\",\"expanded_url\":\"http:\\/\\/vo2gogo.com\",\"display_url\":\"vo2gogo.com\",\"indices\":[72,94]},{\"url\":\"http:\\/\\/t.co\\/Lykb64Q3qM\",\"expanded_url\":\"http:\\/\\/RehearsalTheApp.com\",\"display_url\":\"RehearsalTheApp.com\",\"indices\":[107,129]}]}},\"protected\":false,\"followers_count\":9090,\"friends_count\":436,\"listed_count\":879,\"created_at\":\"Sat Nov 22 20:00:35 +0000 2008\",\"favourites_count\":13,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":9330,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/372177107\\/twitterbg-S2GG-dhlxvii-blackglass.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/372177107\\/twitterbg-S2GG-dhlxvii-blackglass.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/475851393064902660\\/QeI7pTok_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/475851393064902660\\/QeI7pTok_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17562014\\/1404400644\",\"profile_link_color\":\"2F55ED\",\"profile_sidebar_border_color\":\"224FAA\",\"profile_sidebar_fill_color\":\"37363A\",\"profile_text_color\":\"A89999\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WJ7U6G4F9J\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/7h62tP\",\"display_url\":\"dlvr.it\\/7h62tP\",\"indices\":[80,102]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Dec 01 00:12:13 +0000 2014\",\"id\":539210320779046913,\"id_str\":\"539210320779046913\",\"text\":\".@georgegalloway Triumph Forsaken in Viet Nam by craven useful idiots such as yourself. By \\u201cpeople\\u201d you mean slaves under totalitarian rule.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539191230207643648,\"in_reply_to_status_id_str\":\"539191230207643648\",\"in_reply_to_user_id\":15484198,\"in_reply_to_user_id_str\":\"15484198\",\"in_reply_to_screen_name\":\"georgegalloway\",\"user\":{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202145,\"friends_count\":1624,\"listed_count\":7662,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12308,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":9,\"favorite_count\":22,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"georgegalloway\",\"name\":\"George Galloway\",\"id\":15484198,\"id_str\":\"15484198\",\"indices\":[1,16]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:50:27 +0000 2014\",\"id\":539204846125981697,\"id_str\":\"539204846125981697\",\"text\":\"Today in Hollywood, a dude holed up in his house with a crossbow and later, the Christmas parade. All in all, a lean and quiet Sunday.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":89604563,\"id_str\":\"89604563\",\"name\":\"Allison Scagliotti\",\"screen_name\":\"allisonscag\",\"location\":\"Space ghost, coast to coast.\",\"profile_location\":null,\"description\":\"A loose ankled carnie in a wide brimmed hat.\",\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/p9bh4lk9Gh\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1270095\\/\",\"display_url\":\"imdb.com\\/name\\/nm1270095\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":87807,\"friends_count\":827,\"listed_count\":2714,\"created_at\":\"Fri Nov 13 02:24:14 +0000 2009\",\"favourites_count\":536,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":4725,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000120409815\\/3da37b8e4688392251b97f0a1a9f5030.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000764940188\\/b49d41928abd3d7320a258e492e21b57_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/89604563\\/1384936327\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":9,\"favorite_count\":42,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:40:44 +0000 2014\",\"id\":539202397608763392,\"id_str\":\"539202397608763392\",\"text\":\"This spent grain bread will pair nicely with our homemade turkey soup tonight. Tomorrow, we\\u2019ll take the wagon into town and shoe the horses.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/software\\/tweetbot\\/mac\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738764,\"friends_count\":348,\"listed_count\":38019,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52318,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":53,\"favorite_count\":573,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:36:52 +0000 2014\",\"id\":539201427000684544,\"id_str\":\"539201427000684544\",\"text\":\"I\\u2019m making bread with spent grain from yesterday\\u2019s #w00tstout #homebrew, and it smells delicious.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/software\\/tweetbot\\/mac\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAYYOhbijM\",\"expanded_url\":\"http:\\/\\/wilwheaton.net\\/2009\\/02\\/what-to-expect-if-you-follow-me-on-twitter-or-how-im-going-to-disappoint-you-in-6-quick-steps\\/\",\"display_url\":\"wilwheaton.net\\/2009\\/02\\/what-t\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2738764,\"friends_count\":348,\"listed_count\":38019,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"favourites_count\":362,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52318,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528600852756303872\\/tRlEoF3B_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":10,\"favorite_count\":179,\"entities\":{\"hashtags\":[{\"text\":\"w00tstout\",\"indices\":[51,61]},{\"text\":\"homebrew\",\"indices\":[62,71]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:28:08 +0000 2014\",\"id\":539199229520908289,\"id_str\":\"539199229520908289\",\"text\":\"Evening Grace ~ http:\\/\\/t.co\\/RrPvavG7im\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003eTweetbot for i\\u039fS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_name\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"profile_location\":null,\"description\":\"American Individual.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":202145,\"friends_count\":1624,\"listed_count\":7662,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\":403,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12308,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000107558256\\/3f5de19ce74bb4824f1f12acc4ea2c4e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/522334004100362240\\/2XXb0oWU_normal.jpeg\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":11,\"favorite_count\":113,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539199229428641792,\"id_str\":\"539199229428641792\",\"indices\":[16,38],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ue16VCMAArIwk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ue16VCMAArIwk.jpg\",\"url\":\"http:\\/\\/t.co\\/RrPvavG7im\",\"display_url\":\"pic.twitter.com\\/RrPvavG7im\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AdamBaldwin\\/status\\/539199229520908289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539199229428641792,\"id_str\":\"539199229428641792\",\"indices\":[16,38],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3ue16VCMAArIwk.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3ue16VCMAArIwk.jpg\",\"url\":\"http:\\/\\/t.co\\/RrPvavG7im\",\"display_url\":\"pic.twitter.com\\/RrPvavG7im\",\"expanded_url\":\"http:\\/\\/twitter.com\\/AdamBaldwin\\/status\\/539199229520908289\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:25:54 +0000 2014\",\"id\":539198666498916355,\"id_str\":\"539198666498916355\",\"text\":\"RT @freelancingfan: My cat waiting to be retweeted by @Mark_Sheppard http:\\/\\/t.co\\/M1YKnSuOaq\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/#!\\/download\\/ipad\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPad\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":30282704,\"id_str\":\"30282704\",\"name\":\"Mark Sheppard\",\"screen_name\":\"Mark_Sheppard\",\"location\":\"\",\"profile_location\":null,\"description\":\"Actor, Director, Drummer, Father...King of Hell...\\r\\nhttp:\\/\\/t.co\\/twJOKs0zWL\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/twJOKs0zWL\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm0791968\\/\",\"display_url\":\"imdb.com\\/name\\/nm0791968\\/\",\"indices\":[52,74]}]}},\"protected\":false,\"followers_count\":524015,\"friends_count\":224,\"listed_count\":5093,\"created_at\":\"Fri Apr 10 18:47:38 +0000 2009\",\"favourites_count\":82,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3583,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000096553197\\/5f03860ca35e72965585bc6a82c95dbc.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000096553197\\/5f03860ca35e72965585bc6a82c95dbc.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/493300540399316992\\/PZTupizy_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/493300540399316992\\/PZTupizy_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/30282704\\/1398837102\",\"profile_link_color\":\"D02B55\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 21:07:10 +0000 2014\",\"id\":539163751170469888,\"id_str\":\"539163751170469888\",\"text\":\"My cat waiting to be retweeted by @Mark_Sheppard http:\\/\\/t.co\\/M1YKnSuOaq\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2890642840,\"id_str\":\"2890642840\",\"name\":\"freelancefan\",\"screen_name\":\"freelancingfan\",\"location\":\"\",\"profile_location\":null,\"description\":\"Hate is a very strong word. Use it carefully. Ignorance is unacceptable. Horror & Sci Fi Fan. Zombies were people too, give mercy.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":40,\"friends_count\":43,\"listed_count\":1,\"created_at\":\"Mon Nov 24 11:30:03 +0000 2014\",\"favourites_count\":54,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":41,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536845236236849152\\/G-RPZQ2J_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536845236236849152\\/G-RPZQ2J_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2890642840\\/1416994520\",\"profile_link_color\":\"4A913C\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":286,\"favorite_count\":1272,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Mark_Sheppard\",\"name\":\"Mark Sheppard\",\"id\":30282704,\"id_str\":\"30282704\",\"indices\":[34,48]}],\"urls\":[],\"media\":[{\"id\":539163749874036737,\"id_str\":\"539163749874036737\",\"indices\":[49,71],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"url\":\"http:\\/\\/t.co\\/M1YKnSuOaq\",\"display_url\":\"pic.twitter.com\\/M1YKnSuOaq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/freelancingfan\\/status\\/539163751170469888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539163749874036737,\"id_str\":\"539163749874036737\",\"indices\":[49,71],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"url\":\"http:\\/\\/t.co\\/M1YKnSuOaq\",\"display_url\":\"pic.twitter.com\\/M1YKnSuOaq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/freelancingfan\\/status\\/539163751170469888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":286,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"freelancingfan\",\"name\":\"freelancefan\",\"id\":2890642840,\"id_str\":\"2890642840\",\"indices\":[3,18]},{\"screen_name\":\"Mark_Sheppard\",\"name\":\"Mark Sheppard\",\"id\":30282704,\"id_str\":\"30282704\",\"indices\":[54,68]}],\"urls\":[],\"media\":[{\"id\":539163749874036737,\"id_str\":\"539163749874036737\",\"indices\":[69,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"url\":\"http:\\/\\/t.co\\/M1YKnSuOaq\",\"display_url\":\"pic.twitter.com\\/M1YKnSuOaq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/freelancingfan\\/status\\/539163751170469888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}},\"source_status_id\":539163751170469888,\"source_status_id_str\":\"539163751170469888\"}]},\"extended_entities\":{\"media\":[{\"id\":539163749874036737,\"id_str\":\"539163749874036737\",\"indices\":[69,91],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t-kusCcAEDbJP.jpg\",\"url\":\"http:\\/\\/t.co\\/M1YKnSuOaq\",\"display_url\":\"pic.twitter.com\\/M1YKnSuOaq\",\"expanded_url\":\"http:\\/\\/twitter.com\\/freelancingfan\\/status\\/539163751170469888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":450,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"}},\"source_status_id\":539163751170469888,\"source_status_id_str\":\"539163751170469888\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 23:14:05 +0000 2014\",\"id\":539195692355289089,\"id_str\":\"539195692355289089\",\"text\":\"Someone at BI has been attending my @VO2GoGo classes and taking notes: Why You Hate The Sound Of Your Own Voice -\\u2026 http:\\/\\/t.co\\/8XCtpFBVaa\",\"source\":\"\\u003ca href=\\\"http:\\/\\/dlvr.it\\\" rel=\\\"nofollow\\\"\\u003edlvr.it\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":17562014,\"id_str\":\"17562014\",\"name\":\"DavidHLawrence XVII\",\"screen_name\":\"dhlawrencexvii\",\"location\":\"my lair, my evil lair\",\"profile_location\":null,\"description\":\"Creepy, evil villain on NBC, ABC, CBS, FOX, the BBC, etc. I teach VO at http:\\/\\/t.co\\/u64g26CZ8A and created http:\\/\\/t.co\\/Lykb64Q3qM\",\"url\":\"http:\\/\\/t.co\\/aBBzJs5fhK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/aBBzJs5fhK\",\"expanded_url\":\"http:\\/\\/www.davids.com\\/\",\"display_url\":\"davids.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/u64g26CZ8A\",\"expanded_url\":\"http:\\/\\/vo2gogo.com\",\"display_url\":\"vo2gogo.com\",\"indices\":[72,94]},{\"url\":\"http:\\/\\/t.co\\/Lykb64Q3qM\",\"expanded_url\":\"http:\\/\\/RehearsalTheApp.com\",\"display_url\":\"RehearsalTheApp.com\",\"indices\":[107,129]}]}},\"protected\":false,\"followers_count\":9090,\"friends_count\":436,\"listed_count\":879,\"created_at\":\"Sat Nov 22 20:00:35 +0000 2008\",\"favourites_count\":13,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":9330,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/372177107\\/twitterbg-S2GG-dhlxvii-blackglass.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/372177107\\/twitterbg-S2GG-dhlxvii-blackglass.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/475851393064902660\\/QeI7pTok_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/475851393064902660\\/QeI7pTok_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17562014\\/1404400644\",\"profile_link_color\":\"2F55ED\",\"profile_sidebar_border_color\":\"224FAA\",\"profile_sidebar_fill_color\":\"37363A\",\"profile_text_color\":\"A89999\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"VO2GoGo\",\"name\":\"VO2GoGo\",\"id\":1956084151,\"id_str\":\"1956084151\",\"indices\":[36,44]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8XCtpFBVaa\",\"expanded_url\":\"http:\\/\\/dlvr.it\\/7h576l\",\"display_url\":\"dlvr.it\\/7h576l\",\"indices\":[115,137]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testlookupusers.json000066400000000000000000001314721265716604700212460ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "25" ], "Content-Type": [ "application/x-www-form-urlencoded" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/users/lookup.json", "body": "user_id=6844292%2C6253282" }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:28 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "97852fc451563b64e025a695dfbc9aed" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "12ec18370305ef5a" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "8008" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008815058298; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:28 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:28 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380988" ] }, "body": { "string": "[{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641775,\"friends_count\":0,\"listed_count\":3474,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 21 17:56:07 +0000 2014\",\"id\":535854182360576001,\"id_str\":\"535854182360576001\",\"text\":\"RT @ApacheMesos: Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 20 23:57:53 +0000 2014\",\"id\":535582834585776129,\"id_str\":\"535582834585776129\",\"text\":\"Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/PC1FaxEiR2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":80,\"favorite_count\":41,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[26,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[110,132]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":80,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[43,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ApacheMesos\",\"name\":\"Apache Mesos\",\"id\":519262288,\"id_str\":\"519262288\",\"indices\":[3,15]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":6253282,\"id_str\":\"6253282\",\"name\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2527283,\"friends_count\":48,\"listed_count\":12878,\"created_at\":\"Wed May 23 06:01:13 +0000 2007\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3523,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Oct 29 00:27:02 +0000 2014\",\"id\":527255252257763328,\"id_str\":\"527255252257763328\",\"text\":\"RT @twittersecurity: We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Oct 29 00:17:39 +0000 2014\",\"id\":527252887949148162,\"id_str\":\"527252887949148162\",\"text\":\"We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\/\\/t.co\\/BDf4iRaHzn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":111,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[88,110]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":156,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twittersecurity\",\"name\":\"Twitter Security\",\"id\":1137751093,\"id_str\":\"1137751093\",\"indices\":[3,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[109,131]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "32" ], "Content-Type": [ "application/x-www-form-urlencoded" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/users/lookup.json", "body": "screen_name=twitterapi%2Ctwitter" }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:28 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ea0d00388e654e07c0f25ffb7e5f7227" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "1d97a9da81dc39d9" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "7035" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008866246465; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:28 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:28 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "178" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380988" ] }, "body": { "string": "[{\"id\":6253282,\"id_str\":\"6253282\",\"name\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2527283,\"friends_count\":48,\"listed_count\":12878,\"created_at\":\"Wed May 23 06:01:13 +0000 2007\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3523,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Oct 29 00:27:02 +0000 2014\",\"id\":527255252257763328,\"id_str\":\"527255252257763328\",\"text\":\"RT @twittersecurity: We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Oct 29 00:17:39 +0000 2014\",\"id\":527252887949148162,\"id_str\":\"527252887949148162\",\"text\":\"We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\/\\/t.co\\/BDf4iRaHzn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":111,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[88,110]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":156,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twittersecurity\",\"name\":\"Twitter Security\",\"id\":1137751093,\"id_str\":\"1137751093\",\"indices\":[3,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[109,131]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620555,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "25" ], "Content-Type": [ "application/x-www-form-urlencoded" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/users/lookup.json", "body": "user_id=6844292%2C6253282" }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:13 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "139da6c9dc07d2c8e996e2e5a2c89244" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401013" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "8008" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:13 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011328616478; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:13 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "373b1b40e1b95ad2" ] }, "body": { "string": "[{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641907,\"friends_count\":0,\"listed_count\":3473,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 21 17:56:07 +0000 2014\",\"id\":535854182360576001,\"id_str\":\"535854182360576001\",\"text\":\"RT @ApacheMesos: Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 20 23:57:53 +0000 2014\",\"id\":535582834585776129,\"id_str\":\"535582834585776129\",\"text\":\"Announcing the release of #Mesos 0.21.0, featuring state reconciliation, modules, and new container isolators http:\\/\\/t.co\\/PC1FaxEiR2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":80,\"favorite_count\":41,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[26,32]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[110,132]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":80,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Mesos\",\"indices\":[43,49]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ApacheMesos\",\"name\":\"Apache Mesos\",\"id\":519262288,\"id_str\":\"519262288\",\"indices\":[3,15]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PC1FaxEiR2\",\"expanded_url\":\"http:\\/\\/mesos.apache.org\\/blog\\/mesos-0-21-0-released\\/\",\"display_url\":\"mesos.apache.org\\/blog\\/mesos-0-2\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":6253282,\"id_str\":\"6253282\",\"name\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2528101,\"friends_count\":48,\"listed_count\":12877,\"created_at\":\"Wed May 23 06:01:13 +0000 2007\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3523,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Oct 29 00:27:02 +0000 2014\",\"id\":527255252257763328,\"id_str\":\"527255252257763328\",\"text\":\"RT @twittersecurity: We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Oct 29 00:17:39 +0000 2014\",\"id\":527252887949148162,\"id_str\":\"527252887949148162\",\"text\":\"We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\/\\/t.co\\/BDf4iRaHzn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":111,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[88,110]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":156,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twittersecurity\",\"name\":\"Twitter Security\",\"id\":1137751093,\"id_str\":\"1137751093\",\"indices\":[3,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[109,131]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "32" ], "Content-Type": [ "application/x-www-form-urlencoded" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/users/lookup.json", "body": "screen_name=twitterapi%2Ctwitter" }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:13 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "19947792ece0e6309eaeb94b5af9f3fb" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401013" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "7035" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:13 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "178" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011369373946; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:13 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "e194e33d1682a01b" ] }, "body": { "string": "[{\"id\":6253282,\"id_str\":\"6253282\",\"name\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2528101,\"friends_count\":48,\"listed_count\":12877,\"created_at\":\"Wed May 23 06:01:13 +0000 2007\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3523,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Oct 29 00:27:02 +0000 2014\",\"id\":527255252257763328,\"id_str\":\"527255252257763328\",\"text\":\"RT @twittersecurity: We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Oct 29 00:17:39 +0000 2014\",\"id\":527252887949148162,\"id_str\":\"527252887949148162\",\"text\":\"We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\/\\/t.co\\/BDf4iRaHzn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":111,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[88,110]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":156,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twittersecurity\",\"name\":\"Twitter Security\",\"id\":1137751093,\"id_str\":\"1137751093\",\"indices\":[3,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[109,131]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621110,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false}]" } } } ] }tweepy-3.5.0/cassettes/testme.json000066400000000000000000000577701265716604700172640ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:29 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "f9b749c28e340ee9761e78f2e8972e66" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "126f7467b9b7d035" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2848" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008900766936; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:29 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:29 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:29 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6884c53c8c7e0264502a3e2c8b48a78d" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "2a86e326882c82cd" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2899" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008937525034; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:29 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:29 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "177" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"suspended\":false,\"needs_phone_verification\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:14 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ae599079db83fd15fc358c70624900b3" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2848" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:14 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011410613722; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:14 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "1f1f28f5d42999ef" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:14 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "e4e1ecca039e4cbdbaf40e59f6c8fc8f" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401003" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2899" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:14 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "177" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011459085196; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:14 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "06ea9be3e96f46c2" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"suspended\":false,\"needs_phone_verification\":false}" } } } ] }tweepy-3.5.0/cassettes/testmentionstimeline.json000066400000000000000000000133201265716604700222250ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/mentions_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:29 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ce4f0be287452a6548e87cede351edcb" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "68be7d2f2af10758" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738008974423365; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:29 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:29 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "[]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/mentions_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:14 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "b755a7fa4e02dbf47c27ce572d6f6b7c" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:14 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011495308039; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:14 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "645f09a807553663" ] }, "body": { "string": "[]" } } } ] }tweepy-3.5.0/cassettes/testratelimitstatus.json000066400000000000000000000452221265716604700221060ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/application/rate_limit_status.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:30 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "06e445268af0c4644fa03aec2cd31312" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "7d92462dc0e24925" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "5796" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009010357399; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:30 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:30 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380990" ] }, "body": { "string": "{\"rate_limit_context\":{\"access_token\":\"82301637-drQpl2FK4ZzMAeTxerDN05QWqjyOwJB4VZTcTFnwj\"},\"resources\":{\"lists\":{\"\\/lists\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417380982},\"\\/lists\\/memberships\":{\"limit\":15,\"remaining\":14,\"reset\":1417380984},\"\\/lists\\/subscribers\\/show\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/lists\\/members\":{\"limit\":180,\"remaining\":179,\"reset\":1417380982},\"\\/lists\\/subscriptions\":{\"limit\":15,\"remaining\":14,\"reset\":1417380985},\"\\/lists\\/show\":{\"limit\":15,\"remaining\":14,\"reset\":1417380980},\"\\/lists\\/ownerships\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/lists\\/subscribers\":{\"limit\":180,\"remaining\":179,\"reset\":1417380985},\"\\/lists\\/members\\/show\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/lists\\/statuses\":{\"limit\":180,\"remaining\":179,\"reset\":1417380986}},\"application\":{\"\\/application\\/rate_limit_status\":{\"limit\":180,\"remaining\":179,\"reset\":1417380990}},\"mutes\":{\"\\/mutes\\/users\\/list\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/mutes\\/users\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"friendships\":{\"\\/friendships\\/outgoing\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/friendships\\/no_retweets\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/friendships\\/lookup\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/friendships\\/incoming\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/friendships\\/show\":{\"limit\":180,\"remaining\":180,\"reset\":1417380990}},\"blocks\":{\"\\/blocks\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417380966},\"\\/blocks\\/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1417380966}},\"geo\":{\"\\/geo\\/similar_places\":{\"limit\":15,\"remaining\":14,\"reset\":1417380979},\"\\/geo\\/id\\/:place_id\":{\"limit\":15,\"remaining\":14,\"reset\":1417380979},\"\\/geo\\/reverse_geocode\":{\"limit\":15,\"remaining\":14,\"reset\":1417380979},\"\\/geo\\/search\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"users\":{\"\\/users\\/report_spam\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/users\\/show\\/:id\":{\"limit\":180,\"remaining\":177,\"reset\":1417380980},\"\\/users\\/search\":{\"limit\":180,\"remaining\":180,\"reset\":1417380990},\"\\/users\\/suggestions\\/:slug\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/users\\/derived_info\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/users\\/profile_banner\":{\"limit\":180,\"remaining\":180,\"reset\":1417380990},\"\\/users\\/suggestions\\/:slug\\/members\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/users\\/lookup\":{\"limit\":180,\"remaining\":178,\"reset\":1417380988},\"\\/users\\/suggestions\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"followers\":{\"\\/followers\\/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1417380977},\"\\/followers\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417380977}},\"statuses\":{\"\\/statuses\\/retweeters\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/statuses\\/retweets_of_me\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/statuses\\/home_timeline\":{\"limit\":15,\"remaining\":13,\"reset\":1417380966},\"\\/statuses\\/show\\/:id\":{\"limit\":180,\"remaining\":179,\"reset\":1417380980},\"\\/statuses\\/user_timeline\":{\"limit\":180,\"remaining\":180,\"reset\":1417380990},\"\\/statuses\\/friends\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/statuses\\/retweets\\/:id\":{\"limit\":60,\"remaining\":60,\"reset\":1417380990},\"\\/statuses\\/mentions_timeline\":{\"limit\":15,\"remaining\":14,\"reset\":1417380989},\"\\/statuses\\/oembed\":{\"limit\":180,\"remaining\":179,\"reset\":1417380980},\"\\/statuses\\/lookup\":{\"limit\":180,\"remaining\":180,\"reset\":1417380990}},\"contacts\":{\"\\/contacts\\/uploaded_by\":{\"limit\":300,\"remaining\":300,\"reset\":1417380990},\"\\/contacts\\/users\":{\"limit\":300,\"remaining\":300,\"reset\":1417380990},\"\\/contacts\\/addressbook\":{\"limit\":300,\"remaining\":300,\"reset\":1417380990},\"\\/contacts\\/users_and_uploaded_by\":{\"limit\":300,\"remaining\":300,\"reset\":1417380990},\"\\/contacts\\/delete\\/status\":{\"limit\":300,\"remaining\":300,\"reset\":1417380990}},\"help\":{\"\\/help\\/tos\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/help\\/configuration\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/help\\/settings\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/help\\/privacy\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/help\\/languages\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"friends\":{\"\\/friends\\/following\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/friends\\/following\\/list\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/friends\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417380978},\"\\/friends\\/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1417380978}},\"direct_messages\":{\"\\/direct_messages\\/sent\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/direct_messages\":{\"limit\":15,\"remaining\":14,\"reset\":1417380976},\"\\/direct_messages\\/sent_and_received\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/direct_messages\\/show\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"account\":{\"\\/account\\/login_verification_enrollment\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/account\\/update_profile\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/account\\/verify_credentials\":{\"limit\":15,\"remaining\":14,\"reset\":1417380989},\"\\/account\\/settings\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"favorites\":{\"\\/favorites\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417380976}},\"device\":{\"\\/device\\/token\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"saved_searches\":{\"\\/saved_searches\\/destroy\\/:id\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/saved_searches\\/show\\/:id\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/saved_searches\\/list\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}},\"search\":{\"\\/search\\/tweets\":{\"limit\":180,\"remaining\":180,\"reset\":1417380990}},\"trends\":{\"\\/trends\\/closest\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/trends\\/available\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990},\"\\/trends\\/place\":{\"limit\":15,\"remaining\":15,\"reset\":1417380990}}}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/application/rate_limit_status.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:15 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c5f955b9c4eda95b1f7654cfd075d59f" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401015" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "5796" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:15 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011527449705; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:15 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "7b8b115ad4567b1d" ] }, "body": { "string": "{\"rate_limit_context\":{\"access_token\":\"82301637-drQpl2FK4ZzMAeTxerDN05QWqjyOwJB4VZTcTFnwj\"},\"resources\":{\"lists\":{\"\\/lists\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417401007},\"\\/lists\\/memberships\":{\"limit\":15,\"remaining\":14,\"reset\":1417401009},\"\\/lists\\/subscribers\\/show\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/lists\\/members\":{\"limit\":180,\"remaining\":179,\"reset\":1417401006},\"\\/lists\\/subscriptions\":{\"limit\":15,\"remaining\":14,\"reset\":1417401009},\"\\/lists\\/show\":{\"limit\":15,\"remaining\":14,\"reset\":1417401002},\"\\/lists\\/ownerships\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/lists\\/subscribers\":{\"limit\":180,\"remaining\":179,\"reset\":1417401009},\"\\/lists\\/members\\/show\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/lists\\/statuses\":{\"limit\":180,\"remaining\":179,\"reset\":1417401011}},\"application\":{\"\\/application\\/rate_limit_status\":{\"limit\":180,\"remaining\":179,\"reset\":1417401015}},\"mutes\":{\"\\/mutes\\/users\\/list\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/mutes\\/users\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"friendships\":{\"\\/friendships\\/outgoing\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/friendships\\/no_retweets\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/friendships\\/lookup\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/friendships\\/incoming\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/friendships\\/show\":{\"limit\":180,\"remaining\":180,\"reset\":1417401015}},\"blocks\":{\"\\/blocks\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417400985},\"\\/blocks\\/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1417400986}},\"geo\":{\"\\/geo\\/similar_places\":{\"limit\":15,\"remaining\":14,\"reset\":1417401000},\"\\/geo\\/id\\/:place_id\":{\"limit\":15,\"remaining\":14,\"reset\":1417401001},\"\\/geo\\/reverse_geocode\":{\"limit\":15,\"remaining\":14,\"reset\":1417401001},\"\\/geo\\/search\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"users\":{\"\\/users\\/report_spam\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/users\\/show\\/:id\":{\"limit\":180,\"remaining\":177,\"reset\":1417401003},\"\\/users\\/search\":{\"limit\":180,\"remaining\":180,\"reset\":1417401015},\"\\/users\\/suggestions\\/:slug\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/users\\/derived_info\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/users\\/profile_banner\":{\"limit\":180,\"remaining\":180,\"reset\":1417401015},\"\\/users\\/suggestions\\/:slug\\/members\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/users\\/lookup\":{\"limit\":180,\"remaining\":178,\"reset\":1417401013},\"\\/users\\/suggestions\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"followers\":{\"\\/followers\\/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1417400999},\"\\/followers\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417400998}},\"statuses\":{\"\\/statuses\\/retweeters\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/statuses\\/retweets_of_me\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/statuses\\/home_timeline\":{\"limit\":15,\"remaining\":13,\"reset\":1417400986},\"\\/statuses\\/show\\/:id\":{\"limit\":180,\"remaining\":179,\"reset\":1417401003},\"\\/statuses\\/user_timeline\":{\"limit\":180,\"remaining\":180,\"reset\":1417401015},\"\\/statuses\\/friends\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/statuses\\/retweets\\/:id\":{\"limit\":60,\"remaining\":60,\"reset\":1417401015},\"\\/statuses\\/mentions_timeline\":{\"limit\":15,\"remaining\":14,\"reset\":1417401014},\"\\/statuses\\/oembed\":{\"limit\":180,\"remaining\":179,\"reset\":1417401002},\"\\/statuses\\/lookup\":{\"limit\":180,\"remaining\":180,\"reset\":1417401015}},\"contacts\":{\"\\/contacts\\/uploaded_by\":{\"limit\":300,\"remaining\":300,\"reset\":1417401015},\"\\/contacts\\/users\":{\"limit\":300,\"remaining\":300,\"reset\":1417401015},\"\\/contacts\\/addressbook\":{\"limit\":300,\"remaining\":300,\"reset\":1417401015},\"\\/contacts\\/users_and_uploaded_by\":{\"limit\":300,\"remaining\":300,\"reset\":1417401015},\"\\/contacts\\/delete\\/status\":{\"limit\":300,\"remaining\":300,\"reset\":1417401015}},\"help\":{\"\\/help\\/tos\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/help\\/configuration\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/help\\/settings\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/help\\/privacy\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/help\\/languages\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"friends\":{\"\\/friends\\/following\\/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/friends\\/following\\/list\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/friends\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417400999},\"\\/friends\\/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1417401000}},\"direct_messages\":{\"\\/direct_messages\\/sent\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/direct_messages\":{\"limit\":15,\"remaining\":14,\"reset\":1417400996},\"\\/direct_messages\\/sent_and_received\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/direct_messages\\/show\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"account\":{\"\\/account\\/login_verification_enrollment\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/account\\/update_profile\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/account\\/verify_credentials\":{\"limit\":15,\"remaining\":14,\"reset\":1417401014},\"\\/account\\/settings\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"favorites\":{\"\\/favorites\\/list\":{\"limit\":15,\"remaining\":14,\"reset\":1417400998}},\"device\":{\"\\/device\\/token\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"saved_searches\":{\"\\/saved_searches\\/destroy\\/:id\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/saved_searches\\/show\\/:id\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/saved_searches\\/list\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}},\"search\":{\"\\/search\\/tweets\":{\"limit\":180,\"remaining\":180,\"reset\":1417401015}},\"trends\":{\"\\/trends\\/closest\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/trends\\/available\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015},\"\\/trends\\/place\":{\"limit\":15,\"remaining\":15,\"reset\":1417401015}}}}" } } } ] }tweepy-3.5.0/cassettes/testretweeters.json000066400000000000000000000174201265716604700210400ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/retweeters/ids.json?id=266367358078169089", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:30 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "fc2eca688ad7fc2188687c1115335c96" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "90c5531da9ccff84" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "1022" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009050965990; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:30 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:30 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380990" ] }, "body": { "string": "{\"ids\":[2390428970,2392623769,2298388902,2218822532,2294010576,2298665443,2295646148,586229030,1377248521,1360513801,1362034669,1458196202,1231476126,1387371619,1183016636,188937623,1156915609,1206961129,396722289,755584388,838471987,1032012109,892834280,98585322,601235246,569558338,451776898,532092216,831618858,712469083,562549745,144683557,965210341,942200450,184662037,620862766,899643482,870248461,16482751,605168279,955312028,957010932,531917206,856105045,948683221,935491596,946377140,848197370,60412483,877388418,942234878,943352540,941760217,942234530,393226522,104938500,940243159,527197982,794327168,913965085,938792107,547911317,545004607,937135218,932267131,936550507,832543117,297861279,911901686,532505398,828583268,911730324,139532123,17916539,56933470,36912323,30592580,835617390,548741348,760957819,824311056,934584805,517135684,292837239,18059761,934165400,819782274,620144735,584653830,921575544,808089618,632563729],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/retweeters/ids.json?id=266367358078169089", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:16 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "eece888ce79adf5e2ad86307eadd88e1" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401015" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1022" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:15 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011569875202; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:16 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "5691e1c9185d5a52" ] }, "body": { "string": "{\"ids\":[2390428970,2392623769,2298388902,2218822532,2294010576,2298665443,2295646148,586229030,1377248521,1360513801,1362034669,1458196202,1231476126,1387371619,1183016636,188937623,1156915609,1206961129,396722289,755584388,838471987,1032012109,892834280,98585322,601235246,569558338,451776898,532092216,831618858,712469083,562549745,144683557,965210341,942200450,184662037,620862766,899643482,870248461,16482751,605168279,955312028,957010932,531917206,856105045,948683221,935491596,946377140,848197370,60412483,877388418,942234878,943352540,941760217,942234530,393226522,104938500,940243159,527197982,794327168,913965085,938792107,547911317,545004607,937135218,932267131,936550507,832543117,297861279,911901686,532505398,828583268,911730324,139532123,17916539,56933470,36912323,30592580,835617390,548741348,760957819,824311056,934584805,517135684,292837239,18059761,934165400,819782274,620144735,584653830,921575544,808089618,632563729],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}" } } } ] }tweepy-3.5.0/cassettes/testretweets.json000066400000000000000000006710171265716604700205210ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/retweets/266367358078169089.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:31 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "4e6e46507b2b3e3074023238ea9ba48d" ], "x-rate-limit-limit": [ "60" ], "server": [ "tsa_b" ], "x-transaction": [ "bb82a385b7d34ae4" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "99065" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009152110468; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:31 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:31 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "59" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380991" ] }, "body": { "string": "[{\"created_at\":\"Wed Jul 09 00:08:39 +0000 2014\",\"id\":486663181901627392,\"id_str\":\"486663181901627392\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2390428970,\"id_str\":\"2390428970\",\"name\":\"pppppppppppp\",\"screen_name\":\"MarijuanaProduc\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":0,\"listed_count\":2,\"created_at\":\"Sat Mar 15 05:00:44 +0000 2014\",\"favourites_count\":17425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19880,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_6_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_6_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 23:43:38 +0000 2014\",\"id\":486656886268112896,\"id_str\":\"486656886268112896\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2392623769,\"id_str\":\"2392623769\",\"name\":\"aaaaaaallllg\",\"screen_name\":\"MagicalBLKHands\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":0,\"listed_count\":3,\"created_at\":\"Sun Mar 16 12:12:31 +0000 2014\",\"favourites_count\":19250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20027,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 23:23:58 +0000 2014\",\"id\":486651938440638465,\"id_str\":\"486651938440638465\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2298388902,\"id_str\":\"2298388902\",\"name\":\"vvvvvvawwwwwm\",\"screen_name\":\"SunriseDaynight\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Sat Jan 18 19:08:33 +0000 2014\",\"favourites_count\":18044,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19334,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 19:17:48 +0000 2014\",\"id\":486589989140971521,\"id_str\":\"486589989140971521\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2218822532,\"id_str\":\"2218822532\",\"name\":\"mmmmmmmajajoolll\",\"screen_name\":\"CatchFame\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":0,\"listed_count\":3,\"created_at\":\"Thu Nov 28 03:33:34 +0000 2013\",\"favourites_count\":18913,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29483,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 18:57:44 +0000 2014\",\"id\":486584940067188736,\"id_str\":\"486584940067188736\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2294010576,\"id_str\":\"2294010576\",\"name\":\"xxxxxxxxxxxx\",\"screen_name\":\"MoneyDisisions\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":155,\"friends_count\":0,\"listed_count\":3,\"created_at\":\"Thu Jan 16 07:13:09 +0000 2014\",\"favourites_count\":20408,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34732,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/537111499886428161\\/gj1tPxDY_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/537111499886428161\\/gj1tPxDY_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 18:15:21 +0000 2014\",\"id\":486574271783649281,\"id_str\":\"486574271783649281\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2298665443,\"id_str\":\"2298665443\",\"name\":\"xxxxxxjeuwoej\",\"screen_name\":\"Ambasidy\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":149,\"friends_count\":0,\"listed_count\":5,\"created_at\":\"Sat Jan 18 23:23:30 +0000 2014\",\"favourites_count\":30525,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46956,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 17:50:57 +0000 2014\",\"id\":486568132996120576,\"id_str\":\"486568132996120576\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2295646148,\"id_str\":\"2295646148\",\"name\":\"otpsjdhdjdndvdhd\",\"screen_name\":\"marcosahernades\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":675,\"friends_count\":1996,\"listed_count\":4,\"created_at\":\"Fri Jan 17 07:02:44 +0000 2014\",\"favourites_count\":9254,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10726,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 23 18:00:45 +0000 2013\",\"id\":404308552258318336,\"id_str\":\"404308552258318336\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":586229030,\"id_str\":\"586229030\",\"name\":\"Neha Virk\",\"screen_name\":\"neha_virk98\",\"location\":\"Canada\",\"profile_location\":null,\"description\":\"Your only as tall as your heart will let you be and as small as the world makes you seem 3 -on the brightside, nevershoutnever\",\"url\":\"http:\\/\\/t.co\\/aPy00RvXsP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/aPy00RvXsP\",\"expanded_url\":\"http:\\/\\/instagram.com\\/knee_highsocks\",\"display_url\":\"instagram.com\\/knee_highsocks\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":455,\"friends_count\":1050,\"listed_count\":1,\"created_at\":\"Mon May 21 04:01:10 +0000 2012\",\"favourites_count\":394,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2227,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/435580933614219264\\/1obsf22D_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/435580933614219264\\/1obsf22D_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586229030\\/1388457095\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 23 13:39:32 +0000 2013\",\"id\":404242817696153600,\"id_str\":\"404242817696153600\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1377248521,\"id_str\":\"1377248521\",\"name\":\"nsoretob\",\"screen_name\":\"nsoooore2012\",\"location\":\"\",\"profile_location\":null,\"description\":\"NSORETOB \\/ -Hyuna-Luv-U-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Wed Apr 24 14:53:57 +0000 2013\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3499,\"lang\":\"ar\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1377248521\\/1376974916\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 17 06:10:33 +0000 2013\",\"id\":401955496942665728,\"id_str\":\"401955496942665728\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1377248521,\"id_str\":\"1377248521\",\"name\":\"nsoretob\",\"screen_name\":\"nsoooore2012\",\"location\":\"\",\"profile_location\":null,\"description\":\"NSORETOB \\/ -Hyuna-Luv-U-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Wed Apr 24 14:53:57 +0000 2013\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3499,\"lang\":\"ar\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1377248521\\/1376974916\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 13 00:28:57 +0000 2013\",\"id\":367080297436684289,\"id_str\":\"367080297436684289\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1360513801,\"id_str\":\"1360513801\",\"name\":\"Renan S\\u00e1tiro\",\"screen_name\":\"renan_satiro\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":290,\"friends_count\":581,\"listed_count\":0,\"created_at\":\"Wed Apr 17 22:38:09 +0000 2013\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2253,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000367125600\\/ea13402e5a94dde54e9b040ad9207db4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000367125600\\/ea13402e5a94dde54e9b040ad9207db4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1360513801\\/1377566638\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Jun 07 21:51:17 +0000 2013\",\"id\":343123019683733505,\"id_str\":\"343123019683733505\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1362034669,\"id_str\":\"1362034669\",\"name\":\"\\u2122\\u221e\\u2003\\u2003\\u2003( \\u2248 T\\u03c9\\u03b9\\u03c4\\u03c4\\u03b5\\u044f\\u0398 \\u2248\\u2122\",\"screen_name\":\"Bonitillo_x2\",\"location\":\"ReP-DM~\\u2665 \\u1eb6\\u0110\\u0129\\u010ctO \\u1eab \\u0160u \\u0e3f\\u00d8\\u00a2\\u1eab \\u2665\",\"profile_location\":null,\"description\":\"`MII BFF @AngelaYatusabeh \\u2665 https:\\/\\/t.co\\/V4X8oC4JW6\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V4X8oC4JW6\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/junior.ortega.37604\",\"display_url\":\"facebook.com\\/junior.ortega.\\u2026\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":1211,\"friends_count\":545,\"listed_count\":5,\"created_at\":\"Thu Apr 18 14:08:17 +0000 2013\",\"favourites_count\":586,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46193,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"030303\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000115279462\\/e8adb775d2ec1ced2d3e34cf15fc867e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000115279462\\/e8adb775d2ec1ced2d3e34cf15fc867e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000713491301\\/1317ee22546051532ecd1d8133f6b57c_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000713491301\\/1317ee22546051532ecd1d8133f6b57c_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1362034669\\/1383172176\",\"profile_link_color\":\"05C1F0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Jun 06 02:42:07 +0000 2013\",\"id\":342471436390240256,\"id_str\":\"342471436390240256\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1458196202,\"id_str\":\"1458196202\",\"name\":\"dora\",\"screen_name\":\"dora85997583\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":497,\"friends_count\":1043,\"listed_count\":0,\"created_at\":\"Sat May 25 22:30:22 +0000 2013\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2114,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3719980194\\/0e838a54ff82eba1e4b8642f2e08dd6d_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3719980194\\/0e838a54ff82eba1e4b8642f2e08dd6d_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Apr 29 11:49:04 +0000 2013\",\"id\":328838338809311232,\"id_str\":\"328838338809311232\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1231476126,\"id_str\":\"1231476126\",\"name\":\"mamad\",\"screen_name\":\"mam0oSh\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\u062f\\u0631 \\u0627\\u06cc\\u0646 \\u0627\\u06a9\\u0627\\u0646\\u062a \\u0634\\u0627\\u0647\\u062f \\u0648\\u062d\\u0634\\u062a\\u0646\\u0627\\u06a9 \\u062a\\u0631\\u06cc\\u0646 \\u0686\\u0633 \\u0646\\u0627\\u0644\\u0647 \\u0647\\u0627 \\u062e\\u0648\\u0627\\u0647\\u06cc\\u062f \\u0628\\u0648\\u062f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1392,\"friends_count\":-41,\"listed_count\":0,\"created_at\":\"Fri Mar 01 21:14:47 +0000 2013\",\"favourites_count\":39,\"utc_offset\":12600,\"time_zone\":\"Tehran\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10626,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535167947363602434\\/Z-DSq7Wc_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535167947363602434\\/Z-DSq7Wc_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1231476126\\/1366626108\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Apr 29 02:18:44 +0000 2013\",\"id\":328694811790024704,\"id_str\":\"328694811790024704\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1387371619,\"id_str\":\"1387371619\",\"name\":\"Chris\\u2122\",\"screen_name\":\"chrisskates317\",\"location\":\"Valduz,Leichstein\",\"profile_location\":null,\"description\":\"My youtube channels are chrisskates317,chrisdoesreviews317,chrisexphazed99, and ExphazedGames. Instagram is Chris_VanDermark Kik is Chris_V317\",\"url\":\"http:\\/\\/t.co\\/n8lftdUUo1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/n8lftdUUo1\",\"expanded_url\":\"http:\\/\\/ask.fm\\/chrisv31700\",\"display_url\":\"ask.fm\\/chrisv31700\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":114,\"listed_count\":0,\"created_at\":\"Sun Apr 28 16:36:45 +0000 2013\",\"favourites_count\":60,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":153,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3586685753\\/31264dfec8b7ad59e626af57b50a3df4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3586685753\\/31264dfec8b7ad59e626af57b50a3df4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387371619\\/1367778474\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Mar 30 17:55:40 +0000 2013\",\"id\":318058960919855104,\"id_str\":\"318058960919855104\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183016636,\"id_str\":\"1183016636\",\"name\":\"\\u266bAlexander\\u266a\\u2122\",\"screen_name\":\"Alexandx3\",\"location\":\"Los Alcarrizos\",\"profile_location\":null,\"description\":\"l\\u2665Basketball | | @KingJames| Propiedad De Jesus De Nazaret\\nRep. Dominicana ;] T.Q.M\",\"url\":\"http:\\/\\/t.co\\/mCdDFZeIUZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mCdDFZeIUZ\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/alex.pena.3760430\",\"display_url\":\"facebook.com\\/alex.pena.3760\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":325,\"friends_count\":258,\"listed_count\":0,\"created_at\":\"Fri Feb 15 15:50:00 +0000 2013\",\"favourites_count\":159,\"utc_offset\":3600,\"time_zone\":\"Amsterdam\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7998,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"E5F50C\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/452512590166380544\\/Sdw673_V.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/452512590166380544\\/Sdw673_V.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/498534191546376192\\/RjAD-2gh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/498534191546376192\\/RjAD-2gh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183016636\\/1407695682\",\"profile_link_color\":\"8C03DB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Mar 02 19:18:21 +0000 2013\",\"id\":307932909124337664,\"id_str\":\"307932909124337664\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":188937623,\"id_str\":\"188937623\",\"name\":\"Danilo \\u270c\\ufe0f\",\"screen_name\":\"danilofuentess\",\"location\":\"Brasil\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":891,\"friends_count\":106,\"listed_count\":68,\"created_at\":\"Thu Sep 09 23:32:32 +0000 2010\",\"favourites_count\":906,\"utc_offset\":-10800,\"time_zone\":\"Santiago\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":447287,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/594142227\\/h8cu9a4lzjaianf4dadg.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/594142227\\/h8cu9a4lzjaianf4dadg.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000035016877\\/b53be4c72b14491cf2236cf92c713626_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000035016877\\/b53be4c72b14491cf2236cf92c713626_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/188937623\\/1354754960\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Feb 23 16:32:01 +0000 2013\",\"id\":305354334500171776,\"id_str\":\"305354334500171776\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1156915609,\"id_str\":\"1156915609\",\"name\":\"Abdulelah\",\"screen_name\":\"alexfis51577603\",\"location\":\"EveryWhere \",\"profile_location\":null,\"description\":\"There are over 10 billion people on the world doing multiple activities and you`re here sitting down just reading my Bio ....... #Loser\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1263,\"friends_count\":210,\"listed_count\":1,\"created_at\":\"Thu Feb 07 11:48:37 +0000 2013\",\"favourites_count\":70,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25138,\"lang\":\"ar\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/427931548105453568\\/9YXJUCph_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/427931548105453568\\/9YXJUCph_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1156915609\\/1396775671\",\"profile_link_color\":\"131516\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620556,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/retweets/266367358078169089.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:16 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "b8f59430cea9667272eaa7d2f71a8d97" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401016" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "99064" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:16 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "60" ], "x-rate-limit-remaining": [ "59" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011670698739; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:16 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "5d48a56df1da8fd4" ] }, "body": { "string": "[{\"created_at\":\"Wed Jul 09 00:08:39 +0000 2014\",\"id\":486663181901627392,\"id_str\":\"486663181901627392\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2390428970,\"id_str\":\"2390428970\",\"name\":\"pppppppppppp\",\"screen_name\":\"MarijuanaProduc\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":44,\"friends_count\":0,\"listed_count\":2,\"created_at\":\"Sat Mar 15 05:00:44 +0000 2014\",\"favourites_count\":17425,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19880,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_6_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_6_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 23:43:38 +0000 2014\",\"id\":486656886268112896,\"id_str\":\"486656886268112896\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2392623769,\"id_str\":\"2392623769\",\"name\":\"aaaaaaallllg\",\"screen_name\":\"MagicalBLKHands\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":63,\"friends_count\":0,\"listed_count\":3,\"created_at\":\"Sun Mar 16 12:12:31 +0000 2014\",\"favourites_count\":19250,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20027,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 23:23:58 +0000 2014\",\"id\":486651938440638465,\"id_str\":\"486651938440638465\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2298388902,\"id_str\":\"2298388902\",\"name\":\"vvvvvvawwwwwm\",\"screen_name\":\"SunriseDaynight\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":45,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Sat Jan 18 19:08:33 +0000 2014\",\"favourites_count\":18044,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19334,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 19:17:48 +0000 2014\",\"id\":486589989140971521,\"id_str\":\"486589989140971521\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2218822532,\"id_str\":\"2218822532\",\"name\":\"mmmmmmmajajoolll\",\"screen_name\":\"CatchFame\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":78,\"friends_count\":0,\"listed_count\":3,\"created_at\":\"Thu Nov 28 03:33:34 +0000 2013\",\"favourites_count\":18913,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":29483,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 18:57:44 +0000 2014\",\"id\":486584940067188736,\"id_str\":\"486584940067188736\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2294010576,\"id_str\":\"2294010576\",\"name\":\"xxxxxxxxxxxx\",\"screen_name\":\"MoneyDisisions\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":155,\"friends_count\":0,\"listed_count\":3,\"created_at\":\"Thu Jan 16 07:13:09 +0000 2014\",\"favourites_count\":20408,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":34732,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/537111499886428161\\/gj1tPxDY_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/537111499886428161\\/gj1tPxDY_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 18:15:21 +0000 2014\",\"id\":486574271783649281,\"id_str\":\"486574271783649281\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2298665443,\"id_str\":\"2298665443\",\"name\":\"xxxxxxjeuwoej\",\"screen_name\":\"Ambasidy\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":149,\"friends_count\":0,\"listed_count\":5,\"created_at\":\"Sat Jan 18 23:23:30 +0000 2014\",\"favourites_count\":30525,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":46956,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Jul 08 17:50:57 +0000 2014\",\"id\":486568132996120576,\"id_str\":\"486568132996120576\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2295646148,\"id_str\":\"2295646148\",\"name\":\"otpsjdhdjdndvdhd\",\"screen_name\":\"marcosahernades\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":674,\"friends_count\":1996,\"listed_count\":4,\"created_at\":\"Fri Jan 17 07:02:44 +0000 2014\",\"favourites_count\":9255,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10726,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_5_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 23 18:00:45 +0000 2013\",\"id\":404308552258318336,\"id_str\":\"404308552258318336\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":586229030,\"id_str\":\"586229030\",\"name\":\"Neha Virk\",\"screen_name\":\"neha_virk98\",\"location\":\"Canada\",\"profile_location\":null,\"description\":\"Your only as tall as your heart will let you be and as small as the world makes you seem 3 -on the brightside, nevershoutnever\",\"url\":\"http:\\/\\/t.co\\/aPy00RvXsP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/aPy00RvXsP\",\"expanded_url\":\"http:\\/\\/instagram.com\\/knee_highsocks\",\"display_url\":\"instagram.com\\/knee_highsocks\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":455,\"friends_count\":1051,\"listed_count\":1,\"created_at\":\"Mon May 21 04:01:10 +0000 2012\",\"favourites_count\":394,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":2227,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/435580933614219264\\/1obsf22D_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/435580933614219264\\/1obsf22D_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586229030\\/1388457095\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 23 13:39:32 +0000 2013\",\"id\":404242817696153600,\"id_str\":\"404242817696153600\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1377248521,\"id_str\":\"1377248521\",\"name\":\"nsoretob\",\"screen_name\":\"nsoooore2012\",\"location\":\"\",\"profile_location\":null,\"description\":\"NSORETOB \\/ -Hyuna-Luv-U-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Wed Apr 24 14:53:57 +0000 2013\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3499,\"lang\":\"ar\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1377248521\\/1376974916\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 17 06:10:33 +0000 2013\",\"id\":401955496942665728,\"id_str\":\"401955496942665728\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1377248521,\"id_str\":\"1377248521\",\"name\":\"nsoretob\",\"screen_name\":\"nsoooore2012\",\"location\":\"\",\"profile_location\":null,\"description\":\"NSORETOB \\/ -Hyuna-Luv-U-\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":23,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Wed Apr 24 14:53:57 +0000 2013\",\"favourites_count\":73,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3499,\"lang\":\"ar\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000833190152\\/badac7a8a5f45fde920e90c8dca68430_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1377248521\\/1376974916\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 13 00:28:57 +0000 2013\",\"id\":367080297436684289,\"id_str\":\"367080297436684289\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1360513801,\"id_str\":\"1360513801\",\"name\":\"Renan S\\u00e1tiro\",\"screen_name\":\"renan_satiro\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":290,\"friends_count\":581,\"listed_count\":0,\"created_at\":\"Wed Apr 17 22:38:09 +0000 2013\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2253,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000367125600\\/ea13402e5a94dde54e9b040ad9207db4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000367125600\\/ea13402e5a94dde54e9b040ad9207db4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1360513801\\/1377566638\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Jun 07 21:51:17 +0000 2013\",\"id\":343123019683733505,\"id_str\":\"343123019683733505\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1362034669,\"id_str\":\"1362034669\",\"name\":\"\\u2122\\u221e\\u2003\\u2003\\u2003( \\u2248 T\\u03c9\\u03b9\\u03c4\\u03c4\\u03b5\\u044f\\u0398 \\u2248\\u2122\",\"screen_name\":\"Bonitillo_x2\",\"location\":\"ReP-DM~\\u2665 \\u1eb6\\u0110\\u0129\\u010ctO \\u1eab \\u0160u \\u0e3f\\u00d8\\u00a2\\u1eab \\u2665\",\"profile_location\":null,\"description\":\"`MII BFF @AngelaYatusabeh \\u2665 https:\\/\\/t.co\\/V4X8oC4JW6\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/V4X8oC4JW6\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/junior.ortega.37604\",\"display_url\":\"facebook.com\\/junior.ortega.\\u2026\",\"indices\":[30,53]}]}},\"protected\":false,\"followers_count\":1211,\"friends_count\":545,\"listed_count\":5,\"created_at\":\"Thu Apr 18 14:08:17 +0000 2013\",\"favourites_count\":586,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":46193,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"030303\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000115279462\\/e8adb775d2ec1ced2d3e34cf15fc867e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000115279462\\/e8adb775d2ec1ced2d3e34cf15fc867e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000713491301\\/1317ee22546051532ecd1d8133f6b57c_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000713491301\\/1317ee22546051532ecd1d8133f6b57c_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1362034669\\/1383172176\",\"profile_link_color\":\"05C1F0\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Jun 06 02:42:07 +0000 2013\",\"id\":342471436390240256,\"id_str\":\"342471436390240256\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1458196202,\"id_str\":\"1458196202\",\"name\":\"dora\",\"screen_name\":\"dora85997583\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":496,\"friends_count\":1043,\"listed_count\":0,\"created_at\":\"Sat May 25 22:30:22 +0000 2013\",\"favourites_count\":1,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2114,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3719980194\\/0e838a54ff82eba1e4b8642f2e08dd6d_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3719980194\\/0e838a54ff82eba1e4b8642f2e08dd6d_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Apr 29 11:49:04 +0000 2013\",\"id\":328838338809311232,\"id_str\":\"328838338809311232\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1231476126,\"id_str\":\"1231476126\",\"name\":\"mamad\",\"screen_name\":\"mam0oSh\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\u062f\\u0631 \\u0627\\u06cc\\u0646 \\u0627\\u06a9\\u0627\\u0646\\u062a \\u0634\\u0627\\u0647\\u062f \\u0648\\u062d\\u0634\\u062a\\u0646\\u0627\\u06a9 \\u062a\\u0631\\u06cc\\u0646 \\u0686\\u0633 \\u0646\\u0627\\u0644\\u0647 \\u0647\\u0627 \\u062e\\u0648\\u0627\\u0647\\u06cc\\u062f \\u0628\\u0648\\u062f\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1392,\"friends_count\":-2,\"listed_count\":0,\"created_at\":\"Fri Mar 01 21:14:47 +0000 2013\",\"favourites_count\":39,\"utc_offset\":12600,\"time_zone\":\"Tehran\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10626,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535167947363602434\\/Z-DSq7Wc_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535167947363602434\\/Z-DSq7Wc_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1231476126\\/1366626108\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Apr 29 02:18:44 +0000 2013\",\"id\":328694811790024704,\"id_str\":\"328694811790024704\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1387371619,\"id_str\":\"1387371619\",\"name\":\"Chris\\u2122\",\"screen_name\":\"chrisskates317\",\"location\":\"Valduz,Leichstein\",\"profile_location\":null,\"description\":\"My youtube channels are chrisskates317,chrisdoesreviews317,chrisexphazed99, and ExphazedGames. Instagram is Chris_VanDermark Kik is Chris_V317\",\"url\":\"http:\\/\\/t.co\\/n8lftdUUo1\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/n8lftdUUo1\",\"expanded_url\":\"http:\\/\\/ask.fm\\/chrisv31700\",\"display_url\":\"ask.fm\\/chrisv31700\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":74,\"friends_count\":114,\"listed_count\":0,\"created_at\":\"Sun Apr 28 16:36:45 +0000 2013\",\"favourites_count\":60,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":153,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3586685753\\/31264dfec8b7ad59e626af57b50a3df4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3586685753\\/31264dfec8b7ad59e626af57b50a3df4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387371619\\/1367778474\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Mar 30 17:55:40 +0000 2013\",\"id\":318058960919855104,\"id_str\":\"318058960919855104\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183016636,\"id_str\":\"1183016636\",\"name\":\"\\u266bAlexander\\u266a\\u2122\",\"screen_name\":\"Alexandx3\",\"location\":\"Los Alcarrizos\",\"profile_location\":null,\"description\":\"l\\u2665Basketball | | @KingJames| Propiedad De Jesus De Nazaret\\nRep. Dominicana ;] T.Q.M\",\"url\":\"http:\\/\\/t.co\\/mCdDFZeIUZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mCdDFZeIUZ\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/alex.pena.3760430\",\"display_url\":\"facebook.com\\/alex.pena.3760\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":325,\"friends_count\":258,\"listed_count\":0,\"created_at\":\"Fri Feb 15 15:50:00 +0000 2013\",\"favourites_count\":159,\"utc_offset\":3600,\"time_zone\":\"Amsterdam\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":7998,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"E5F50C\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/452512590166380544\\/Sdw673_V.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/452512590166380544\\/Sdw673_V.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/498534191546376192\\/RjAD-2gh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/498534191546376192\\/RjAD-2gh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183016636\\/1407695682\",\"profile_link_color\":\"8C03DB\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Mar 02 19:18:21 +0000 2013\",\"id\":307932909124337664,\"id_str\":\"307932909124337664\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":188937623,\"id_str\":\"188937623\",\"name\":\"Danilo \\u270c\\ufe0f\",\"screen_name\":\"danilofuentess\",\"location\":\"Brasil\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":891,\"friends_count\":106,\"listed_count\":68,\"created_at\":\"Thu Sep 09 23:32:32 +0000 2010\",\"favourites_count\":906,\"utc_offset\":-10800,\"time_zone\":\"Santiago\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":447286,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/594142227\\/h8cu9a4lzjaianf4dadg.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/594142227\\/h8cu9a4lzjaianf4dadg.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000035016877\\/b53be4c72b14491cf2236cf92c713626_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000035016877\\/b53be4c72b14491cf2236cf92c713626_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/188937623\\/1354754960\",\"profile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Feb 23 16:32:01 +0000 2013\",\"id\":305354334500171776,\"id_str\":\"305354334500171776\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1156915609,\"id_str\":\"1156915609\",\"name\":\"Abdulelah\",\"screen_name\":\"alexfis51577603\",\"location\":\"EveryWhere \",\"profile_location\":null,\"description\":\"There are over 10 billion people on the world doing multiple activities and you`re here sitting down just reading my Bio ....... #Loser\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1263,\"friends_count\":210,\"listed_count\":1,\"created_at\":\"Thu Feb 07 11:48:37 +0000 2013\",\"favourites_count\":70,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":25138,\"lang\":\"ar\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/427931548105453568\\/9YXJUCph_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/427931548105453568\\/9YXJUCph_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1156915609\\/1396775671\",\"profile_link_color\":\"131516\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621109,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":220,\"favorite_count\":153,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":220,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}]},\"favorited\":false,\"retweeted\":true,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testretweetsofme.json000066400000000000000000000133121265716604700213540ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/retweets_of_me.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:32 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "f5ec81e162089acc3f7d4332b2745ee0" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "a4cea9fa43cb380c" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009250598166; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:32 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:32 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380992" ] }, "body": { "string": "[]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/retweets_of_me.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:18 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c6e4e908cc5d6db58d5c88b597d4a5b5" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401018" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:18 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740011891849986; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:18 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "dce0bbbe641c41de" ] }, "body": { "string": "[]" } } } ] }tweepy-3.5.0/cassettes/testsavedsearches.json000066400000000000000000000742201265716604700214700ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/saved_searches/create.json?query=test", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "64f689a32d8d5a25" ], "content-length": [ "128" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:34 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCIbgbwJKAToHaWQiJTQ1NDU4ZTI0NDJkZDhh%250AYzA1OWU2OWFlMmJiYmM2NTJhOgxjc3JmX2lkIiUyMDhlNmE5YzQyNTQ1NDE4%250AYTRlYWJhNzJkOTE3MDNiNQ%253D%253D--3b3c40812818c5ac25c24b4e1215e96c27b17f0d; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738009388997740; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:34 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:34 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:34 UTC" ], "x-connection-hash": [ "5d5d241a00b324232fb38e8b05cb1875" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.17397" ], "status": [ "200 OK" ], "x-mid": [ "9a5a4dd258e874adaf8dbc15c636196d2727ab5e" ], "etag": [ "\"223a39eda4f0164a776d2b927445ffc0\"" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 20:41:34 +0000 2014\",\"id_str\":\"338202972\",\"id\":338202972,\"position\":null,\"query\":\"test\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/saved_searches/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:34 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ee1432324a1f1fd54d0b9044cd20bf70" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "87f27ab8643724b6" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "130" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009481054558; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:34 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:34 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380994" ] }, "body": { "string": "[{\"id\":338202972,\"id_str\":\"338202972\",\"query\":\"test\",\"name\":\"test\",\"position\":null,\"created_at\":\"Sun Nov 30 20:41:34 +0000 2014\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/saved_searches/show/338202972.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417380995" ], "content-length": [ "128" ], "etag": [ "\"223a39eda4f0164a776d2b927445ffc0\"" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:35 GMT" ], "x-rate-limit-remaining": [ "14" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-limit": [ "15" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:35 UTC" ], "x-transaction": [ "b2d160c712261408" ], "x-connection-hash": [ "76545bd7d9db19548603304d27b17bbd" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:35 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCL7lbwJKAToHaWQiJWFmZDRhMGMyOTNmNWQx%250ANDVkYWNiYzg1MGQ3NTdlNWY1--72abeb2d1a8ffc42c0af303c5d16ae7a868dd158; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738009514091083; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:35 UTC" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.08162" ], "status": [ "200 OK" ], "x-mid": [ "5ce617557be5fbbf16df9a707945335fcdd04038" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 20:41:34 +0000 2014\",\"id_str\":\"338202972\",\"id\":338202972,\"position\":null,\"query\":\"test\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/saved_searches/destroy/338202972.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "650d97aa7465d742" ], "content-length": [ "128" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:36 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCCLpbwJKAToHaWQiJTI3NjlkNjNiOGY4NDhl%250AMTg5M2JhOWRkZGJlNDU4MjRmOgxjc3JmX2lkIiU0NjAzMGZiODczZGI3MzNl%250AMjU1YThlYWQ3Mzk0YWFmNQ%253D%253D--f306ac128a8311260944f081d6b2c358373b400c; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738009610852384; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:36 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:36 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:36 UTC" ], "x-connection-hash": [ "637847932a124da5b730fc637fab0448" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.20223" ], "status": [ "200 OK" ], "x-mid": [ "4f6c568524d4a5d7a070682c835b0be2ea38d539" ], "etag": [ "\"223a39eda4f0164a776d2b927445ffc0\"" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 20:41:34 +0000 2014\",\"id_str\":\"338202972\",\"id\":338202972,\"position\":null,\"query\":\"test\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/saved_searches/create.json?query=test", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "747e0250efa9c887" ], "content-length": [ "128" ], "etag": [ "\"075f32c8f3861c887ed90139a21632f9\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:19 GMT" ], "x-runtime": [ "0.20527" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:19 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCMVwoQNKAToHaWQiJTJhMWFiNzQxZWQ4YzVk%250AOTRlMWY4ZWVhYTRlMjFkMzNiOgxjc3JmX2lkIiVlNmY1NGJjMzRjZTkwMzc4%250AYWU3MzFmY2VkODA0YmNjNw%253D%253D--1c0e4e6a054c695d0843fdf2cb62c8369d103805; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740011930977011; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:19 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:19 UTC" ], "x-connection-hash": [ "d143e5ca5b6c5af61271aa65515b24d5" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "2a037743f3b0bd2fc2b550377c41c2e89789683e" ] }, "body": { "string": "{\"created_at\":\"Mon Dec 01 02:15:19 +0000 2014\",\"id_str\":\"338218251\",\"id\":338218251,\"position\":null,\"query\":\"test\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/saved_searches/list.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:20 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "7b0d2d3184123d8c983350d204c7de21" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401020" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:20 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740012047533094; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:20 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "4c05f1d82b579742" ] }, "body": { "string": "[]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/saved_searches/show/338218251.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401021" ], "x-xss-protection": [ "1; mode=block" ], "content-length": [ "128" ], "etag": [ "\"919d90cae1cf1054985296f711a84408\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:21 GMT" ], "x-runtime": [ "0.06049" ], "x-rate-limit-remaining": [ "14" ], "x-rate-limit-limit": [ "15" ], "date": [ "Mon, 01 Dec 2014 02:15:21 UTC" ], "x-transaction": [ "f802afdeba716cfc" ], "x-connection-hash": [ "366ae07937200acd81ad757ca1ff7ccc" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114e701548a" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:21 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCI13oQNKAToHaWQiJTA4ZWU3YWNhOTM0ZTQz%250ANzczZjdmOGYyY2NkZmJjNDFl--67c3a2ea98c0191882298f25a787e38675df3df7; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740012111548822; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:21 UTC" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "9a923259c6911ab4871b4ae28638f02103afa7bc" ] }, "body": { "string": "{\"created_at\":\"Mon Dec 01 02:15:19 +0000 2014\",\"id\":338218251,\"position\":null,\"query\":\"test\",\"id_str\":\"338218251\",\"name\":\"test\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/saved_searches/destroy/338218251.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "da105739144b6974" ], "content-length": [ "128" ], "etag": [ "\"075f32c8f3861c887ed90139a21632f9\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:21 GMT" ], "x-runtime": [ "0.21541" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:21 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCDZ6oQNKAToHaWQiJTk2MDQzYWQwOTE5MGMx%250AYzJiYWEwYTQ3ZmNkZjQxYzVkOgxjc3JmX2lkIiUyNTdlNjJkN2ZhNzg3YWZj%250AZmRiMWUyNzM1YWMwN2Y0Yw%253D%253D--c6674f67ea3789c4b82852f69bfe381d78976c90; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740012166389032; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:22 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:22 UTC" ], "x-connection-hash": [ "4b00294f88fdbf3f856cc95335d19f34" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "4dbab56b8a5e1279d9178c95c238b638ea1bc993" ] }, "body": { "string": "{\"created_at\":\"Mon Dec 01 02:15:19 +0000 2014\",\"id_str\":\"338218251\",\"id\":338218251,\"position\":null,\"query\":\"test\",\"name\":\"test\"}" } } } ] }tweepy-3.5.0/cassettes/testsearch.json000066400000000000000000002670731265716604700201270ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/search/tweets.json?q=tweepy", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:36 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "aa7d99ad5580a117ecd39b374cb001ef" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "40da24bcfd5dd4aa" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "37521" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009689317652; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:36 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:36 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380996" ] }, "body": { "string": "{\"statuses\":[{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 20:31:25 +0000 2014\",\"id\":539154756279996417,\"id_str\":\"539154756279996417\",\"text\":\"Thanks for following me.. tweepy.. #\\\"@LAcaliforniax @DrePantelliii\\\" via http:\\/\\/t.co\\/IhEc22myT7\",\"source\":\"\\u003ca href=\\\"https:\\/\\/unfollowers.com\\\" rel=\\\"nofollow\\\"\\u003eUnfollowers.me\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":458122804,\"id_str\":\"458122804\",\"name\":\"Arpit Agrawal\",\"screen_name\":\"TweetyArpit\",\"location\":\" Mathura , INDIA.\",\"profile_location\":null,\"description\":\"Pure S A L M A N I A C..... M E G A.......... H U G E.......... S U P E R........... Fan Of SALMAN KHAN @beingsalmankhan\",\"url\":\"http:\\/\\/t.co\\/3Foy5SgyuW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3Foy5SgyuW\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/tweetyarpit\",\"display_url\":\"Instagram.com\\/tweetyarpit\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6993,\"friends_count\":6662,\"listed_count\":6,\"created_at\":\"Sun Jan 08 06:14:21 +0000 2012\",\"favourites_count\":74,\"utc_offset\":19800,\"time_zone\":\"New Delhi\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10899,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EBEBEB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/465218185919082496\\/dt3vvHXP_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/465218185919082496\\/dt3vvHXP_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/458122804\\/1376511316\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"DFDFDF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LAcaliforniax\",\"name\":\"marti\",\"id\":829398948,\"id_str\":\"829398948\",\"indices\":[37,51]},{\"screen_name\":\"DrePantelliii\",\"name\":\"Dre\",\"id\":426886468,\"id_str\":\"426886468\",\"indices\":[52,66]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IhEc22myT7\",\"expanded_url\":\"http:\\/\\/uapp.ly\",\"display_url\":\"uapp.ly\",\"indices\":[72,94]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 19:14:48 +0000 2014\",\"id\":539135476301836288,\"id_str\":\"539135476301836288\",\"text\":\"i missed you!!! \\\"@Ndai_mercy: @GideonMaria I miss my EHS tweepy maaan but ama be a good tweep and keep calm \\\"\\\"\\\"D\\\"\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2192748203,\"id_str\":\"2192748203\",\"name\":\"D I N K Y\\u00ae\",\"screen_name\":\"GideonMaria\",\"location\":\"Windhoek, Namibia\",\"profile_location\":null,\"description\":\"Tall. Cant dance...why are you reading this? #CFC http:\\/\\/t.co\\/5KkXnmHbgX\",\"url\":\"http:\\/\\/t.co\\/wy51rwNNAe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wy51rwNNAe\",\"expanded_url\":\"http:\\/\\/facebook.com\\/maria.gideon\",\"display_url\":\"facebook.com\\/maria.gideon\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5KkXnmHbgX\",\"expanded_url\":\"http:\\/\\/instagram.com\\/maria_gideon\",\"display_url\":\"instagram.com\\/maria_gideon\",\"indices\":[52,74]}]}},\"protected\":false,\"followers_count\":620,\"friends_count\":514,\"listed_count\":0,\"created_at\":\"Sat Nov 23 13:58:11 +0000 2013\",\"favourites_count\":376,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9552,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534667787856138240\\/zMV56cfb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534667787856138240\\/zMV56cfb_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2192748203\\/1416310375\",\"profile_link_color\":\"990099\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"place\":{\"id\":\"3df4e3a5f8fa480a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3df4e3a5f8fa480a.json\",\"place_type\":\"country\",\"name\":\"Namibia\",\"full_name\":\"Namibia\",\"country_code\":\"NA\",\"country\":\"Namibia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[11.7176212900001,-28.9593681839999],[25.2597807210002,-28.9593681839999],[25.2597807210002,-16.9510572309999],[11.7176212900001,-16.9510572309999]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Ndai_mercy\",\"name\":\"Mercy N Haindongo\",\"id\":1466645430,\"id_str\":\"1466645430\",\"indices\":[17,28]},{\"screen_name\":\"GideonMaria\",\"name\":\"D I N K Y\\u00ae\",\"id\":2192748203,\"id_str\":\"2192748203\",\"indices\":[30,42]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 18:16:36 +0000 2014\",\"id\":539120829981003776,\"id_str\":\"539120829981003776\",\"text\":\"@Qu3ntin0 @abdulnasir44 ok what do you need tweepy, PIL etc\",\"source\":\"\\u003ca href=\\\"https:\\/\\/twitter.com\\/Qu3ntin0\\\" rel=\\\"nofollow\\\"\\u003eQu3ntin0 Twitter Bots\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539120702616793089,\"in_reply_to_status_id_str\":\"539120702616793089\",\"in_reply_to_user_id\":2602520816,\"in_reply_to_user_id_str\":\"2602520816\",\"in_reply_to_screen_name\":\"Qu3ntin0\",\"user\":{\"id\":625101159,\"id_str\":\"625101159\",\"name\":\"Qu3ntin0 Bot\",\"screen_name\":\"Qu3ntin0_ebooks\",\"location\":\"\",\"profile_location\":null,\"description\":\"ALL DOGECOIN & @TIPDOGE RELATED TWEETS ARE FAKE. Follow me and I follow you. Made by @Qu3ntin0\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":120,\"friends_count\":193,\"listed_count\":0,\"created_at\":\"Mon Jul 02 21:39:08 +0000 2012\",\"favourites_count\":146,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1462,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/494192452345950208\\/8GvTudeH_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/494192452345950208\\/8GvTudeH_normal.png\",\"profile_link_color\":\"2CCACF\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Qu3ntin0\",\"name\":\"Mr. Qu3ntin0\",\"id\":2602520816,\"id_str\":\"2602520816\",\"indices\":[0,9]},{\"screen_name\":\"abdulnasir44\",\"name\":\"Anonymous African\",\"id\":703441036,\"id_str\":\"703441036\",\"indices\":[10,23]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 15:57:28 +0000 2014\",\"id\":539085815977349120,\"id_str\":\"539085815977349120\",\"text\":\"Night tweepy ..\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":550757726,\"id_str\":\"550757726\",\"name\":\"Nicha AdhwaVallery\\u2122\",\"screen_name\":\"NishaDevista\",\"location\":\"Purwokerto, jateng, indonesia\",\"profile_location\":null,\"description\":\"Take my hand and feel what i shuffer, Hold my hand hold the bittersweet of life |\",\"url\":\"http:\\/\\/t.co\\/pSahMdZfto\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pSahMdZfto\",\"expanded_url\":\"http:\\/\\/facebook.com\\/cica.adde\",\"display_url\":\"facebook.com\\/cica.adde\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":503,\"listed_count\":0,\"created_at\":\"Wed Apr 11 06:41:05 +0000 2012\",\"favourites_count\":6,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":456,\"lang\":\"id\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"709397\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000121024442\\/6bcf4ce98886c066b64fc54002ce7116.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000121024442\\/6bcf4ce98886c066b64fc54002ce7116.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531923194077515777\\/2BfAWHK3_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531923194077515777\\/2BfAWHK3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/550757726\\/1416747363\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 13:56:29 +0000 2014\",\"id\":539055365854212097,\"id_str\":\"539055365854212097\",\"text\":\"hay tweepy, selalu berbahagiakah kaliand.. Amin. bye Nopember ;)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1008846416,\"id_str\":\"1008846416\",\"name\":\"Ayu rinii\",\"screen_name\":\"antariini\",\"location\":\"denpasar\",\"profile_location\":null,\"description\":\"please keep the all of your life plans, remains consistent. continue the dream scenario. believe you can do it, nothing is wasted.\",\"url\":\"http:\\/\\/t.co\\/OGLMF56gwc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OGLMF56gwc\",\"expanded_url\":\"http:\\/\\/kipaskertas22.wordpress.com\",\"display_url\":\"kipaskertas22.wordpress.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":121,\"listed_count\":0,\"created_at\":\"Thu Dec 13 13:42:29 +0000 2012\",\"favourites_count\":217,\"utc_offset\":25200,\"time_zone\":\"Bangkok\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1992,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"94D487\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/526401980277596161\\/v7uhRonF.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/526401980277596161\\/v7uhRonF.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/525619869895516160\\/YgCPc372_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/525619869895516160\\/YgCPc372_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008846416\\/1402068576\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"place\":{\"id\":\"f57d760962aa72a0\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/f57d760962aa72a0.json\",\"place_type\":\"city\",\"name\":\"Denpasar Selatan\",\"full_name\":\"Denpasar Selatan, Denpasar\",\"country_code\":\"ID\",\"country\":\"Indonesia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[115.185377,-8.746756],[115.266902,-8.746756],[115.266902,-8.6651804],[115.185377,-8.6651804]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 12:53:09 +0000 2014\",\"id\":539039429747154944,\"id_str\":\"539039429747154944\",\"text\":\"setup.py\\u304b\\u3089\\u30a4\\u30f3\\u30b9\\u30c8\\u30fc\\u30eb\\u3059\\u308b\\u3068\\u666e\\u901a\\u306b\\u5165\\u3063\\u305f\\u306e\\u3067\\u3001tweepy\\u3001Python3\\u3067\\u52d5\\u304b\\u3059\\u3002\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 12:02:45 +0000 2014\",\"id\":539026744552861696,\"id_str\":\"539026744552861696\",\"text\":\"Tweepy\\u306egithub\\u306f\\u3053\\u306e\\u3053\\u3001\\u3063\\u3068\\u3002 https:\\/\\/t.co\\/x3w9dorgcM\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x3w9dorgcM\",\"expanded_url\":\"https:\\/\\/github.com\\/tweepy\\/tweepy\",\"display_url\":\"github.com\\/tweepy\\/tweepy\",\"indices\":[22,45]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 12:01:53 +0000 2014\",\"id\":539026526939795456,\"id_str\":\"539026526939795456\",\"text\":\"tweepy\\u3082\\u4e00\\u5fdc\\u8a66\\u3059\\u304b\\u30fb\\u30fb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 11:52:25 +0000 2014\",\"id\":539024144466059265,\"id_str\":\"539024144466059265\",\"text\":\"twitter-python\\u3068TwitterAPI\\u3068Tweepy\\u3068\\u4f55\\u304c\\u3069\\u30fc\\u306a\\u3063\\u3066\\u308b\\u306e\\u304b\\u660e\\u3089\\u304b\\u306b\\u3057\\u305f\\u3044\\u304c\\u4eca\\u306f\\u3050\\u3042\\u30fc\\u3067\\u3044\\u3044\\u3084\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 11:13:56 +0000 2014\",\"id\":539014459982090240,\"id_str\":\"539014459982090240\",\"text\":\"We compared #tweepy vs #pythontwitter - see results: http:\\/\\/t.co\\/seVtssBvsT\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.techwars.io\\\" rel=\\\"nofollow\\\"\\u003eTechWars\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2558427012,\"id_str\":\"2558427012\",\"name\":\"TechWars\",\"screen_name\":\"TechWars_io\",\"location\":\"Comparing Every Tech!\",\"profile_location\":null,\"description\":\"TechWars is a technology comparison engine that compares a variety of 32,031 Programming Languages, SaaS & PaaS services, CRM's, opensource frameworks & plugins\",\"url\":\"http:\\/\\/t.co\\/G1UyfUv0uN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/G1UyfUv0uN\",\"expanded_url\":\"http:\\/\\/www.techwars.io\",\"display_url\":\"techwars.io\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":478,\"friends_count\":9,\"listed_count\":42,\"created_at\":\"Tue Jun 10 07:30:09 +0000 2014\",\"favourites_count\":49,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":156476,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496979329880825857\\/7wW65fja_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496979329880825857\\/7wW65fja_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"tweepy\",\"indices\":[12,19]},{\"text\":\"pythontwitter\",\"indices\":[23,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/seVtssBvsT\",\"expanded_url\":\"http:\\/\\/www.techwars.io\\/fight\\/tweepy\\/pythontwitter\\/\",\"display_url\":\"techwars.io\\/fight\\/tweepy\\/p\\u2026\",\"indices\":[53,75]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 10:04:57 +0000 2014\",\"id\":538997100063645696,\"id_str\":\"538997100063645696\",\"text\":\"Tweepy, pip install \\u3067\\u6765\\u306a\\u3044\\u3093\\u3060\\u3088\\u3002\\u3002python3\\u3060\\u304b\\u3089\\u304b\\u3002 Get All Follower IDs in Twitter by Tweepy http:\\/\\/t.co\\/03M46qg9wd\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":73,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/03M46qg9wd\",\"expanded_url\":\"http:\\/\\/stackoverflow.com\\/questions\\/17431807\\/get-all-follower-ids-in-twitter-by-tweepy\",\"display_url\":\"stackoverflow.com\\/questions\\/1743\\u2026\",\"indices\":[84,106]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 08:09:39 +0000 2014\",\"id\":538968085420470273,\"id_str\":\"538968085420470273\",\"text\":\"@CynicalOreo: Yet no talky to Tweepy.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538967946907770880,\"in_reply_to_status_id_str\":\"538967946907770880\",\"in_reply_to_user_id\":975053564,\"in_reply_to_user_id_str\":\"975053564\",\"in_reply_to_screen_name\":\"CynicalOreo\",\"user\":{\"id\":471178262,\"id_str\":\"471178262\",\"name\":\"Skittles\",\"screen_name\":\"CMTwEeP\",\"location\":\"\",\"profile_location\":null,\"description\":\"Call me Skittles, The Bae-Liest Of Baes.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2652,\"friends_count\":311,\"listed_count\":25,\"created_at\":\"Sun Jan 22 15:48:58 +0000 2012\",\"favourites_count\":16306,\"utc_offset\":39600,\"time_zone\":\"Sydney\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":89844,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"E038CA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/527035740870283265\\/ZjQ3ZxP1.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/527035740870283265\\/ZjQ3ZxP1.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/537136790507761664\\/_0kYSKJn_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/537136790507761664\\/_0kYSKJn_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/471178262\\/1415948045\",\"profile_link_color\":\"E038CA\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CynicalOreo\",\"name\":\"\\u043a\\u03b1\\u0443\\u2113\\u03b1\\u2113\\u03b1 3:16\",\"id\":975053564,\"id_str\":\"975053564\",\"indices\":[0,12]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"it\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 05:46:21 +0000 2014\",\"id\":538932023361277952,\"id_str\":\"538932023361277952\",\"text\":\"#BuonGiorno mondo crudele! #tweepy #python\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003etweetbotpy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":262232737,\"id_str\":\"262232737\",\"name\":\"b4d_tR1p\",\"screen_name\":\"b4d_tR1p\",\"location\":\"Bali Island - 127.0.0.1\",\"profile_location\":null,\"description\":\"CyberPunk -\\r\\nITSecurity - Unix Evangelist,\\u00a0lost in the network from 56kb up to date!\",\"url\":\"http:\\/\\/t.co\\/Zwekr7HYNg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Zwekr7HYNg\",\"expanded_url\":\"http:\\/\\/b4dtr1p.tk\",\"display_url\":\"b4dtr1p.tk\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":698,\"friends_count\":1258,\"listed_count\":30,\"created_at\":\"Mon Mar 07 16:58:50 +0000 2011\",\"favourites_count\":430,\"utc_offset\":3600,\"time_zone\":\"Rome\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20536,\"lang\":\"it\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"313627\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/759823242\\/bdf05871a3a827f51cd51238e73d0f39.gif\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/759823242\\/bdf05871a3a827f51cd51238e73d0f39.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534246432392609792\\/sXJfRsew_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534246432392609792\\/sXJfRsew_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/262232737\\/1416743912\",\"profile_link_color\":\"DB0D28\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BuonGiorno\",\"indices\":[0,11]},{\"text\":\"tweepy\",\"indices\":[27,34]},{\"text\":\"python\",\"indices\":[35,42]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"it\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 03:45:58 +0000 2014\",\"id\":538901726930423808,\"id_str\":\"538901726930423808\",\"text\":\"tweepy!\",\"source\":\"\\u003ca href=\\\"https:\\/\\/twitter.com\\/_yojello\\\" rel=\\\"nofollow\\\"\\u003esamplebot14\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":84904483,\"id_str\":\"84904483\",\"name\":\"backpack tweets\",\"screen_name\":\"_yojello\",\"location\":\"In Your Heart\",\"profile_location\":null,\"description\":\"dang it\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":350,\"friends_count\":341,\"listed_count\":0,\"created_at\":\"Sat Oct 24 18:04:37 +0000 2009\",\"favourites_count\":4025,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":17672,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"D5FA3F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/448333533\\/162910_188692264476211_100000063177907_722135_511164_n.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/448333533\\/162910_188692264476211_100000063177907_722135_511164_n.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530242797958230017\\/0bDCuXNI_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530242797958230017\\/0bDCuXNI_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/84904483\\/1407435112\",\"profile_link_color\":\"5EE100\",\"profile_sidebar_border_color\":\"710068\",\"profile_sidebar_fill_color\":\"AD009F\",\"profile_text_color\":\"C4F500\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 03:19:32 +0000 2014\",\"id\":538895074235400194,\"id_str\":\"538895074235400194\",\"text\":\"@FunkingSexy hi tweepy...wish u the same dear:-)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538888077058392065,\"in_reply_to_status_id_str\":\"538888077058392065\",\"in_reply_to_user_id\":2217237618,\"in_reply_to_user_id_str\":\"2217237618\",\"in_reply_to_screen_name\":\"FunkingSexy\",\"user\":{\"id\":110928820,\"id_str\":\"110928820\",\"name\":\"SRK\",\"screen_name\":\"LivenLoveAll\",\"location\":\"India\",\"profile_location\":null,\"description\":\"Unlock it by opening a conversation with me:-)\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32,\"friends_count\":72,\"listed_count\":0,\"created_at\":\"Wed Feb 03 07:01:27 +0000 2010\",\"favourites_count\":1493,\"utc_offset\":19800,\"time_zone\":\"Chennai\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":733,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/513742368084750337\\/XdK4Z7Fw_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/513742368084750337\\/XdK4Z7Fw_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/110928820\\/1402649450\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"FunkingSexy\",\"name\":\"Being Sexy\",\"id\":2217237618,\"id_str\":\"2217237618\",\"indices\":[0,12]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}],\"search_metadata\":{\"completed_in\":0.033,\"max_id\":539154756279996417,\"max_id_str\":\"539154756279996417\",\"next_results\":\"?max_id=538895074235400193&q=tweepy&include_entities=1\",\"query\":\"tweepy\",\"refresh_url\":\"?since_id=539154756279996417&q=tweepy&include_entities=1\",\"count\":15,\"since_id\":0,\"since_id_str\":\"0\"}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/search/tweets.json?q=tweepy", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:22 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "630360e5e236728015745a5100a5cb7d" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401022" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "41520" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:22 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740012281198528; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:22 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "125fad0a070a375c" ] }, "body": { "string": "{\"statuses\":[{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 23:23:07 +0000 2014\",\"id\":539197965400014848,\"id_str\":\"539197965400014848\",\"text\":\"Sleeeeeep tiiiiiime \\ud83d\\ude2a nighty night tweepy pies \\ud83d\\ude1a\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":46423770,\"id_str\":\"46423770\",\"name\":\"Lucie Jane\",\"screen_name\":\"Ms_Ljk\",\"location\":\"Littlehampton, Sussex\",\"profile_location\":null,\"description\":\"Southerner, Leo, A Bit Ditzy | Mummy to Oliver |@StBarnabasHouse |@ChestnutSussex |Live.Laugh.Love | SupportOurSoldiers | Seize That One Moment In Time\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":801,\"friends_count\":1873,\"listed_count\":9,\"created_at\":\"Thu Jun 11 16:23:52 +0000 2009\",\"favourites_count\":170,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":13689,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DB1F9F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/862793812\\/732fcffc4a3af64ff8075b8bf24c52df.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/862793812\\/732fcffc4a3af64ff8075b8bf24c52df.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/517061832935477250\\/DJsvnJNq_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/517061832935477250\\/DJsvnJNq_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/46423770\\/1412795848\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"it\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 23:00:02 +0000 2014\",\"id\":539192154581893121,\"id_str\":\"539192154581893121\",\"text\":\"#BuonaNotte e fate i bravi! #tweepy #python\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003etweetbotpy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":262232737,\"id_str\":\"262232737\",\"name\":\"b4d_tR1p\",\"screen_name\":\"b4d_tR1p\",\"location\":\"Bali Island - 127.0.0.1\",\"profile_location\":null,\"description\":\"CyberPunk -\\r\\nITSecurity - Unix Evangelist,\\u00a0lost in the network from 56kb up to date!\",\"url\":\"http:\\/\\/t.co\\/Zwekr7HYNg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Zwekr7HYNg\",\"expanded_url\":\"http:\\/\\/b4dtr1p.tk\",\"display_url\":\"b4dtr1p.tk\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":698,\"friends_count\":1258,\"listed_count\":30,\"created_at\":\"Mon Mar 07 16:58:50 +0000 2011\",\"favourites_count\":430,\"utc_offset\":3600,\"time_zone\":\"Rome\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":20537,\"lang\":\"it\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"313627\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/759823242\\/bdf05871a3a827f51cd51238e73d0f39.gif\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/759823242\\/bdf05871a3a827f51cd51238e73d0f39.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534246432392609792\\/sXJfRsew_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534246432392609792\\/sXJfRsew_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/262232737\\/1416743912\",\"profile_link_color\":\"DB0D28\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"BuonaNotte\",\"indices\":[0,11]},{\"text\":\"tweepy\",\"indices\":[28,35]},{\"text\":\"python\",\"indices\":[36,43]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"it\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 21:43:09 +0000 2014\",\"id\":539172808446996480,\"id_str\":\"539172808446996480\",\"text\":\"RT @artwisanggeni: #python tweepy 3.0: Twitter library for python http:\\/\\/t.co\\/D6gDh0bEUG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":8405322,\"id_str\":\"8405322\",\"name\":\"Roger Fernandez\",\"screen_name\":\"emencia\",\"location\":\"Paris\",\"profile_location\":null,\"description\":\"Emencia CEO. Topics : Responsive Web Design, Foundation, Python, Django, CMS, E-commerce, Hosting, Xen, Nginx Debian, HTML5, Buildout, Connected objects, Docker\",\"url\":\"http:\\/\\/t.co\\/57GBM9l2db\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/57GBM9l2db\",\"expanded_url\":\"http:\\/\\/www.emencia.com\",\"display_url\":\"emencia.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":801,\"friends_count\":1353,\"listed_count\":54,\"created_at\":\"Fri Aug 24 14:04:37 +0000 2007\",\"favourites_count\":25,\"utc_offset\":3600,\"time_zone\":\"Paris\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6330,\"lang\":\"fr\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"730950\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/472993198529581056\\/zes927C1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/472993198529581056\\/zes927C1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/8405322\\/1349176777\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 21:23:13 +0000 2014\",\"id\":539167790729404416,\"id_str\":\"539167790729404416\",\"text\":\"#python tweepy 3.0: Twitter library for python http:\\/\\/t.co\\/D6gDh0bEUG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/dlvr.it\\\" rel=\\\"nofollow\\\"\\u003edlvr.it\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":929084149,\"id_str\":\"929084149\",\"name\":\"Arteri Wisanggeni\",\"screen_name\":\"artwisanggeni\",\"location\":\"Yogyakarta\",\"profile_location\":null,\"description\":\"We've had our share of hard times, But that's the price we paid\\r\\nAnd through it all we kept the promise that we made, I swear you'll never be lonely.\",\"url\":\"http:\\/\\/t.co\\/8Q0jl1AtKI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8Q0jl1AtKI\",\"expanded_url\":\"http:\\/\\/immortal.ucoz.com\",\"display_url\":\"immortal.ucoz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":122,\"friends_count\":61,\"listed_count\":11,\"created_at\":\"Tue Nov 06 05:44:46 +0000 2012\",\"favourites_count\":14,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":75065,\"lang\":\"en-gb\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000113347361\\/14a4001fdcadb7bedc32306b371968c9.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000113347361\\/14a4001fdcadb7bedc32306b371968c9.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813636657\\/599521f69e2bc210a57323b64d8e39e6_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813636657\\/599521f69e2bc210a57323b64d8e39e6_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/929084149\\/1384047845\",\"profile_link_color\":\"870202\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"python\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/D6gDh0bEUG\",\"expanded_url\":\"http:\\/\\/goo.gl\\/J3CV5Y\",\"display_url\":\"goo.gl\\/J3CV5Y\",\"indices\":[47,69]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"python\",\"indices\":[19,26]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"artwisanggeni\",\"name\":\"Arteri Wisanggeni\",\"id\":929084149,\"id_str\":\"929084149\",\"indices\":[3,17]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/D6gDh0bEUG\",\"expanded_url\":\"http:\\/\\/goo.gl\\/J3CV5Y\",\"display_url\":\"goo.gl\\/J3CV5Y\",\"indices\":[66,88]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 21:23:13 +0000 2014\",\"id\":539167790729404416,\"id_str\":\"539167790729404416\",\"text\":\"#python tweepy 3.0: Twitter library for python http:\\/\\/t.co\\/D6gDh0bEUG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/dlvr.it\\\" rel=\\\"nofollow\\\"\\u003edlvr.it\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":929084149,\"id_str\":\"929084149\",\"name\":\"Arteri Wisanggeni\",\"screen_name\":\"artwisanggeni\",\"location\":\"Yogyakarta\",\"profile_location\":null,\"description\":\"We've had our share of hard times, But that's the price we paid\\r\\nAnd through it all we kept the promise that we made, I swear you'll never be lonely.\",\"url\":\"http:\\/\\/t.co\\/8Q0jl1AtKI\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8Q0jl1AtKI\",\"expanded_url\":\"http:\\/\\/immortal.ucoz.com\",\"display_url\":\"immortal.ucoz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":122,\"friends_count\":61,\"listed_count\":11,\"created_at\":\"Tue Nov 06 05:44:46 +0000 2012\",\"favourites_count\":14,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":75065,\"lang\":\"en-gb\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000113347361\\/14a4001fdcadb7bedc32306b371968c9.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000113347361\\/14a4001fdcadb7bedc32306b371968c9.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813636657\\/599521f69e2bc210a57323b64d8e39e6_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813636657\\/599521f69e2bc210a57323b64d8e39e6_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/929084149\\/1384047845\",\"profile_link_color\":\"870202\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color\":\"3C3940\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"python\",\"indices\":[0,7]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/D6gDh0bEUG\",\"expanded_url\":\"http:\\/\\/goo.gl\\/J3CV5Y\",\"display_url\":\"goo.gl\\/J3CV5Y\",\"indices\":[47,69]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 21:18:05 +0000 2014\",\"id\":539166499936927745,\"id_str\":\"539166499936927745\",\"text\":\"tweepy - Twitter library for python pypi: http:\\/\\/t.co\\/HSPMiL740F www: http:\\/\\/t.co\\/WIkwD3DhMd #python\",\"source\":\"\\u003ca href=\\\"http:\\/\\/pypi.python.org\\\" rel=\\\"nofollow\\\"\\u003epy3kbot\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":628760113,\"id_str\":\"628760113\",\"name\":\"Python 3\",\"screen_name\":\"py3k\",\"location\":\"\",\"profile_location\":null,\"description\":\"Python 3 Packages and Modules on pypi - As it Happens.\",\"url\":\"http:\\/\\/t.co\\/OuWBVQWCpU\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OuWBVQWCpU\",\"expanded_url\":\"http:\\/\\/pypi.python.org\\/pypi?:action=browse&c=533&show=all\",\"display_url\":\"pypi.python.org\\/pypi?:action=b\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":643,\"friends_count\":684,\"listed_count\":31,\"created_at\":\"Fri Jul 06 21:56:40 +0000 2012\",\"favourites_count\":0,\"utc_offset\":3600,\"time_zone\":\"Berlin\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":6070,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2474433856\\/p075cerxh0arpea6ceip_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2474433856\\/p075cerxh0arpea6ceip_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"python\",\"indices\":[93,100]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HSPMiL740F\",\"expanded_url\":\"http:\\/\\/pypi.python.org\\/pypi\\/tweepy\\/\",\"display_url\":\"pypi.python.org\\/pypi\\/tweepy\\/\",\"indices\":[42,64]},{\"url\":\"http:\\/\\/t.co\\/WIkwD3DhMd\",\"expanded_url\":\"http:\\/\\/github.com\\/tweepy\\/tweepy\",\"display_url\":\"github.com\\/tweepy\\/tweepy\",\"indices\":[70,92]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 21:17:01 +0000 2014\",\"id\":539166229844750337,\"id_str\":\"539166229844750337\",\"text\":\"tweepy 3.0: Twitter library for python http:\\/\\/t.co\\/OCNHCBOcDO\",\"source\":\"\\u003ca href=\\\"https:\\/\\/twitter.com\\/pypi_updates\\\" rel=\\\"nofollow\\\"\\u003ePyPI Recent Updates Bot\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2842108694,\"id_str\":\"2842108694\",\"name\":\"PyPI Recent Updates\",\"screen_name\":\"pypi_updates\",\"location\":\"\",\"profile_location\":null,\"description\":\"Unofficial bot to flow PyPI recent updates.\",\"url\":\"https:\\/\\/t.co\\/zelavD10qE\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zelavD10qE\",\"expanded_url\":\"https:\\/\\/github.com\\/tell-k\\/pypi-updates-bot\",\"display_url\":\"github.com\\/tell-k\\/pypi-up\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":67,\"friends_count\":0,\"listed_count\":4,\"created_at\":\"Mon Oct 06 07:55:44 +0000 2014\",\"favourites_count\":1,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":19777,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/519502406711660545\\/-NxCjP2O_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/519502406711660545\\/-NxCjP2O_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2842108694\\/1412694286\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OCNHCBOcDO\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1vDzRGP\",\"display_url\":\"bit.ly\\/1vDzRGP\",\"indices\":[39,61]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 20:31:25 +0000 2014\",\"id\":539154756279996417,\"id_str\":\"539154756279996417\",\"text\":\"Thanks for following me.. tweepy.. #\\\"@LAcaliforniax @DrePantelliii\\\" via http:\\/\\/t.co\\/IhEc22myT7\",\"source\":\"\\u003ca href=\\\"https:\\/\\/unfollowers.com\\\" rel=\\\"nofollow\\\"\\u003eUnfollowers.me\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":458122804,\"id_str\":\"458122804\",\"name\":\"Arpit Agrawal\",\"screen_name\":\"TweetyArpit\",\"location\":\" Mathura , INDIA.\",\"profile_location\":null,\"description\":\"Pure S A L M A N I A C..... M E G A.......... H U G E.......... S U P E R........... Fan Of SALMAN KHAN @beingsalmankhan\",\"url\":\"http:\\/\\/t.co\\/3Foy5SgyuW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3Foy5SgyuW\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/tweetyarpit\",\"display_url\":\"Instagram.com\\/tweetyarpit\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6993,\"friends_count\":6663,\"listed_count\":6,\"created_at\":\"Sun Jan 08 06:14:21 +0000 2012\",\"favourites_count\":74,\"utc_offset\":19800,\"time_zone\":\"New Delhi\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":10899,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EBEBEB\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme7\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/465218185919082496\\/dt3vvHXP_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/465218185919082496\\/dt3vvHXP_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/458122804\\/1376511316\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"DFDFDF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LAcaliforniax\",\"name\":\"marti\",\"id\":829398948,\"id_str\":\"829398948\",\"indices\":[37,51]},{\"screen_name\":\"DrePantelliii\",\"name\":\"Dre\",\"id\":426886468,\"id_str\":\"426886468\",\"indices\":[52,66]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IhEc22myT7\",\"expanded_url\":\"http:\\/\\/uapp.ly\",\"display_url\":\"uapp.ly\",\"indices\":[72,94]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 19:14:48 +0000 2014\",\"id\":539135476301836288,\"id_str\":\"539135476301836288\",\"text\":\"i missed you!!! \\\"@Ndai_mercy: @GideonMaria I miss my EHS tweepy maaan but ama be a good tweep and keep calm \\\"\\\"\\\"D\\\"\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2192748203,\"id_str\":\"2192748203\",\"name\":\"D I N K Y\\u00ae\",\"screen_name\":\"GideonMaria\",\"location\":\"Windhoek, Namibia\",\"profile_location\":null,\"description\":\"Tall. Cant dance...why are you reading this? #CFC http:\\/\\/t.co\\/5KkXnmHbgX\",\"url\":\"http:\\/\\/t.co\\/wy51rwNNAe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wy51rwNNAe\",\"expanded_url\":\"http:\\/\\/facebook.com\\/maria.gideon\",\"display_url\":\"facebook.com\\/maria.gideon\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5KkXnmHbgX\",\"expanded_url\":\"http:\\/\\/instagram.com\\/maria_gideon\",\"display_url\":\"instagram.com\\/maria_gideon\",\"indices\":[52,74]}]}},\"protected\":false,\"followers_count\":621,\"friends_count\":515,\"listed_count\":0,\"created_at\":\"Sat Nov 23 13:58:11 +0000 2013\",\"favourites_count\":381,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":9596,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534667787856138240\\/zMV56cfb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534667787856138240\\/zMV56cfb_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2192748203\\/1416310375\",\"profile_link_color\":\"990099\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"place\":{\"id\":\"3df4e3a5f8fa480a\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3df4e3a5f8fa480a.json\",\"place_type\":\"country\",\"name\":\"Namibia\",\"full_name\":\"Namibia\",\"country_code\":\"NA\",\"country\":\"Namibia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[11.7176212900001,-28.9593681839999],[25.2597807210002,-28.9593681839999],[25.2597807210002,-16.9510572309999],[11.7176212900001,-16.9510572309999]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Ndai_mercy\",\"name\":\"Mercy N Haindongo\",\"id\":1466645430,\"id_str\":\"1466645430\",\"indices\":[17,28]},{\"screen_name\":\"GideonMaria\",\"name\":\"D I N K Y\\u00ae\",\"id\":2192748203,\"id_str\":\"2192748203\",\"indices\":[30,42]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 18:16:36 +0000 2014\",\"id\":539120829981003776,\"id_str\":\"539120829981003776\",\"text\":\"@Qu3ntin0 @abdulnasir44 ok what do you need tweepy, PIL etc\",\"source\":\"\\u003ca href=\\\"https:\\/\\/twitter.com\\/Qu3ntin0\\\" rel=\\\"nofollow\\\"\\u003eQu3ntin0 Twitter Bots\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":539120702616793089,\"in_reply_to_status_id_str\":\"539120702616793089\",\"in_reply_to_user_id\":2602520816,\"in_reply_to_user_id_str\":\"2602520816\",\"in_reply_to_screen_name\":\"Qu3ntin0\",\"user\":{\"id\":625101159,\"id_str\":\"625101159\",\"name\":\"Qu3ntin0 Bot\",\"screen_name\":\"Qu3ntin0_ebooks\",\"location\":\"\",\"profile_location\":null,\"description\":\"ALL DOGECOIN & @TIPDOGE RELATED TWEETS ARE FAKE. Follow me and I follow you. Made by @Qu3ntin0\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":121,\"friends_count\":194,\"listed_count\":0,\"created_at\":\"Mon Jul 02 21:39:08 +0000 2012\",\"favourites_count\":148,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1474,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/494192452345950208\\/8GvTudeH_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/494192452345950208\\/8GvTudeH_normal.png\",\"profile_link_color\":\"2CCACF\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Qu3ntin0\",\"name\":\"Mr. Qu3ntin0\",\"id\":2602520816,\"id_str\":\"2602520816\",\"indices\":[0,9]},{\"screen_name\":\"abdulnasir44\",\"name\":\"Anonymous African\",\"id\":703441036,\"id_str\":\"703441036\",\"indices\":[10,23]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"en\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 15:57:28 +0000 2014\",\"id\":539085815977349120,\"id_str\":\"539085815977349120\",\"text\":\"Night tweepy ..\",\"source\":\"\\u003ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":550757726,\"id_str\":\"550757726\",\"name\":\"Nicha AdhwaVallery\\u2122\",\"screen_name\":\"NishaDevista\",\"location\":\"Purwokerto, jateng, indonesia\",\"profile_location\":null,\"description\":\"Take my hand and feel what i shuffer, Hold my hand hold the bittersweet of life |\",\"url\":\"http:\\/\\/t.co\\/pSahMdZfto\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pSahMdZfto\",\"expanded_url\":\"http:\\/\\/facebook.com\\/cica.adde\",\"display_url\":\"facebook.com\\/cica.adde\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":170,\"friends_count\":503,\"listed_count\":0,\"created_at\":\"Wed Apr 11 06:41:05 +0000 2012\",\"favourites_count\":6,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":456,\"lang\":\"id\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"709397\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000121024442\\/6bcf4ce98886c066b64fc54002ce7116.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000121024442\\/6bcf4ce98886c066b64fc54002ce7116.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531923194077515777\\/2BfAWHK3_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531923194077515777\\/2BfAWHK3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/550757726\\/1416747363\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"iso_language_code\":\"in\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 13:56:29 +0000 2014\",\"id\":539055365854212097,\"id_str\":\"539055365854212097\",\"text\":\"hay tweepy, selalu berbahagiakah kaliand.. Amin. bye Nopember ;)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1008846416,\"id_str\":\"1008846416\",\"name\":\"Ayu rinii\",\"screen_name\":\"antariini\",\"location\":\"denpasar\",\"profile_location\":null,\"description\":\"please keep the all of your life plans, remains consistent. continue the dream scenario. believe you can do it, nothing is wasted.\",\"url\":\"http:\\/\\/t.co\\/OGLMF56gwc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OGLMF56gwc\",\"expanded_url\":\"http:\\/\\/kipaskertas22.wordpress.com\",\"display_url\":\"kipaskertas22.wordpress.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":43,\"friends_count\":121,\"listed_count\":0,\"created_at\":\"Thu Dec 13 13:42:29 +0000 2012\",\"favourites_count\":217,\"utc_offset\":25200,\"time_zone\":\"Bangkok\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1994,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"94D487\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/526401980277596161\\/v7uhRonF.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/526401980277596161\\/v7uhRonF.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/525619869895516160\\/YgCPc372_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/525619869895516160\\/YgCPc372_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1008846416\\/1402068576\",\"profile_link_color\":\"FA743E\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[0.000000,0.000000]},\"place\":{\"id\":\"f57d760962aa72a0\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/f57d760962aa72a0.json\",\"place_type\":\"city\",\"name\":\"Denpasar Selatan\",\"full_name\":\"Denpasar Selatan, Denpasar\",\"country_code\":\"ID\",\"country\":\"Indonesia\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[115.185377,-8.746756],[115.266902,-8.746756],[115.266902,-8.6651804],[115.185377,-8.6651804]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 12:53:09 +0000 2014\",\"id\":539039429747154944,\"id_str\":\"539039429747154944\",\"text\":\"setup.py\\u304b\\u3089\\u30a4\\u30f3\\u30b9\\u30c8\\u30fc\\u30eb\\u3059\\u308b\\u3068\\u666e\\u901a\\u306b\\u5165\\u3063\\u305f\\u306e\\u3067\\u3001tweepy\\u3001Python3\\u3067\\u52d5\\u304b\\u3059\\u3002\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 12:02:45 +0000 2014\",\"id\":539026744552861696,\"id_str\":\"539026744552861696\",\"text\":\"Tweepy\\u306egithub\\u306f\\u3053\\u306e\\u3053\\u3001\\u3063\\u3068\\u3002 https:\\/\\/t.co\\/x3w9dorgcM\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/x3w9dorgcM\",\"expanded_url\":\"https:\\/\\/github.com\\/tweepy\\/tweepy\",\"display_url\":\"github.com\\/tweepy\\/tweepy\",\"indices\":[22,45]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 12:01:53 +0000 2014\",\"id\":539026526939795456,\"id_str\":\"539026526939795456\",\"text\":\"tweepy\\u3082\\u4e00\\u5fdc\\u8a66\\u3059\\u304b\\u30fb\\u30fb\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"},{\"metadata\":{\"iso_language_code\":\"ja\",\"result_type\":\"recent\"},\"created_at\":\"Sun Nov 30 11:52:25 +0000 2014\",\"id\":539024144466059265,\"id_str\":\"539024144466059265\",\"text\":\"twitter-python\\u3068TwitterAPI\\u3068Tweepy\\u3068\\u4f55\\u304c\\u3069\\u30fc\\u306a\\u3063\\u3066\\u308b\\u306e\\u304b\\u660e\\u3089\\u304b\\u306b\\u3057\\u305f\\u3044\\u304c\\u4eca\\u306f\\u3050\\u3042\\u30fc\\u3067\\u3044\\u3044\\u3084\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":122033201,\"id_str\":\"122033201\",\"name\":\"taduchi251\",\"screen_name\":\"taduchi251\",\"location\":\"\",\"profile_location\":null,\"description\":\"The world has so many exciting things!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":72,\"friends_count\":51,\"listed_count\":9,\"created_at\":\"Thu Mar 11 11:10:57 +0000 2010\",\"favourites_count\":627,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":2751,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1124229519\\/tikyu_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"ja\"}],\"search_metadata\":{\"completed_in\":0.024,\"max_id\":539197965400014848,\"max_id_str\":\"539197965400014848\",\"next_results\":\"?max_id=539024144466059264&q=tweepy&include_entities=1\",\"query\":\"tweepy\",\"refresh_url\":\"?since_id=539197965400014848&q=tweepy&include_entities=1\",\"count\":15,\"since_id\":0,\"since_id_str\":\"0\"}}" } } } ] }tweepy-3.5.0/cassettes/testsearchusers.json000066400000000000000000005214251265716604700212030ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/search.json?q=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:37 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ada0f90205b3f5b12509b413865a3eda" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "66d95fd1d74e0fb8" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "75889" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009752481560; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:37 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:37 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380997" ] }, "body": { "string": "[{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620558,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":427475002,\"id_str\":\"427475002\",\"name\":\"Twitter Books\",\"screen_name\":\"TwitterBooks\",\"location\":\"\",\"profile_location\":null,\"description\":\"We tweet from Twitter, Inc. about books and the folks who write them. If you're an author on Twitter, we'd love to hear from you.\",\"url\":\"https:\\/\\/t.co\\/OLhnfSo8Rg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OLhnfSo8Rg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1458718,\"friends_count\":53,\"listed_count\":3641,\"created_at\":\"Sat Dec 03 15:36:31 +0000 2011\",\"favourites_count\":6,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":629,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 16:00:59 +0000 2014\",\"id\":538724313101111296,\"id_str\":\"538724313101111296\",\"text\":\"This holiday season, tweet #Giveabook and @penguinrandom will donate a book to a child, giving away up to 25,000 books!\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":401,\"favorite_count\":111,\"entities\":{\"hashtags\":[{\"text\":\"Giveabook\",\"indices\":[27,37]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"penguinrandom\",\"name\":\"Penguin Random House\",\"id\":14360757,\"id_str\":\"14360757\",\"indices\":[42,56]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930206\\/n92i3xazai7g7knlnqpp.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930206\\/n92i3xazai7g7knlnqpp.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752494064\\/44a87fa30f16ab459a0573e14e863d46_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752494064\\/44a87fa30f16ab459a0573e14e863d46_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/427475002\\/1347394463\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":372575989,\"id_str\":\"372575989\",\"name\":\"Twitter for News\",\"screen_name\":\"TwitterForNews\",\"location\":\"Newsrooms everywhere\",\"profile_location\":null,\"description\":\"Spotlighting best practices and innovative uses of Twitter by journalists and newsrooms.\",\"url\":\"http:\\/\\/t.co\\/9JkXxCxkKk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9JkXxCxkKk\",\"expanded_url\":\"http:\\/\\/media.twitter.com\\/news\",\"display_url\":\"media.twitter.com\\/news\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1246719,\"friends_count\":14,\"listed_count\":4163,\"created_at\":\"Tue Sep 13 01:06:02 +0000 2011\",\"favourites_count\":64,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":765,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 14:59:54 +0000 2014\",\"id\":537259386537017344,\"id_str\":\"537259386537017344\",\"text\":\"Watch America react to the #Ferguson decision on Twitter. Animated map: http:\\/\\/t.co\\/FdAdgWB8CO via @TwitterData http:\\/\\/t.co\\/Xj6f4JHQzS\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":158,\"favorite_count\":89,\"entities\":{\"hashtags\":[{\"text\":\"Ferguson\",\"indices\":[27,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterData\",\"name\":\"Twitter Data\",\"id\":1526228120,\"id_str\":\"1526228120\",\"indices\":[99,111]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/FdAdgWB8CO\",\"expanded_url\":\"http:\\/\\/srogers.cartodb.com\\/viz\\/64f6c0f4-745d-11e4-b4e1-0e4fddd5de28\\/embed_map\",\"display_url\":\"srogers.cartodb.com\\/viz\\/64f6c0f4-7\\u2026\",\"indices\":[72,94]}],\"media\":[{\"id\":537259385916235777,\"id_str\":\"537259385916235777\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3S6kKHIIAEzJnn.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3S6kKHIIAEzJnn.png\",\"url\":\"http:\\/\\/t.co\\/Xj6f4JHQzS\",\"display_url\":\"pic.twitter.com\\/Xj6f4JHQzS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterForNews\\/status\\/537259386537017344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":198,\"resize\":\"fit\"},\"medium\":{\"w\":599,\"h\":349,\"resize\":\"fit\"},\"large\":{\"w\":599,\"h\":349,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656932469\\/xo4xip2rrkl3xibsrboe.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656932469\\/xo4xip2rrkl3xibsrboe.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3756363930\\/c96b2ab95a4149493229210abaf1f1fa_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3756363930\\/c96b2ab95a4149493229210abaf1f1fa_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/372575989\\/1396973614\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":748853,\"friends_count\":3,\"listed_count\":3343,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:30:04 +0000 2014\",\"id\":537644465092304898,\"id_str\":\"537644465092304898\",\"text\":\"RT @twitter: We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wM\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":289,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[71,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[124,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":234489024,\"id_str\":\"234489024\",\"name\":\"Twitter Comms\",\"screen_name\":\"twittercomms\",\"location\":\"\",\"profile_location\":null,\"description\":\"Voice of the Twitter Communications team. We share stories from, and news about, Twitter.\",\"url\":\"https:\\/\\/t.co\\/ZWUHIgNmgP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZWUHIgNmgP\",\"expanded_url\":\"https:\\/\\/about.twitter.com\\/press\",\"display_url\":\"about.twitter.com\\/press\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237079,\"friends_count\":156,\"listed_count\":1444,\"created_at\":\"Wed Jan 05 19:52:33 +0000 2011\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":617,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 19 17:06:36 +0000 2014\",\"id\":535116943758340097,\"id_str\":\"535116943758340097\",\"text\":\"Move over, Cyber Monday, for \\u201cTwitter Wednesday\\u201d - biggest day for conversation around deals, sales (@mainstr): http:\\/\\/t.co\\/WSw1q3rjo4\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3,\"favorite_count\":7,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MainStr\",\"name\":\"MainStreet\",\"id\":15767621,\"id_str\":\"15767621\",\"indices\":[101,109]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WSw1q3rjo4\",\"expanded_url\":\"http:\\/\\/www.mainstreet.com\\/article\\/twitter-wednesday-joins-black-friday-and-cyber-monday-for-bargains\\/page\\/2\",\"display_url\":\"mainstreet.com\\/article\\/twitte\\u2026\",\"indices\":[114,136]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936867\\/0btzj40rx96yzxcn5qoa.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936867\\/0btzj40rx96yzxcn5qoa.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174874\\/h8zi79wfvlih4tcuh41y_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174874\\/h8zi79wfvlih4tcuh41y_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/234489024\\/1347394908\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":130649891,\"id_str\":\"130649891\",\"name\":\"Twitter Media\",\"screen_name\":\"twittermedia\",\"location\":\"San Francisco\",\"profile_location\":null,\"description\":\"Tracking cool, meaningful uses of Tweets in media, tv, sports, entertainment and journalism. Send us tips! https:\\/\\/t.co\\/KM5HvDzxl1\",\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KM5HvDzxl1\",\"expanded_url\":\"https:\\/\\/media.twitter.com\\/\",\"display_url\":\"media.twitter.com\",\"indices\":[107,130]}]}},\"protected\":false,\"followers_count\":4171336,\"friends_count\":295,\"listed_count\":10068,\"created_at\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count\":125,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1280,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 19 01:53:31 +0000 2014\",\"id\":534887161640677377,\"id_str\":\"534887161640677377\",\"text\":\"#TheInterviewMovie co-directors @Sethrogen and @evandgoldberg visited Twitter HQ today for a Q&A. Check it out: https:\\/\\/t.co\\/kxYjT4WF7K\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":51,\"favorite_count\":38,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[0,18]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[32,42]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[47,61]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kxYjT4WF7K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/534884919961329664\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/1396978668\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"screen_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Music related Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5907925,\"friends_count\":152,\"listed_count\":8775,\"created_at\":\"Wed Sep 14 16:50:47 +0000 2011\",\"favourites_count\":518,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5537,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:02:49 +0000 2014\",\"id\":539147559802245122,\"id_str\":\"539147559802245122\",\"text\":\"RT @CFL: On our way out! #GreyCup http:\\/\\/t.co\\/gH57wFqLJ5\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 04:45:11 +0000 2014\",\"id\":538916627727646722,\"id_str\":\"538916627727646722\",\"text\":\"On our way out! #GreyCup http:\\/\\/t.co\\/gH57wFqLJ5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":154,\"favorite_count\":431,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[16,24]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538916620341493760,\"id_str\":\"538916620341493760\",\"indices\":[25,47],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"url\":\"http:\\/\\/t.co\\/gH57wFqLJ5\",\"display_url\":\"pic.twitter.com\\/gH57wFqLJ5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/538916627727646722\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":154,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[25,33]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]}],\"urls\":[],\"media\":[{\"id\":538916620341493760,\"id_str\":\"538916620341493760\",\"indices\":[34,56],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"url\":\"http:\\/\\/t.co\\/gH57wFqLJ5\",\"display_url\":\"pic.twitter.com\\/gH57wFqLJ5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/538916627727646722\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}},\"source_status_id\":538916627727646722,\"source_status_id_str\":\"538916627727646722\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":1526228120,\"id_str\":\"1526228120\",\"name\":\"Twitter Data\",\"screen_name\":\"TwitterData\",\"location\":\"San Francisco\",\"profile_location\":null,\"description\":\"Your official source for the latest data analysis, visualizations and things we like from across the web\",\"url\":\"https:\\/\\/t.co\\/gWYTYnyYiO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gWYTYnyYiO\",\"expanded_url\":\"https:\\/\\/interactive.twitter.com\",\"display_url\":\"interactive.twitter.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118676,\"friends_count\":8,\"listed_count\":2207,\"created_at\":\"Mon Jun 17 23:57:45 +0000 2013\",\"favourites_count\":3,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":849,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 16:05:06 +0000 2014\",\"id\":537275797115920385,\"id_str\":\"537275797115920385\",\"text\":\"RT @smfrogers: For anyone interested in how we make dot maps (and why) @TwitterData https:\\/\\/t.co\\/9Hd0Au7USk http:\\/\\/t.co\\/8LZFT7cwZV\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 16:04:41 +0000 2014\",\"id\":537275689087401984,\"id_str\":\"537275689087401984\",\"text\":\"For anyone interested in how we make dot maps (and why) @TwitterData https:\\/\\/t.co\\/9Hd0Au7USk http:\\/\\/t.co\\/8LZFT7cwZV\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":{\"type\":\"Point\",\"coordinates\":[37.6127216,-122.3900895]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-122.3900895,37.6127216]},\"place\":{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-114.131212,32.528832],[-114.131212,42.009519],[-124.482003,42.009519]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":61,\"favorite_count\":97,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterData\",\"name\":\"Twitter Data\",\"id\":1526228120,\"id_str\":\"1526228120\",\"indices\":[56,68]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Hd0Au7USk\",\"expanded_url\":\"https:\\/\\/source.opennews.org\\/en-US\\/articles\\/twitter-mapping\\/\",\"display_url\":\"source.opennews.org\\/en-US\\/articles\\u2026\",\"indices\":[69,92]}],\"media\":[{\"id\":537275688609280001,\"id_str\":\"537275688609280001\",\"indices\":[93,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"url\":\"http:\\/\\/t.co\\/8LZFT7cwZV\",\"display_url\":\"pic.twitter.com\\/8LZFT7cwZV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/smfrogers\\/status\\/537275689087401984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":321,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":182,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":375,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":61,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"smfrogers\",\"name\":\"Simon Rogers\",\"id\":14420872,\"id_str\":\"14420872\",\"indices\":[3,13]},{\"screen_name\":\"TwitterData\",\"name\":\"Twitter Data\",\"id\":1526228120,\"id_str\":\"1526228120\",\"indices\":[71,83]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Hd0Au7USk\",\"expanded_url\":\"https:\\/\\/source.opennews.org\\/en-US\\/articles\\/twitter-mapping\\/\",\"display_url\":\"source.opennews.org\\/en-US\\/articles\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":537275688609280001,\"id_str\":\"537275688609280001\",\"indices\":[108,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"url\":\"http:\\/\\/t.co\\/8LZFT7cwZV\",\"display_url\":\"pic.twitter.com\\/8LZFT7cwZV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/smfrogers\\/status\\/537275689087401984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":321,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":182,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":375,\"resize\":\"fit\"}},\"source_status_id\":537275689087401984,\"source_status_id_str\":\"537275689087401984\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000079832947\\/a1e83160378bce402803aefcfb07e167_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000079832947\\/a1e83160378bce402803aefcfb07e167_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526228120\\/1397069188\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4248277,\"friends_count\":263,\"listed_count\":6486,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2138,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 01:43:00 +0000 2014\",\"id\":538870779103158272,\"id_str\":\"538870779103158272\",\"text\":\"RT @USCBookstore: Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 17:00:07 +0000 2014\",\"id\":538739192843350021,\"id_str\":\"538739192843350021\",\"text\":\"Wake up, Trojans, it's game day! Get your No Shamrocks T now! #FightOn #USC https:\\/\\/t.co\\/MgSI9Aa95B\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":40,\"favorite_count\":17,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[62,70]},{\"text\":\"USC\",\"indices\":[71,75]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[76,99]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":40,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FightOn\",\"indices\":[80,88]},{\"text\":\"USC\",\"indices\":[89,93]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"USCBookstore\",\"name\":\"USC Bookstore\",\"id\":39372927,\"id_str\":\"39372927\",\"indices\":[3,16]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MgSI9Aa95B\",\"expanded_url\":\"https:\\/\\/api.flightly.com\\/commerce\\/merchants\\/873ff7e0-687b-11e4-9803-0800200c9a66\\/cards\\/911d7d50-7442-11e4-a775-2d430f5899c6\",\"display_url\":\"api.flightly.com\\/commerce\\/merch\\u2026\",\"indices\":[94,117]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":436266454,\"id_str\":\"436266454\",\"name\":\"Twitter Movies\",\"screen_name\":\"TwitterMovies\",\"location\":\"\",\"profile_location\":null,\"description\":\"News, trailers, and fun facts from the silver screen.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2316692,\"friends_count\":179,\"listed_count\":2869,\"created_at\":\"Wed Dec 14 00:18:42 +0000 2011\",\"favourites_count\":124,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1874,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:25:50 +0000 2014\",\"id\":539153351045545984,\"id_str\":\"539153351045545984\",\"text\":\"RT @craigzadan: FOLLOW US every day \\n@craigzadan @neilmeron \\nUpdates on #PeterPanLive & The #Oscars \\nExclusive pics\\nLive Tweeting http:\\/\\/t\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 20:21:56 +0000 2014\",\"id\":539152371432316928,\"id_str\":\"539152371432316928\",\"text\":\"FOLLOW US every day \\n@craigzadan @neilmeron \\nUpdates on #PeterPanLive & The #Oscars \\nExclusive pics\\nLive Tweeting http:\\/\\/t.co\\/MaD62Pt8f7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":6,\"favorite_count\":8,\"entities\":{\"hashtags\":[{\"text\":\"PeterPanLive\",\"indices\":[57,70]},{\"text\":\"Oscars\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[22,33]},{\"screen_name\":\"neilmeron\",\"name\":\"Neil Meron\",\"id\":210876407,\"id_str\":\"210876407\",\"indices\":[34,44]}],\"urls\":[],\"media\":[{\"id\":539152370643369984,\"id_str\":\"539152370643369984\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"url\":\"http:\\/\\/t.co\\/MaD62Pt8f7\",\"display_url\":\"pic.twitter.com\\/MaD62Pt8f7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/craigzadan\\/status\\/539152371432316928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":425,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":750,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":6,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"PeterPanLive\",\"indices\":[73,86]},{\"text\":\"Oscars\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[3,14]},{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[38,49]},{\"screen_name\":\"neilmeron\",\"name\":\"Neil Meron\",\"id\":210876407,\"id_str\":\"210876407\",\"indices\":[50,60]}],\"urls\":[],\"media\":[{\"id\":539152370643369984,\"id_str\":\"539152370643369984\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"url\":\"http:\\/\\/t.co\\/MaD62Pt8f7\",\"display_url\":\"pic.twitter.com\\/MaD62Pt8f7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/craigzadan\\/status\\/539152371432316928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":425,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":750,\"resize\":\"fit\"}},\"source_status_id\":539152371432316928,\"source_status_id_str\":\"539152371432316928\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/436266454\\/1347404339\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":586198217,\"id_str\":\"586198217\",\"name\":\"Twitter TV\",\"screen_name\":\"twittertv\",\"location\":\"in front of the tube\",\"profile_location\":null,\"description\":\"TV related tweets from our couch.\",\"url\":\"https:\\/\\/t.co\\/avIfjdXODN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/avIfjdXODN\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1590370,\"friends_count\":1032,\"listed_count\":1994,\"created_at\":\"Mon May 21 03:07:38 +0000 2012\",\"favourites_count\":930,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5419,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 21:23:34 +0000 2014\",\"id\":538805491556556800,\"id_str\":\"538805491556556800\",\"text\":\"RT @neilmeron: See the entire #MakingofPeterPanLive on @nbc.com or click here: http:\\/\\/t.co\\/SFLhy5kjmV \\u2026 @craigzadan #PeterPanLive\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 29 21:22:17 +0000 2014\",\"id\":538805170986315777,\"id_str\":\"538805170986315777\",\"text\":\"See the entire #MakingofPeterPanLive on @nbc.com or click here: http:\\/\\/t.co\\/SFLhy5kjmV \\u2026 @craigzadan #PeterPanLive\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":40,\"favorite_count\":24,\"entities\":{\"hashtags\":[{\"text\":\"MakingofPeterPanLive\",\"indices\":[15,36]},{\"text\":\"PeterPanLive\",\"indices\":[101,114]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"nbc\",\"name\":\"NBC\",\"id\":26585095,\"id_str\":\"26585095\",\"indices\":[40,44]},{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[89,100]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SFLhy5kjmV\",\"expanded_url\":\"http:\\/\\/www.nbc.com\\/peter-pan-live\\/video\\/the-making-of-peter-pan-live\\/2829788?onid=212781#vc212781=1\",\"display_url\":\"nbc.com\\/peter-pan-live\\u2026\",\"indices\":[64,86]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":40,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"MakingofPeterPanLive\",\"indices\":[30,51]},{\"text\":\"PeterPanLive\",\"indices\":[116,129]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"neilmeron\",\"name\":\"Neil Meron\",\"id\":210876407,\"id_str\":\"210876407\",\"indices\":[3,13]},{\"screen_name\":\"nbc\",\"name\":\"NBC\",\"id\":26585095,\"id_str\":\"26585095\",\"indices\":[55,59]},{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[104,115]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SFLhy5kjmV\",\"expanded_url\":\"http:\\/\\/www.nbc.com\\/peter-pan-live\\/video\\/the-making-of-peter-pan-live\\/2829788?onid=212781#vc212781=1\",\"display_url\":\"nbc.com\\/peter-pan-live\\u2026\",\"indices\":[79,101]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936539\\/af8i1j1p2mqpjyhrefwi.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936539\\/af8i1j1p2mqpjyhrefwi.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2305402324\\/v8kc4mcskxulus63prhv_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2305402324\\/v8kc4mcskxulus63prhv_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586198217\\/1396979968\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":2249227194,\"id_str\":\"2249227194\",\"name\":\"Twitter Sports AU\",\"screen_name\":\"TwitterSportsAU\",\"location\":\"Australia\",\"profile_location\":null,\"description\":\"Highlighting best practices and Twitter integration in Australian sport.\",\"url\":\"https:\\/\\/t.co\\/Soc6fMmHxy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Soc6fMmHxy\",\"expanded_url\":\"https:\\/\\/media.twitter.com\\/sports\",\"display_url\":\"media.twitter.com\\/sports\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6284,\"friends_count\":256,\"listed_count\":53,\"created_at\":\"Mon Dec 16 19:48:54 +0000 2013\",\"favourites_count\":207,\"utc_offset\":39600,\"time_zone\":\"Melbourne\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":671,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 03:29:08 +0000 2014\",\"id\":538172715199246336,\"id_str\":\"538172715199246336\",\"text\":\"RT @CricketAus: A special video tribute to Phillip Hughes, put together by @AC_Goldie. #PhillipHughes408\\nhttps:\\/\\/t.co\\/DtonutiEss\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 27 13:20:53 +0000 2014\",\"id\":537959246747299842,\"id_str\":\"537959246747299842\",\"text\":\"A special video tribute to Phillip Hughes, put together by @AC_Goldie. #PhillipHughes408\\nhttps:\\/\\/t.co\\/DtonutiEss\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2906,\"favorite_count\":1822,\"entities\":{\"hashtags\":[{\"text\":\"PhillipHughes408\",\"indices\":[71,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AC_Goldie\",\"name\":\"Adam Goldfinch\",\"id\":253249354,\"id_str\":\"253249354\",\"indices\":[59,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DtonutiEss\",\"expanded_url\":\"https:\\/\\/amp.twimg.com\\/v\\/9e5a87dd-4059-4555-a805-814ad3e636f2\",\"display_url\":\"amp.twimg.com\\/v\\/9e5a87dd-405\\u2026\",\"indices\":[89,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":2906,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"PhillipHughes408\",\"indices\":[87,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CricketAus\",\"name\":\"cricket.com.au\",\"id\":17692554,\"id_str\":\"17692554\",\"indices\":[3,14]},{\"screen_name\":\"AC_Goldie\",\"name\":\"Adam Goldfinch\",\"id\":253249354,\"id_str\":\"253249354\",\"indices\":[75,85]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DtonutiEss\",\"expanded_url\":\"https:\\/\\/amp.twimg.com\\/v\\/9e5a87dd-4059-4555-a805-814ad3e636f2\",\"display_url\":\"amp.twimg.com\\/v\\/9e5a87dd-405\\u2026\",\"indices\":[105,128]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530813771040583680\\/YwRCkscm_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530813771040583680\\/YwRCkscm_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2249227194\\/1400271255\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":2327988998,\"id_str\":\"2327988998\",\"name\":\"Twitter Sports CA\",\"screen_name\":\"TwitterSportsCA\",\"location\":\"\",\"profile_location\":null,\"description\":\"The official source of the best Canadian Sports Tweets.\",\"url\":\"https:\\/\\/t.co\\/EpXDaPtho5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EpXDaPtho5\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/canada\",\"display_url\":\"blog.twitter.com\\/canada\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36942,\"friends_count\":702,\"listed_count\":144,\"created_at\":\"Wed Feb 05 01:19:42 +0000 2014\",\"favourites_count\":1665,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2183,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:19:56 +0000 2014\",\"id\":539151865964158976,\"id_str\":\"539151865964158976\",\"text\":\"RT @CFL: Can't. Wait. #GreyCup http:\\/\\/t.co\\/QAvMLxYDq3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 19:09:47 +0000 2014\",\"id\":539134210896691200,\"id_str\":\"539134210896691200\",\"text\":\"Can't. Wait. #GreyCup http:\\/\\/t.co\\/QAvMLxYDq3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":53,\"favorite_count\":48,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[13,21]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539134199643385857,\"id_str\":\"539134199643385857\",\"indices\":[22,44],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tjsrgCMAEYzwn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tjsrgCMAEYzwn.jpg\",\"url\":\"http:\\/\\/t.co\\/QAvMLxYDq3\",\"display_url\":\"pic.twitter.com\\/QAvMLxYDq3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539134210896691200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":504,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":53,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[22,30]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]}],\"urls\":[],\"media\":[{\"id\":539134199643385857,\"id_str\":\"539134199643385857\",\"indices\":[31,53],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tjsrgCMAEYzwn.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tjsrgCMAEYzwn.jpg\",\"url\":\"http:\\/\\/t.co\\/QAvMLxYDq3\",\"display_url\":\"pic.twitter.com\\/QAvMLxYDq3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539134210896691200\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":504,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":167,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":295,\"resize\":\"fit\"}},\"source_status_id\":539134210896691200,\"source_status_id_str\":\"539134210896691200\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/477452224751091712\\/5tGzfKkS_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/477452224751091712\\/5tGzfKkS_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2327988998\\/1416702711\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17874544,\"id_str\":\"17874544\",\"name\":\"Twitter Support\",\"screen_name\":\"Support\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Helping you get the most out of Twitter.\",\"url\":\"http:\\/\\/t.co\\/Vk1NkwU8qP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Vk1NkwU8qP\",\"expanded_url\":\"http:\\/\\/support.twitter.com\",\"display_url\":\"support.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3349029,\"friends_count\":31,\"listed_count\":13296,\"created_at\":\"Thu Dec 04 18:51:57 +0000 2008\",\"favourites_count\":93,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":4905,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 08:28:48 +0000 2014\",\"id\":538972903769796608,\"id_str\":\"538972903769796608\",\"text\":\"@Concerned002 Have you filed a case yet? If not, please file it here: https:\\/\\/t.co\\/iHQP1VAQck We'll keep you updated through email.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":2406037386,\"in_reply_to_user_id_str\":\"2406037386\",\"in_reply_to_screen_name\":\"Concerned002\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":3,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Concerned002\",\"name\":\"Jackie Greenwood\",\"id\":2406037386,\"id_str\":\"2406037386\",\"indices\":[0,13]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iHQP1VAQck\",\"expanded_url\":\"https:\\/\\/support.twitter.com\\/forms\\/signin\",\"display_url\":\"support.twitter.com\\/forms\\/signin\",\"indices\":[70,93]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929496\\/y6jd4l68p18hrm52f0ez.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929496\\/y6jd4l68p18hrm52f0ez.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/533026436190175232\\/1i65YBa7_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/533026436190175232\\/1i65YBa7_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17874544\\/1347394418\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":6253282,\"id_str\":\"6253282\",\"name\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2527283,\"friends_count\":48,\"listed_count\":12878,\"created_at\":\"Wed May 23 06:01:13 +0000 2007\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3523,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Oct 29 00:27:02 +0000 2014\",\"id\":527255252257763328,\"id_str\":\"527255252257763328\",\"text\":\"RT @twittersecurity: We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Oct 29 00:17:39 +0000 2014\",\"id\":527252887949148162,\"id_str\":\"527252887949148162\",\"text\":\"We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\/\\/t.co\\/BDf4iRaHzn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":111,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[88,110]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":156,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twittersecurity\",\"name\":\"Twitter Security\",\"id\":1137751093,\"id_str\":\"1137751093\",\"indices\":[3,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[109,131]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":133824534,\"id_str\":\"133824534\",\"name\":\"Twitter Search\",\"screen_name\":\"twittersearch\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"We are Twitter Search! Follow us for search tips and news about cool features. Tweet us your ideas, feedback, and questions.\",\"url\":\"https:\\/\\/t.co\\/p9zdWgj12N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p9zdWgj12N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/search\",\"display_url\":\"twitter.com\\/search\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1886911,\"friends_count\":38,\"listed_count\":5006,\"created_at\":\"Fri Apr 16 18:38:13 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":56,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Aug 29 22:14:02 +0000 2013\",\"id\":373206937535389696,\"id_str\":\"373206937535389696\",\"text\":\"RT @Support: If your Tweets are protected, your updates will now appear in Twitter Search for you and your approved followers. https:\\/\\/t.co\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Aug 29 22:07:10 +0000 2013\",\"id\":373205208664272897,\"id_str\":\"373205208664272897\",\"text\":\"If your Tweets are protected, your updates will now appear in Twitter Search for you and your approved followers. https:\\/\\/t.co\\/8RMP9kuhP7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":993,\"favorite_count\":524,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8RMP9kuhP7\",\"expanded_url\":\"https:\\/\\/support.twitter.com\\/articles\\/14016\",\"display_url\":\"support.twitter.com\\/articles\\/14016\",\"indices\":[114,137]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":993,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Support\",\"name\":\"Twitter Support\",\"id\":17874544,\"id_str\":\"17874544\",\"indices\":[3,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8RMP9kuhP7\",\"expanded_url\":\"https:\\/\\/support.twitter.com\\/articles\\/14016\",\"display_url\":\"support.twitter.com\\/articles\\/14016\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930647\\/bjomh3zexnb2lko6gbts.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930647\\/bjomh3zexnb2lko6gbts.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174887\\/zkkmew2x5drntu7z7z9q_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174887\\/zkkmew2x5drntu7z7z9q_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/133824534\\/1347394486\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":87532773,\"id_str\":\"87532773\",\"name\":\"Twitter Design\",\"screen_name\":\"design\",\"location\":\"San Francisco, NYC, London\",\"profile_location\":null,\"description\":\"The voice of Twitter's product design and research team. Current members are listed at http:\\/\\/t.co\\/qv60Jp2CGb\",\"url\":\"http:\\/\\/t.co\\/tnyzRi9irc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tnyzRi9irc\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qv60Jp2CGb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/design\\/team\\/members\",\"display_url\":\"twitter.com\\/design\\/team\\/me\\u2026\",\"indices\":[87,109]}]}},\"protected\":false,\"followers_count\":1391624,\"friends_count\":75,\"listed_count\":4603,\"created_at\":\"Wed Nov 04 21:06:16 +0000 2009\",\"favourites_count\":880,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":977,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 20:47:43 +0000 2014\",\"id\":537346917831675904,\"id_str\":\"537346917831675904\",\"text\":\"Take a look at this interactive article on physics-based animations and interactions \\nhttp:\\/\\/t.co\\/cyMEyIH94G http:\\/\\/t.co\\/n58OXRik8S\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":107,\"favorite_count\":132,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cyMEyIH94G\",\"expanded_url\":\"http:\\/\\/iamralpht.github.io\\/physics\\/\",\"display_url\":\"iamralpht.github.io\\/physics\\/\",\"indices\":[86,108]}],\"media\":[{\"id\":537346917651324928,\"id_str\":\"537346917651324928\",\"indices\":[109,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3UKLLPCIAAsyv6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3UKLLPCIAAsyv6.png\",\"url\":\"http:\\/\\/t.co\\/n58OXRik8S\",\"display_url\":\"pic.twitter.com\\/n58OXRik8S\",\"expanded_url\":\"http:\\/\\/twitter.com\\/design\\/status\\/537346917831675904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":376,\"resize\":\"fit\"},\"large\":{\"w\":908,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":213,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/655967944\\/1oxgo9asd6u6o4yvnpj9.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/655967944\\/1oxgo9asd6u6o4yvnpj9.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/453289910363906048\\/mybOhh4Z_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/453289910363906048\\/mybOhh4Z_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/87532773\\/1396908515\",\"profile_link_color\":\"3587AA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":103770785,\"id_str\":\"103770785\",\"name\":\"Twitter India\",\"screen_name\":\"TwitterIndia\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\u091f\\u094d\\u0935\\u093f\\u091f\\u094d\\u091f\\u0930 - The official Twitter India account\",\"url\":\"http:\\/\\/t.co\\/1UXZwtk94O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1UXZwtk94O\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1114394,\"friends_count\":52,\"listed_count\":2453,\"created_at\":\"Mon Jan 11 05:44:35 +0000 2010\",\"favourites_count\":117,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1035,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 16:59:28 +0000 2014\",\"id\":538739027889762304,\"id_str\":\"538739027889762304\",\"text\":\"Great use of Twitter Mirror by @memusaitam to share every moment with the audience & raise support for #MemuSaitam! http:\\/\\/t.co\\/RR8QNd6a0W\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":86,\"favorite_count\":99,\"entities\":{\"hashtags\":[{\"text\":\"MemuSaitam\",\"indices\":[107,118]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"memusaitam\",\"name\":\"memusaitam\",\"id\":2886532928,\"id_str\":\"2886532928\",\"indices\":[31,42]}],\"urls\":[],\"media\":[{\"id\":538739021401178114,\"id_str\":\"538739021401178114\",\"indices\":[120,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8SR1CQAI5jYb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8SR1CQAI5jYb.jpg\",\"url\":\"http:\\/\\/t.co\\/RR8QNd6a0W\",\"display_url\":\"pic.twitter.com\\/RR8QNd6a0W\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterIndia\\/status\\/538739027889762304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656931110\\/63xi7bp75t3x812apw54.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656931110\\/63xi7bp75t3x812apw54.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174752\\/64pe9ctjko2omrtcij7a_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174752\\/64pe9ctjko2omrtcij7a_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103770785\\/1347394526\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":158079127,\"id_str\":\"158079127\",\"name\":\"Twitter Nonprofits\",\"screen_name\":\"Nonprofits\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Highlighting great uses of @Twitter in the non-profit community.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1053963,\"friends_count\":90,\"listed_count\":3004,\"created_at\":\"Mon Jun 21 18:34:36 +0000 2010\",\"favourites_count\":3,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":493,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Sep 27 22:01:10 +0000 2014\",\"id\":515984520047112192,\"id_str\":\"515984520047112192\",\"text\":\"RT @GlblCtzn: What's your impact? Buy #GlobalCitizenFestival #IMPACK & gear up to help end extreme poverty by 2030 http:\\/\\/t.co\\/jLENR4DLCv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Sep 14 13:42:50 +0000 2014\",\"id\":511148066645479424,\"id_str\":\"511148066645479424\",\"text\":\"What's your impact? Buy #GlobalCitizenFestival #IMPACK & gear up to help end extreme poverty by 2030 http:\\/\\/t.co\\/jLENR4DLCv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":75,\"favorite_count\":45,\"entities\":{\"hashtags\":[{\"text\":\"GlobalCitizenFestival\",\"indices\":[24,46]},{\"text\":\"IMPACK\",\"indices\":[47,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jLENR4DLCv\",\"expanded_url\":\"http:\\/\\/gumroad.com\\/l\\/impack4\",\"display_url\":\"gumroad.com\\/l\\/impack4\",\"indices\":[105,127]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":75,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GlobalCitizenFestival\",\"indices\":[38,60]},{\"text\":\"IMPACK\",\"indices\":[61,68]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GlblCtzn\",\"name\":\"Global Citizen\",\"id\":596893898,\"id_str\":\"596893898\",\"indices\":[3,12]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jLENR4DLCv\",\"expanded_url\":\"http:\\/\\/gumroad.com\\/l\\/impack4\",\"display_url\":\"gumroad.com\\/l\\/impack4\",\"indices\":[119,141]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929846\\/ltacjpy7lzh7l82pbpq1.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929846\\/ltacjpy7lzh7l82pbpq1.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782472671\\/08e0b9f0be0cefc12e0a71c493f97041_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782472671\\/08e0b9f0be0cefc12e0a71c493f97041_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/158079127\\/1347394440\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":121291606,\"id_str\":\"121291606\",\"name\":\"Twitter Small Biz\",\"screen_name\":\"TwitterSmallBiz\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your resource for tips, best practices and case studies to help your small biz succeed on Twitter. Need help? http:\\/\\/t.co\\/CThqbBjGsS\",\"url\":\"https:\\/\\/t.co\\/tpHprRLYXK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tpHprRLYXK\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/small-business\",\"display_url\":\"blog.twitter.com\\/small-business\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CThqbBjGsS\",\"expanded_url\":\"http:\\/\\/ow.ly\\/pJK2Q\",\"display_url\":\"ow.ly\\/pJK2Q\",\"indices\":[110,132]}]}},\"protected\":false,\"followers_count\":264458,\"friends_count\":55,\"listed_count\":2383,\"created_at\":\"Tue Mar 09 01:53:22 +0000 2010\",\"favourites_count\":3079,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3466,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 17:30:08 +0000 2014\",\"id\":538746746684198913,\"id_str\":\"538746746684198913\",\"text\":\"Happy #SmallBizSat! Wishing your business all the best today and throughout the holiday season. http:\\/\\/t.co\\/hgxSC9iAbw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/ads.twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Ads\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":72,\"favorite_count\":40,\"entities\":{\"hashtags\":[{\"text\":\"SmallBizSat\",\"indices\":[6,18]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533026632357793792,\"id_str\":\"533026632357793792\",\"indices\":[96,118],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2Ww5eWCUAANfew.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2Ww5eWCUAANfew.png\",\"url\":\"http:\\/\\/t.co\\/hgxSC9iAbw\",\"display_url\":\"pic.twitter.com\\/hgxSC9iAbw\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSmallBiz\\/status\\/538746746684198913\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1000,\"h\":501,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/662761953\\/4fd6gdoj9bk1s48hkzaz.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/662761953\\/4fd6gdoj9bk1s48hkzaz.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531885101043302400\\/4fDwYFQb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531885101043302400\\/4fDwYFQb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/121291606\\/1396974970\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/search.json?q=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:25 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "890f6da27aa3f21653a85a479f461ffc" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401025" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "74031" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:25 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740012554107926; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:25 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "a72be93f5a813580" ] }, "body": { "string": "[{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621110,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":427475002,\"id_str\":\"427475002\",\"name\":\"Twitter Books\",\"screen_name\":\"TwitterBooks\",\"location\":\"\",\"profile_location\":null,\"description\":\"We tweet from Twitter, Inc. about books and the folks who write them. If you're an author on Twitter, we'd love to hear from you.\",\"url\":\"https:\\/\\/t.co\\/OLhnfSo8Rg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OLhnfSo8Rg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1459061,\"friends_count\":53,\"listed_count\":3641,\"created_at\":\"Sat Dec 03 15:36:31 +0000 2011\",\"favourites_count\":6,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":629,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 16:00:59 +0000 2014\",\"id\":538724313101111296,\"id_str\":\"538724313101111296\",\"text\":\"This holiday season, tweet #Giveabook and @penguinrandom will donate a book to a child, giving away up to 25,000 books!\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":423,\"favorite_count\":113,\"entities\":{\"hashtags\":[{\"text\":\"Giveabook\",\"indices\":[27,37]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"penguinrandom\",\"name\":\"Penguin Random House\",\"id\":14360757,\"id_str\":\"14360757\",\"indices\":[42,56]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930206\\/n92i3xazai7g7knlnqpp.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930206\\/n92i3xazai7g7knlnqpp.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752494064\\/44a87fa30f16ab459a0573e14e863d46_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752494064\\/44a87fa30f16ab459a0573e14e863d46_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/427475002\\/1347394463\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":372575989,\"id_str\":\"372575989\",\"name\":\"Twitter for News\",\"screen_name\":\"TwitterForNews\",\"location\":\"Newsrooms everywhere\",\"profile_location\":null,\"description\":\"Spotlighting best practices and innovative uses of Twitter by journalists and newsrooms.\",\"url\":\"http:\\/\\/t.co\\/9JkXxCxkKk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9JkXxCxkKk\",\"expanded_url\":\"http:\\/\\/media.twitter.com\\/news\",\"display_url\":\"media.twitter.com\\/news\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1246895,\"friends_count\":14,\"listed_count\":4164,\"created_at\":\"Tue Sep 13 01:06:02 +0000 2011\",\"favourites_count\":64,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":765,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 14:59:54 +0000 2014\",\"id\":537259386537017344,\"id_str\":\"537259386537017344\",\"text\":\"Watch America react to the #Ferguson decision on Twitter. Animated map: http:\\/\\/t.co\\/FdAdgWB8CO via @TwitterData http:\\/\\/t.co\\/Xj6f4JHQzS\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":158,\"favorite_count\":89,\"entities\":{\"hashtags\":[{\"text\":\"Ferguson\",\"indices\":[27,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterData\",\"name\":\"Twitter Data\",\"id\":1526228120,\"id_str\":\"1526228120\",\"indices\":[99,111]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/FdAdgWB8CO\",\"expanded_url\":\"http:\\/\\/srogers.cartodb.com\\/viz\\/64f6c0f4-745d-11e4-b4e1-0e4fddd5de28\\/embed_map\",\"display_url\":\"srogers.cartodb.com\\/viz\\/64f6c0f4-7\\u2026\",\"indices\":[72,94]}],\"media\":[{\"id\":537259385916235777,\"id_str\":\"537259385916235777\",\"indices\":[112,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3S6kKHIIAEzJnn.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3S6kKHIIAEzJnn.png\",\"url\":\"http:\\/\\/t.co\\/Xj6f4JHQzS\",\"display_url\":\"pic.twitter.com\\/Xj6f4JHQzS\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterForNews\\/status\\/537259386537017344\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":198,\"resize\":\"fit\"},\"medium\":{\"w\":599,\"h\":349,\"resize\":\"fit\"},\"large\":{\"w\":599,\"h\":349,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656932469\\/xo4xip2rrkl3xibsrboe.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656932469\\/xo4xip2rrkl3xibsrboe.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3756363930\\/c96b2ab95a4149493229210abaf1f1fa_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3756363930\\/c96b2ab95a4149493229210abaf1f1fa_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/372575989\\/1396973614\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":749007,\"friends_count\":3,\"listed_count\":3343,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 26 16:30:04 +0000 2014\",\"id\":537644465092304898,\"id_str\":\"537644465092304898\",\"text\":\"RT @twitter: We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wM\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":290,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[71,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[124,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":234489024,\"id_str\":\"234489024\",\"name\":\"Twitter Comms\",\"screen_name\":\"twittercomms\",\"location\":\"\",\"profile_location\":null,\"description\":\"Voice of the Twitter Communications team. We share stories from, and news about, Twitter.\",\"url\":\"https:\\/\\/t.co\\/ZWUHIgNmgP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/ZWUHIgNmgP\",\"expanded_url\":\"https:\\/\\/about.twitter.com\\/press\",\"display_url\":\"about.twitter.com\\/press\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":237100,\"friends_count\":156,\"listed_count\":1444,\"created_at\":\"Wed Jan 05 19:52:33 +0000 2011\",\"favourites_count\":8,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":617,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 19 17:06:36 +0000 2014\",\"id\":535116943758340097,\"id_str\":\"535116943758340097\",\"text\":\"Move over, Cyber Monday, for \\u201cTwitter Wednesday\\u201d - biggest day for conversation around deals, sales (@mainstr): http:\\/\\/t.co\\/WSw1q3rjo4\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3,\"favorite_count\":7,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MainStr\",\"name\":\"MainStreet\",\"id\":15767621,\"id_str\":\"15767621\",\"indices\":[101,109]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WSw1q3rjo4\",\"expanded_url\":\"http:\\/\\/www.mainstreet.com\\/article\\/twitter-wednesday-joins-black-friday-and-cyber-monday-for-bargains\\/page\\/2\",\"display_url\":\"mainstreet.com\\/article\\/twitte\\u2026\",\"indices\":[114,136]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936867\\/0btzj40rx96yzxcn5qoa.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936867\\/0btzj40rx96yzxcn5qoa.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174874\\/h8zi79wfvlih4tcuh41y_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174874\\/h8zi79wfvlih4tcuh41y_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/234489024\\/1347394908\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":130649891,\"id_str\":\"130649891\",\"name\":\"Twitter Media\",\"screen_name\":\"twittermedia\",\"location\":\"San Francisco\",\"profile_location\":null,\"description\":\"Tracking cool, meaningful uses of Tweets in media, tv, sports, entertainment and journalism. Send us tips! https:\\/\\/t.co\\/KM5HvDzxl1\",\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bSpm1OsJO2\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KM5HvDzxl1\",\"expanded_url\":\"https:\\/\\/media.twitter.com\\/\",\"display_url\":\"media.twitter.com\",\"indices\":[107,130]}]}},\"protected\":false,\"followers_count\":4173298,\"friends_count\":295,\"listed_count\":10070,\"created_at\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count\":125,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1280,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Nov 19 01:53:31 +0000 2014\",\"id\":534887161640677377,\"id_str\":\"534887161640677377\",\"text\":\"#TheInterviewMovie co-directors @Sethrogen and @evandgoldberg visited Twitter HQ today for a Q&A. Check it out: https:\\/\\/t.co\\/kxYjT4WF7K\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":51,\"favorite_count\":38,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[0,18]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[32,42]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[47,61]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/kxYjT4WF7K\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/534884919961329664\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/1396978668\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"screen_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Music related Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5909220,\"friends_count\":152,\"listed_count\":8775,\"created_at\":\"Wed Sep 14 16:50:47 +0000 2011\",\"favourites_count\":518,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5543,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 00:33:32 +0000 2014\",\"id\":539215685378129921,\"id_str\":\"539215685378129921\",\"text\":\"RT @IGGYAZALEA: Hi world! just taking a break from the rain here in LA to see how everyone is doing. I Hope everyones thanksgiving was grea\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 23:49:48 +0000 2014\",\"id\":539204681075941376,\"id_str\":\"539204681075941376\",\"text\":\"Hi world! just taking a break from the rain here in LA to see how everyone is doing. I Hope everyones thanksgiving was great :-)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":940,\"favorite_count\":3867,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":940,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IGGYAZALEA\",\"name\":\"IGGY AZALEA\",\"id\":153694176,\"id_str\":\"153694176\",\"indices\":[3,14]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":1526228120,\"id_str\":\"1526228120\",\"name\":\"Twitter Data\",\"screen_name\":\"TwitterData\",\"location\":\"San Francisco\",\"profile_location\":null,\"description\":\"Your official source for the latest data analysis, visualizations and things we like from across the web\",\"url\":\"https:\\/\\/t.co\\/gWYTYnyYiO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gWYTYnyYiO\",\"expanded_url\":\"https:\\/\\/interactive.twitter.com\",\"display_url\":\"interactive.twitter.com\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118711,\"friends_count\":8,\"listed_count\":2206,\"created_at\":\"Mon Jun 17 23:57:45 +0000 2013\",\"favourites_count\":3,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":849,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 16:05:06 +0000 2014\",\"id\":537275797115920385,\"id_str\":\"537275797115920385\",\"text\":\"RT @smfrogers: For anyone interested in how we make dot maps (and why) @TwitterData https:\\/\\/t.co\\/9Hd0Au7USk http:\\/\\/t.co\\/8LZFT7cwZV\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 16:04:41 +0000 2014\",\"id\":537275689087401984,\"id_str\":\"537275689087401984\",\"text\":\"For anyone interested in how we make dot maps (and why) @TwitterData https:\\/\\/t.co\\/9Hd0Au7USk http:\\/\\/t.co\\/8LZFT7cwZV\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Android\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":{\"type\":\"Point\",\"coordinates\":[37.6127216,-122.3900895]},\"coordinates\":{\"type\":\"Point\",\"coordinates\":[-122.3900895,37.6127216]},\"place\":{\"id\":\"fbd6d2f5a4e4a15e\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/fbd6d2f5a4e4a15e.json\",\"place_type\":\"admin\",\"name\":\"California\",\"full_name\":\"California, US\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[],\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.482003,32.528832],[-114.131212,32.528832],[-114.131212,42.009519],[-124.482003,42.009519]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":61,\"favorite_count\":97,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterData\",\"name\":\"Twitter Data\",\"id\":1526228120,\"id_str\":\"1526228120\",\"indices\":[56,68]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Hd0Au7USk\",\"expanded_url\":\"https:\\/\\/source.opennews.org\\/en-US\\/articles\\/twitter-mapping\\/\",\"display_url\":\"source.opennews.org\\/en-US\\/articles\\u2026\",\"indices\":[69,92]}],\"media\":[{\"id\":537275688609280001,\"id_str\":\"537275688609280001\",\"indices\":[93,115],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"url\":\"http:\\/\\/t.co\\/8LZFT7cwZV\",\"display_url\":\"pic.twitter.com\\/8LZFT7cwZV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/smfrogers\\/status\\/537275689087401984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":321,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":182,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":375,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":61,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"smfrogers\",\"name\":\"Simon Rogers\",\"id\":14420872,\"id_str\":\"14420872\",\"indices\":[3,13]},{\"screen_name\":\"TwitterData\",\"name\":\"Twitter Data\",\"id\":1526228120,\"id_str\":\"1526228120\",\"indices\":[71,83]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/9Hd0Au7USk\",\"expanded_url\":\"https:\\/\\/source.opennews.org\\/en-US\\/articles\\/twitter-mapping\\/\",\"display_url\":\"source.opennews.org\\/en-US\\/articles\\u2026\",\"indices\":[84,107]}],\"media\":[{\"id\":537275688609280001,\"id_str\":\"537275688609280001\",\"indices\":[108,130],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJZGYCcAEVUV2.jpg\",\"url\":\"http:\\/\\/t.co\\/8LZFT7cwZV\",\"display_url\":\"pic.twitter.com\\/8LZFT7cwZV\",\"expanded_url\":\"http:\\/\\/twitter.com\\/smfrogers\\/status\\/537275689087401984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":321,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":182,\"resize\":\"fit\"},\"large\":{\"w\":700,\"h\":375,\"resize\":\"fit\"}},\"source_status_id\":537275689087401984,\"source_status_id_str\":\"537275689087401984\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000079832947\\/a1e83160378bce402803aefcfb07e167_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000079832947\\/a1e83160378bce402803aefcfb07e167_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1526228120\\/1397069188\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246359,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 23:18:55 +0000 2014\",\"id\":539196909924413440,\"id_str\":\"539196909924413440\",\"text\":\"RT @CFL: .@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 22:53:26 +0000 2014\",\"id\":539190494191165440,\"id_str\":\"539190494191165440\",\"text\":\".@DangeRussWilson is here! #GreyCup http:\\/\\/t.co\\/jpUYOYPwHr\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":537,\"favorite_count\":749,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[27,35]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[1,17]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[36,58],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":537,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[36,44]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]},{\"screen_name\":\"DangeRussWilson\",\"name\":\"Russell Wilson\",\"id\":512613427,\"id_str\":\"512613427\",\"indices\":[10,26]}],\"urls\":[],\"media\":[{\"id\":539190493645897728,\"id_str\":\"539190493645897728\",\"indices\":[45,67],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3uW5bAIAAAlovm.jpg\",\"url\":\"http:\\/\\/t.co\\/jpUYOYPwHr\",\"display_url\":\"pic.twitter.com\\/jpUYOYPwHr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539190494191165440\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":349,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":197,\"resize\":\"fit\"}},\"source_status_id\":539190494191165440,\"source_status_id_str\":\"539190494191165440\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":436266454,\"id_str\":\"436266454\",\"name\":\"Twitter Movies\",\"screen_name\":\"TwitterMovies\",\"location\":\"\",\"profile_location\":null,\"description\":\"News, trailers, and fun facts from the silver screen.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2317155,\"friends_count\":180,\"listed_count\":2870,\"created_at\":\"Wed Dec 14 00:18:42 +0000 2011\",\"favourites_count\":124,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1874,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:25:50 +0000 2014\",\"id\":539153351045545984,\"id_str\":\"539153351045545984\",\"text\":\"RT @craigzadan: FOLLOW US every day \\n@craigzadan @neilmeron \\nUpdates on #PeterPanLive & The #Oscars \\nExclusive pics\\nLive Tweeting http:\\/\\/t\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 20:21:56 +0000 2014\",\"id\":539152371432316928,\"id_str\":\"539152371432316928\",\"text\":\"FOLLOW US every day \\n@craigzadan @neilmeron \\nUpdates on #PeterPanLive & The #Oscars \\nExclusive pics\\nLive Tweeting http:\\/\\/t.co\\/MaD62Pt8f7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":7,\"favorite_count\":19,\"entities\":{\"hashtags\":[{\"text\":\"PeterPanLive\",\"indices\":[57,70]},{\"text\":\"Oscars\",\"indices\":[81,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[22,33]},{\"screen_name\":\"neilmeron\",\"name\":\"Neil Meron\",\"id\":210876407,\"id_str\":\"210876407\",\"indices\":[34,44]}],\"urls\":[],\"media\":[{\"id\":539152370643369984,\"id_str\":\"539152370643369984\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"url\":\"http:\\/\\/t.co\\/MaD62Pt8f7\",\"display_url\":\"pic.twitter.com\\/MaD62Pt8f7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/craigzadan\\/status\\/539152371432316928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":425,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":750,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":7,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"PeterPanLive\",\"indices\":[73,86]},{\"text\":\"Oscars\",\"indices\":[97,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[3,14]},{\"screen_name\":\"craigzadan\",\"name\":\"Craig Zadan\",\"id\":985395878,\"id_str\":\"985395878\",\"indices\":[38,49]},{\"screen_name\":\"neilmeron\",\"name\":\"Neil Meron\",\"id\":210876407,\"id_str\":\"210876407\",\"indices\":[50,60]}],\"urls\":[],\"media\":[{\"id\":539152370643369984,\"id_str\":\"539152370643369984\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t0OXwCAAAV5QQ.jpg\",\"url\":\"http:\\/\\/t.co\\/MaD62Pt8f7\",\"display_url\":\"pic.twitter.com\\/MaD62Pt8f7\",\"expanded_url\":\"http:\\/\\/twitter.com\\/craigzadan\\/status\\/539152371432316928\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":425,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1280,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":750,\"resize\":\"fit\"}},\"source_status_id\":539152371432316928,\"source_status_id_str\":\"539152371432316928\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/436266454\\/1347404339\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":586198217,\"id_str\":\"586198217\",\"name\":\"Twitter TV\",\"screen_name\":\"twittertv\",\"location\":\"in front of the tube\",\"profile_location\":null,\"description\":\"TV related tweets from our couch.\",\"url\":\"https:\\/\\/t.co\\/avIfjdXODN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/avIfjdXODN\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1591399,\"friends_count\":1033,\"listed_count\":1994,\"created_at\":\"Mon May 21 03:07:38 +0000 2012\",\"favourites_count\":937,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5425,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 02:00:47 +0000 2014\",\"id\":539237644064935937,\"id_str\":\"539237644064935937\",\"text\":\"RT @wwwbigbaldhead: love all y\\u2019all HERE WE GO MIDSEASON FINALE!!! LETS DO THIS !!!!!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Dec 01 02:00:19 +0000 2014\",\"id\":539237525945331713,\"id_str\":\"539237525945331713\",\"text\":\"love all y\\u2019all HERE WE GO MIDSEASON FINALE!!! LETS DO THIS !!!!!\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3711,\"favorite_count\":5992,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":3711,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"wwwbigbaldhead\",\"name\":\"norman reedus\",\"id\":25460615,\"id_str\":\"25460615\",\"indices\":[3,18]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936539\\/af8i1j1p2mqpjyhrefwi.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936539\\/af8i1j1p2mqpjyhrefwi.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2305402324\\/v8kc4mcskxulus63prhv_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2305402324\\/v8kc4mcskxulus63prhv_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586198217\\/1396979968\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":2249227194,\"id_str\":\"2249227194\",\"name\":\"Twitter Sports AU\",\"screen_name\":\"TwitterSportsAU\",\"location\":\"Australia\",\"profile_location\":null,\"description\":\"Highlighting best practices and Twitter integration in Australian sport.\",\"url\":\"https:\\/\\/t.co\\/Soc6fMmHxy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Soc6fMmHxy\",\"expanded_url\":\"https:\\/\\/media.twitter.com\\/sports\",\"display_url\":\"media.twitter.com\\/sports\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6285,\"friends_count\":256,\"listed_count\":53,\"created_at\":\"Mon Dec 16 19:48:54 +0000 2013\",\"favourites_count\":207,\"utc_offset\":39600,\"time_zone\":\"Melbourne\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":671,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 03:29:08 +0000 2014\",\"id\":538172715199246336,\"id_str\":\"538172715199246336\",\"text\":\"RT @CricketAus: A special video tribute to Phillip Hughes, put together by @AC_Goldie. #PhillipHughes408\\nhttps:\\/\\/t.co\\/DtonutiEss\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 27 13:20:53 +0000 2014\",\"id\":537959246747299842,\"id_str\":\"537959246747299842\",\"text\":\"A special video tribute to Phillip Hughes, put together by @AC_Goldie. #PhillipHughes408\\nhttps:\\/\\/t.co\\/DtonutiEss\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2908,\"favorite_count\":1824,\"entities\":{\"hashtags\":[{\"text\":\"PhillipHughes408\",\"indices\":[71,88]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"AC_Goldie\",\"name\":\"Adam Goldfinch\",\"id\":253249354,\"id_str\":\"253249354\",\"indices\":[59,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DtonutiEss\",\"expanded_url\":\"https:\\/\\/amp.twimg.com\\/v\\/9e5a87dd-4059-4555-a805-814ad3e636f2\",\"display_url\":\"amp.twimg.com\\/v\\/9e5a87dd-405\\u2026\",\"indices\":[89,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":2908,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"PhillipHughes408\",\"indices\":[87,104]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CricketAus\",\"name\":\"cricket.com.au\",\"id\":17692554,\"id_str\":\"17692554\",\"indices\":[3,14]},{\"screen_name\":\"AC_Goldie\",\"name\":\"Adam Goldfinch\",\"id\":253249354,\"id_str\":\"253249354\",\"indices\":[75,85]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/DtonutiEss\",\"expanded_url\":\"https:\\/\\/amp.twimg.com\\/v\\/9e5a87dd-4059-4555-a805-814ad3e636f2\",\"display_url\":\"amp.twimg.com\\/v\\/9e5a87dd-405\\u2026\",\"indices\":[105,128]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530813771040583680\\/YwRCkscm_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530813771040583680\\/YwRCkscm_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2249227194\\/1400271255\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":2327988998,\"id_str\":\"2327988998\",\"name\":\"Twitter Sports CA\",\"screen_name\":\"TwitterSportsCA\",\"location\":\"\",\"profile_location\":null,\"description\":\"The official source of the best Canadian Sports Tweets.\",\"url\":\"https:\\/\\/t.co\\/EpXDaPtho5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/EpXDaPtho5\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/canada\",\"display_url\":\"blog.twitter.com\\/canada\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":36940,\"friends_count\":702,\"listed_count\":144,\"created_at\":\"Wed Feb 05 01:19:42 +0000 2014\",\"favourites_count\":1688,\"utc_offset\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2212,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 01:38:24 +0000 2014\",\"id\":539232009831587840,\"id_str\":\"539232009831587840\",\"text\":\"RT @CFL: The second half is UNDERWAY! #GreyCup http:\\/\\/t.co\\/6lYzItmqjC\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Dec 01 01:29:08 +0000 2014\",\"id\":539229678712930305,\"id_str\":\"539229678712930305\",\"text\":\"The second half is UNDERWAY! #GreyCup http:\\/\\/t.co\\/6lYzItmqjC\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":38,\"favorite_count\":37,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[29,37]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539229678205034496,\"id_str\":\"539229678205034496\",\"indices\":[38,60],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3u6iQ3CYAArHcU.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3u6iQ3CYAArHcU.png\",\"url\":\"http:\\/\\/t.co\\/6lYzItmqjC\",\"display_url\":\"pic.twitter.com\\/6lYzItmqjC\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539229678712930305\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":38,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[38,46]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]}],\"urls\":[],\"media\":[{\"id\":539229678205034496,\"id_str\":\"539229678205034496\",\"indices\":[47,69],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3u6iQ3CYAArHcU.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3u6iQ3CYAArHcU.png\",\"url\":\"http:\\/\\/t.co\\/6lYzItmqjC\",\"display_url\":\"pic.twitter.com\\/6lYzItmqjC\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/539229678712930305\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":539229678712930305,\"source_status_id_str\":\"539229678712930305\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/477452224751091712\\/5tGzfKkS_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/477452224751091712\\/5tGzfKkS_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2327988998\\/1416702711\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17874544,\"id_str\":\"17874544\",\"name\":\"Twitter Support\",\"screen_name\":\"Support\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Helping you get the most out of Twitter.\",\"url\":\"http:\\/\\/t.co\\/Vk1NkwU8qP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Vk1NkwU8qP\",\"expanded_url\":\"http:\\/\\/support.twitter.com\",\"display_url\":\"support.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3349749,\"friends_count\":31,\"listed_count\":13293,\"created_at\":\"Thu Dec 04 18:51:57 +0000 2008\",\"favourites_count\":93,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":4906,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 23:29:53 +0000 2014\",\"id\":539199668819722240,\"id_str\":\"539199668819722240\",\"text\":\"@mommy_zen Please file a request via this link, and we will assist you as soon as we can: https:\\/\\/t.co\\/iHQP1VAQck Thanks!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":587061411,\"in_reply_to_user_id_str\":\"587061411\",\"in_reply_to_screen_name\":\"mommy_zen\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"mommy_zen\",\"name\":\"Marianne Clyde\",\"id\":587061411,\"id_str\":\"587061411\",\"indices\":[0,10]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/iHQP1VAQck\",\"expanded_url\":\"https:\\/\\/support.twitter.com\\/forms\\/signin\",\"display_url\":\"support.twitter.com\\/forms\\/signin\",\"indices\":[90,113]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929496\\/y6jd4l68p18hrm52f0ez.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929496\\/y6jd4l68p18hrm52f0ez.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/533026436190175232\\/1i65YBa7_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/533026436190175232\\/1i65YBa7_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17874544\\/1347394418\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":6253282,\"id_str\":\"6253282\",\"name\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2528102,\"friends_count\":48,\"listed_count\":12877,\"created_at\":\"Wed May 23 06:01:13 +0000 2007\",\"favourites_count\":27,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3523,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Oct 29 00:27:02 +0000 2014\",\"id\":527255252257763328,\"id_str\":\"527255252257763328\",\"text\":\"RT @twittersecurity: We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Oct 29 00:17:39 +0000 2014\",\"id\":527252887949148162,\"id_str\":\"527252887949148162\",\"text\":\"We are switching from report-only to enforce-mode CSP headers to block mixed content on http:\\/\\/t.co\\/OOBCoscBzv: https:\\/\\/t.co\\/BDf4iRaHzn\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":156,\"favorite_count\":111,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[88,110]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":156,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twittersecurity\",\"name\":\"Twitter Security\",\"id\":1137751093,\"id_str\":\"1137751093\",\"indices\":[3,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OOBCoscBzv\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[109,131]},{\"url\":\"https:\\/\\/t.co\\/BDf4iRaHzn\",\"expanded_url\":\"https:\\/\\/twittercommunity.com\\/t\\/blocking-mixed-content-with-content-security-policy\\/26375\",\"display_url\":\"twittercommunity.com\\/t\\/blocking-mix\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":133824534,\"id_str\":\"133824534\",\"name\":\"Twitter Search\",\"screen_name\":\"twittersearch\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"We are Twitter Search! Follow us for search tips and news about cool features. Tweet us your ideas, feedback, and questions.\",\"url\":\"https:\\/\\/t.co\\/p9zdWgj12N\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/p9zdWgj12N\",\"expanded_url\":\"https:\\/\\/twitter.com\\/search\",\"display_url\":\"twitter.com\\/search\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1886999,\"friends_count\":38,\"listed_count\":5006,\"created_at\":\"Fri Apr 16 18:38:13 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":56,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Aug 29 22:14:02 +0000 2013\",\"id\":373206937535389696,\"id_str\":\"373206937535389696\",\"text\":\"RT @Support: If your Tweets are protected, your updates will now appear in Twitter Search for you and your approved followers. https:\\/\\/t.co\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Aug 29 22:07:10 +0000 2013\",\"id\":373205208664272897,\"id_str\":\"373205208664272897\",\"text\":\"If your Tweets are protected, your updates will now appear in Twitter Search for you and your approved followers. https:\\/\\/t.co\\/8RMP9kuhP7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":993,\"favorite_count\":524,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8RMP9kuhP7\",\"expanded_url\":\"https:\\/\\/support.twitter.com\\/articles\\/14016\",\"display_url\":\"support.twitter.com\\/articles\\/14016\",\"indices\":[114,137]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":993,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Support\",\"name\":\"Twitter Support\",\"id\":17874544,\"id_str\":\"17874544\",\"indices\":[3,11]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/8RMP9kuhP7\",\"expanded_url\":\"https:\\/\\/support.twitter.com\\/articles\\/14016\",\"display_url\":\"support.twitter.com\\/articles\\/14016\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930647\\/bjomh3zexnb2lko6gbts.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656930647\\/bjomh3zexnb2lko6gbts.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174887\\/zkkmew2x5drntu7z7z9q_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174887\\/zkkmew2x5drntu7z7z9q_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/133824534\\/1347394486\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":87532773,\"id_str\":\"87532773\",\"name\":\"Twitter Design\",\"screen_name\":\"design\",\"location\":\"San Francisco, NYC, London\",\"profile_location\":null,\"description\":\"The voice of Twitter's product design and research team. Current members are listed at http:\\/\\/t.co\\/qv60Jp2CGb\",\"url\":\"http:\\/\\/t.co\\/tnyzRi9irc\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tnyzRi9irc\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qv60Jp2CGb\",\"expanded_url\":\"http:\\/\\/twitter.com\\/design\\/team\\/members\",\"display_url\":\"twitter.com\\/design\\/team\\/me\\u2026\",\"indices\":[87,109]}]}},\"protected\":false,\"followers_count\":1391693,\"friends_count\":75,\"listed_count\":4603,\"created_at\":\"Wed Nov 04 21:06:16 +0000 2009\",\"favourites_count\":880,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":977,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 25 20:47:43 +0000 2014\",\"id\":537346917831675904,\"id_str\":\"537346917831675904\",\"text\":\"Take a look at this interactive article on physics-based animations and interactions \\nhttp:\\/\\/t.co\\/cyMEyIH94G http:\\/\\/t.co\\/n58OXRik8S\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":106,\"favorite_count\":132,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cyMEyIH94G\",\"expanded_url\":\"http:\\/\\/iamralpht.github.io\\/physics\\/\",\"display_url\":\"iamralpht.github.io\\/physics\\/\",\"indices\":[86,108]}],\"media\":[{\"id\":537346917651324928,\"id_str\":\"537346917651324928\",\"indices\":[109,131],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3UKLLPCIAAsyv6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3UKLLPCIAAsyv6.png\",\"url\":\"http:\\/\\/t.co\\/n58OXRik8S\",\"display_url\":\"pic.twitter.com\\/n58OXRik8S\",\"expanded_url\":\"http:\\/\\/twitter.com\\/design\\/status\\/537346917831675904\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":376,\"resize\":\"fit\"},\"large\":{\"w\":908,\"h\":570,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":213,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/655967944\\/1oxgo9asd6u6o4yvnpj9.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/655967944\\/1oxgo9asd6u6o4yvnpj9.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/453289910363906048\\/mybOhh4Z_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/453289910363906048\\/mybOhh4Z_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/87532773\\/1396908515\",\"profile_link_color\":\"3587AA\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":103770785,\"id_str\":\"103770785\",\"name\":\"Twitter India\",\"screen_name\":\"TwitterIndia\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\u091f\\u094d\\u0935\\u093f\\u091f\\u094d\\u091f\\u0930 - The official Twitter India account\",\"url\":\"http:\\/\\/t.co\\/1UXZwtk94O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1UXZwtk94O\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1114455,\"friends_count\":52,\"listed_count\":2454,\"created_at\":\"Mon Jan 11 05:44:35 +0000 2010\",\"favourites_count\":117,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1035,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 16:59:28 +0000 2014\",\"id\":538739027889762304,\"id_str\":\"538739027889762304\",\"text\":\"Great use of Twitter Mirror by @memusaitam to share every moment with the audience & raise support for #MemuSaitam! http:\\/\\/t.co\\/RR8QNd6a0W\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":86,\"favorite_count\":100,\"entities\":{\"hashtags\":[{\"text\":\"MemuSaitam\",\"indices\":[107,118]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"memusaitam\",\"name\":\"memusaitam\",\"id\":2886532928,\"id_str\":\"2886532928\",\"indices\":[31,42]}],\"urls\":[],\"media\":[{\"id\":538739021401178114,\"id_str\":\"538739021401178114\",\"indices\":[120,142],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3n8SR1CQAI5jYb.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3n8SR1CQAI5jYb.jpg\",\"url\":\"http:\\/\\/t.co\\/RR8QNd6a0W\",\"display_url\":\"pic.twitter.com\\/RR8QNd6a0W\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterIndia\\/status\\/538739027889762304\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656931110\\/63xi7bp75t3x812apw54.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656931110\\/63xi7bp75t3x812apw54.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174752\\/64pe9ctjko2omrtcij7a_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174752\\/64pe9ctjko2omrtcij7a_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/103770785\\/1347394526\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":158079127,\"id_str\":\"158079127\",\"name\":\"Twitter Nonprofits\",\"screen_name\":\"Nonprofits\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Highlighting great uses of @Twitter in the non-profit community.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1054588,\"friends_count\":90,\"listed_count\":3003,\"created_at\":\"Mon Jun 21 18:34:36 +0000 2010\",\"favourites_count\":3,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":493,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Sep 27 22:01:10 +0000 2014\",\"id\":515984520047112192,\"id_str\":\"515984520047112192\",\"text\":\"RT @GlblCtzn: What's your impact? Buy #GlobalCitizenFestival #IMPACK & gear up to help end extreme poverty by 2030 http:\\/\\/t.co\\/jLENR4DLCv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Sep 14 13:42:50 +0000 2014\",\"id\":511148066645479424,\"id_str\":\"511148066645479424\",\"text\":\"What's your impact? Buy #GlobalCitizenFestival #IMPACK & gear up to help end extreme poverty by 2030 http:\\/\\/t.co\\/jLENR4DLCv\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":75,\"favorite_count\":45,\"entities\":{\"hashtags\":[{\"text\":\"GlobalCitizenFestival\",\"indices\":[24,46]},{\"text\":\"IMPACK\",\"indices\":[47,54]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jLENR4DLCv\",\"expanded_url\":\"http:\\/\\/gumroad.com\\/l\\/impack4\",\"display_url\":\"gumroad.com\\/l\\/impack4\",\"indices\":[105,127]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":75,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GlobalCitizenFestival\",\"indices\":[38,60]},{\"text\":\"IMPACK\",\"indices\":[61,68]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GlblCtzn\",\"name\":\"Global Citizen\",\"id\":596893898,\"id_str\":\"596893898\",\"indices\":[3,12]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jLENR4DLCv\",\"expanded_url\":\"http:\\/\\/gumroad.com\\/l\\/impack4\",\"display_url\":\"gumroad.com\\/l\\/impack4\",\"indices\":[119,141]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929846\\/ltacjpy7lzh7l82pbpq1.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656929846\\/ltacjpy7lzh7l82pbpq1.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782472671\\/08e0b9f0be0cefc12e0a71c493f97041_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782472671\\/08e0b9f0be0cefc12e0a71c493f97041_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/158079127\\/1347394440\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":121291606,\"id_str\":\"121291606\",\"name\":\"Twitter Small Biz\",\"screen_name\":\"TwitterSmallBiz\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your resource for tips, best practices and case studies to help your small biz succeed on Twitter. Need help? http:\\/\\/t.co\\/CThqbBjGsS\",\"url\":\"https:\\/\\/t.co\\/tpHprRLYXK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/tpHprRLYXK\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/small-business\",\"display_url\":\"blog.twitter.com\\/small-business\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CThqbBjGsS\",\"expanded_url\":\"http:\\/\\/ow.ly\\/pJK2Q\",\"display_url\":\"ow.ly\\/pJK2Q\",\"indices\":[110,132]}]}},\"protected\":false,\"followers_count\":264528,\"friends_count\":55,\"listed_count\":2377,\"created_at\":\"Tue Mar 09 01:53:22 +0000 2010\",\"favourites_count\":3079,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3468,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 22:57:43 +0000 2014\",\"id\":539191572857118721,\"id_str\":\"539191572857118721\",\"text\":\"@leticia__cav No minimum spend and you only pay for the actions that align to your goals. Learn more here: http:\\/\\/t.co\\/lXp4DPnsLx\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.hootsuite.com\\\" rel=\\\"nofollow\\\"\\u003eHootsuite\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538957453174382592,\"in_reply_to_status_id_str\":\"538957453174382592\",\"in_reply_to_user_id\":1584693480,\"in_reply_to_user_id_str\":\"1584693480\",\"in_reply_to_screen_name\":\"leticia__cav\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"leticia__cav\",\"name\":\"Leticia Cavallaro\",\"id\":1584693480,\"id_str\":\"1584693480\",\"indices\":[0,13]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/lXp4DPnsLx\",\"expanded_url\":\"http:\\/\\/business.twitter.com\\/solutions\",\"display_url\":\"business.twitter.com\\/solutions\",\"indices\":[107,129]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/662761953\\/4fd6gdoj9bk1s48hkzaz.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/662761953\\/4fd6gdoj9bk1s48hkzaz.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531885101043302400\\/4fDwYFQb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531885101043302400\\/4fDwYFQb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/121291606\\/1396974970\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}]" } } } ] }tweepy-3.5.0/cassettes/testsendanddestroydirectmessage.json000066400000000000000000000643201265716604700244360ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/direct_messages/new.json?text=test+message&user=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "a858857cf6f7a7baec9c4146e8fc1e3e" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "fbf6b770b2410d58" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "3568" ], "set-cookie": [ "guest_id=v1%3A141738009841634269; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:38 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:38 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:38 UTC" ] }, "body": { "string": "{\"id\":539157326817947650,\"id_str\":\"539157326817947650\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Sun Nov 30 20:41:38 +0000 2014\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/direct_messages/destroy.json?id=539157326817947650", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "43474dd4d262b8496b54ef8708478f14" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "03394b890f249cc7" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "3568" ], "set-cookie": [ "guest_id=v1%3A141738009880805995; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:38 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:38 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:38 UTC" ] }, "body": { "string": "{\"id\":539157326817947650,\"id_str\":\"539157326817947650\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Sun Nov 30 20:41:38 +0000 2014\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/direct_messages/new.json?text=test+message&user=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "db5bc6919ce0b3e60c513b7481b493cd" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "936349dd478337d2" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "3568" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:27 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "guest_id=v1%3A141740012767185414; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:27 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:27 UTC" ] }, "body": { "string": "{\"id\":539241335593914368,\"id_str\":\"539241335593914368\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Mon Dec 01 02:15:27 +0000 2014\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/direct_messages/destroy.json?id=539241335593914368", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1e18f2f63206f925abfa210461758d29" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "add6ab0494677d0b" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "3568" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:28 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "guest_id=v1%3A141740012804412141; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:28 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:28 UTC" ] }, "body": { "string": "{\"id\":539241335593914368,\"id_str\":\"539241335593914368\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Mon Dec 01 02:15:27 +0000 2014\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}" } } } ] }tweepy-3.5.0/cassettes/testsentdirectmessages.json000066400000000000000000000523041265716604700225430ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages/sent.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:39 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1546157bff29ea420897a0df52e62074" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "3818f76457df3370" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "7121" ], "set-cookie": [ "guest_id=v1%3A141738009918197493; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:39 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:39 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380999" ] }, "body": { "string": "[{\"id\":266403740574167040,\"id_str\":\"266403740574167040\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Nov 08 04:56:15 +0000 2012\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}},{\"id\":460163613,\"id_str\":\"460163613\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Oct 15 23:47:36 +0000 2009\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/direct_messages/sent.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:28 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "591fc72b2b2fa87340f6d6ae687869b3" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401028" ], "x-access-level": [ "read-write-directmessages", "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "7121" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:28 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "guest_id=v1%3A141740012860609128; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:28 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "6ffb311a8de78309" ] }, "body": { "string": "[{\"id\":266403740574167040,\"id_str\":\"266403740574167040\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Nov 08 04:56:15 +0000 2012\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}},{\"id\":460163613,\"id_str\":\"460163613\",\"text\":\"test message\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Oct 15 23:47:36 +0000 2009\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]}}]" } } } ] }tweepy-3.5.0/cassettes/testshowfriendship.json000066400000000000000000000155121265716604700217030ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friendships/show.json?target_screen_name=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:39 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "cea8d59680e2cf7c94a31363f707212a" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "a8010c7b1d3d767c" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "496" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738009951337492; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:39 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:39 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380999" ] }, "body": { "string": "{\"relationship\":{\"source\":{\"id\":82301637,\"id_str\":\"82301637\",\"screen_name\":\"tweepytest\",\"following\":true,\"followed_by\":false,\"following_received\":false,\"following_requested\":false,\"notifications_enabled\":false,\"can_dm\":false,\"blocking\":false,\"blocked_by\":false,\"muting\":false,\"want_retweets\":true,\"all_replies\":false,\"marked_spam\":false},\"target\":{\"id\":783214,\"id_str\":\"783214\",\"screen_name\":\"twitter\",\"following\":false,\"followed_by\":true,\"following_received\":false,\"following_requested\":false}}}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/friendships/show.json?target_screen_name=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:29 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "4f41e44851a397fa7205e82caa28e5a3" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401029" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "496" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:29 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740012905635643; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:29 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "74cf827c2a74eed4" ] }, "body": { "string": "{\"relationship\":{\"source\":{\"id\":82301637,\"id_str\":\"82301637\",\"screen_name\":\"tweepytest\",\"following\":true,\"followed_by\":false,\"following_received\":false,\"following_requested\":false,\"notifications_enabled\":false,\"can_dm\":false,\"blocking\":false,\"blocked_by\":false,\"muting\":false,\"want_retweets\":true,\"all_replies\":false,\"marked_spam\":false},\"target\":{\"id\":783214,\"id_str\":\"783214\",\"screen_name\":\"twitter\",\"following\":false,\"followed_by\":true,\"following_received\":false,\"following_requested\":false}}}" } } } ] }tweepy-3.5.0/cassettes/testshowlistmember.json000066400000000000000000000322711265716604700217140ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/members/show.json?slug=stars&screen_name=NathanFillion&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417380999" ], "content-length": [ "2371" ], "etag": [ "\"2692f7bc3179def5a16a1c77a80f293c\"" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:40 GMT" ], "x-rate-limit-remaining": [ "14" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-limit": [ "15" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:40 UTC" ], "x-transaction": [ "617049fdc735b7e1" ], "x-connection-hash": [ "b92bdf8fd1eb7a1d54e7b178c8705f77" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:40 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCOH5bwJKAToHaWQiJWI3MzMzOWQ3OGY3Y2M1%250ANWYxYjA2MzBkODVlY2RhNGMy--1b15272bda7a5510645ca0c36a9a0433ed7874b5; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738009989488162; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:40 UTC" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.58547" ], "status": [ "200 OK" ], "x-mid": [ "f20ce2bf947429c81ee752f59af9901134ab5c0b" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"eeeeee\",\"entities\":{\"description\":{\"urls\":[]}},\"name\":\"Nathan Fillion\",\"url\":null,\"listed_count\":37307,\"verified\":true,\"profile_background_tile\":true,\"location\":\"Los Angeles\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"id\":31353077,\"profile_sidebar_fill_color\":\"efefef\",\"status\":{\"in_reply_to_status_id_str\":null,\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[{\"screen_name\":\"NathanFillion\",\"id_str\":\"31353077\",\"id\":31353077,\"indices\":[1,15],\"name\":\"Nathan Fillion\"},{\"screen_name\":\"blackfrogeatery\",\"id_str\":\"415921905\",\"id\":415921905,\"indices\":[75,91],\"name\":\"Black Frog\"}]},\"retweet_count\":113,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003ETweetbot for i\\u039fS\\u003C\\/a\\u003E\",\"created_at\":\"Sun Nov 30 18:40:10 +0000 2014\",\"id_str\":\"539126759736999937\",\"coordinates\":null,\"geo\":null,\"id\":539126759736999937,\"truncated\":false,\"in_reply_to_user_id\":null,\"favorited\":false,\"text\":\"\\u201c@NathanFillion: Thank you Nemo and Marion for an excellent evening at the @blackfrogeatery.\\u201d\\n\\nMARIAN! Curse you, autocorrect.\"},\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"lang\":\"en\",\"id_str\":\"31353077\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"statuses_count\":7874,\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"contributors_enabled\":false,\"profile_background_color\":\"131516\",\"screen_name\":\"NathanFillion\",\"utc_offset\":-28800,\"favourites_count\":193,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"followers_count\":2710403,\"profile_link_color\":\"009999\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"protected\":false,\"is_translator\":false,\"default_profile_image\":false,\"description\":\"It costs nothing to say something kind. Even less to shut up altogether.\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"friends_count\":526,\"default_profile\":false,\"geo_enabled\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/members/show.json?owner_screen_name=applepie&screen_name=NathanFillion&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401029" ], "x-xss-protection": [ "1; mode=block" ], "content-length": [ "2299" ], "etag": [ "\"14acdfe39db422f0af9ae812231a955a\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:29 GMT" ], "x-runtime": [ "0.18540" ], "x-rate-limit-remaining": [ "14" ], "x-rate-limit-limit": [ "15" ], "date": [ "Mon, 01 Dec 2014 02:15:29 UTC" ], "x-transaction": [ "9bc62f03c49ad70c" ], "x-connection-hash": [ "c416dd61da58fe6d35917e71be14c42d" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:29 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCLaYoQNKAToHaWQiJWQ3NzVlYTQxMTgxMTY1%250AZGUxMTk1ZTYyNDIxYjljYjIy--9fde4fdf3e7cab13ef55fba95787bda86b427376; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740012943742371; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:29 UTC" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "37c3470f5a803cf4b94cba39393e898ba9a03dbc" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"eeeeee\",\"entities\":{\"description\":{\"urls\":[]}},\"name\":\"Nathan Fillion\",\"url\":null,\"listed_count\":37307,\"verified\":true,\"profile_background_tile\":true,\"location\":\"Los Angeles\",\"id\":31353077,\"profile_sidebar_fill_color\":\"efefef\",\"status\":{\"possibly_sensitive\":false,\"entities\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IUDtaiFOqB\",\"indices\":[84,106],\"display_url\":\"youtu.be\\/3N1Q8oFpX1Y\",\"expanded_url\":\"http:\\/\\/youtu.be\\/3N1Q8oFpX1Y\"}],\"hashtags\":[],\"user_mentions\":[]},\"retweet_count\":65,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=\\\"nofollow\\\"\\u003ETweetbot for i\\u039fS\\u003C\\/a\\u003E\",\"created_at\":\"Mon Dec 01 01:29:47 +0000 2014\",\"id_str\":\"539229842567225344\",\"coordinates\":null,\"geo\":null,\"id\":539229842567225344,\"truncated\":false,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"favorited\":false,\"text\":\"I want a Jibo. With little legs. And he\\u2019s a little sarcastic, but self-deprecating. http:\\/\\/t.co\\/IUDtaiFOqB\",\"in_reply_to_user_id_str\":null},\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"lang\":\"en\",\"id_str\":\"31353077\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"statuses_count\":7875,\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"contributors_enabled\":false,\"profile_background_color\":\"131516\",\"screen_name\":\"NathanFillion\",\"utc_offset\":-28800,\"favourites_count\":193,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"followers_count\":2711002,\"profile_link_color\":\"009999\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"It costs nothing to say something kind. Even less to shut up altogether.\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/504693293389586433\\/XYr9Dmzt_normal.jpeg\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"friends_count\":526,\"is_translator\":false,\"default_profile\":false,\"geo_enabled\":false}" } } } ] }tweepy-3.5.0/cassettes/testshowlistsubscriber.json000066400000000000000000000312341265716604700226060ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/subscribers/show.json?owner_screen_name=tweepytest&screen_name=applepie&slug=test", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417381001" ], "content-length": [ "2105" ], "etag": [ "\"2154180a966af2cce511af59161e93df\"" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:42 GMT" ], "x-rate-limit-remaining": [ "14" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-limit": [ "15" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:42 UTC" ], "x-transaction": [ "92d3f627558d8e8b" ], "x-connection-hash": [ "9a612e8ad71c670db65473e205bba7a7" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:42 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCLIAcAJKAToHaWQiJTU4MmQ1YTQ2MWUxNWZm%250AMzBiMmQyZDNjYzk4ZjY5ZDY2--b7c469f0340f51311d2f3210323092dedf509bd3; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738010172705086; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:42 UTC" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.57702" ], "status": [ "200 OK" ], "x-mid": [ "16e524a405a5c33bd856f79103015c50de038e70" ] }, "body": { "string": "{\"favourites_count\":8,\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"description\":{\"urls\":[]}},\"is_translator\":false,\"name\":\"Josh Roesslein\",\"url\":null,\"default_profile_image\":false,\"verified\":false,\"profile_background_tile\":false,\"location\":\"San Francisco Bay Area\",\"id\":9302282,\"profile_sidebar_fill_color\":\"000000\",\"status\":{\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[]},\"retweet_count\":0,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"created_at\":\"Tue Nov 25 22:08:13 +0000 2014\",\"id_str\":\"537367178241409025\",\"coordinates\":null,\"geo\":null,\"id\":537367178241409025,\"in_reply_to_status_id_str\":null,\"truncated\":false,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"favorited\":false,\"text\":\"Two dots just got a dollar from me to get more moves. Sneaky in app purchases.\"},\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"lang\":\"en\",\"id_str\":\"9302282\",\"friends_count\":307,\"default_profile\":false,\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"applepie\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"listed_count\":26,\"followers_count\":485,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"protected\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"profile_use_background_image\":true,\"statuses_count\":7649,\"profile_text_color\":\"000000\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"geo_enabled\":true}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/lists/subscribers/show.json?owner_screen_name=tweepytest&screen_name=applepie&slug=test", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401030" ], "x-xss-protection": [ "1; mode=block" ], "content-length": [ "2105" ], "etag": [ "\"0dfd672e0b51a14befefd276cad57d16\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:30 GMT" ], "x-runtime": [ "0.16580" ], "x-rate-limit-remaining": [ "14" ], "x-rate-limit-limit": [ "15" ], "date": [ "Mon, 01 Dec 2014 02:15:30 UTC" ], "x-transaction": [ "0074456525c8d306" ], "x-connection-hash": [ "33c88e3f57594f4ccad7b6bcf103569f" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:30 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCACcoQNKAToHaWQiJWNjZDk1MDQ3YmU3YzVm%250AMmVjYTYxZDI4NDM2ZDQwYmVi--7644c8c418ea9e9288fd5f29758abdef97d00d04; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740013038704332; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:30 UTC" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "9b8825e9a2acbbf94d831c969451f0f0603e92ab" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"description\":{\"urls\":[]}},\"name\":\"Josh Roesslein\",\"url\":null,\"listed_count\":26,\"verified\":false,\"profile_background_tile\":false,\"location\":\"San Francisco Bay Area\",\"id\":9302282,\"profile_sidebar_fill_color\":\"000000\",\"status\":{\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[]},\"retweet_count\":0,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"in_reply_to_status_id_str\":null,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/twitter.com\\/download\\/android\\\" rel=\\\"nofollow\\\"\\u003ETwitter for Android\\u003C\\/a\\u003E\",\"created_at\":\"Tue Nov 25 22:08:13 +0000 2014\",\"in_reply_to_user_id_str\":null,\"id_str\":\"537367178241409025\",\"coordinates\":null,\"geo\":null,\"id\":537367178241409025,\"truncated\":false,\"in_reply_to_user_id\":null,\"favorited\":false,\"text\":\"Two dots just got a dollar from me to get more moves. Sneaky in app purchases.\"},\"is_translator\":false,\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"lang\":\"en\",\"id_str\":\"9302282\",\"statuses_count\":7649,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"applepie\",\"utc_offset\":-28800,\"favourites_count\":8,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"followers_count\":485,\"profile_link_color\":\"000000\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"notifications\":false,\"following\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",\"friends_count\":307,\"default_profile\":false,\"geo_enabled\":true}" } } } ] }tweepy-3.5.0/cassettes/testsubscribeunsubscribelist.json000066400000000000000000000560241265716604700237740ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/subscribers/create.json?slug=stars&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "ff1e09cfa1efd0e7" ], "content-length": [ "1710" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:43 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCNkEcAJKAToHaWQiJThiY2NlNmUwMDNlZWJk%250AZTBkZTMxNWRhMmYwMDFmOGVkOgxjc3JmX2lkIiU4MmM3NGNiOTFjYzM2M2Iw%250ANDdmMGMxNWQ3MDA5OGFmMA%253D%253D--69847a15e3fe0e84c8cf801b1c8c7bafbcd2b2a9; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738010322271650; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:43 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:43 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:43 UTC" ], "x-connection-hash": [ "2f1d1d460a84bf5ee1cb293536ac93cb" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.15077" ], "status": [ "200 OK" ], "x-mid": [ "233ce717473d9d4325c7b29519fcfe89770d6abc" ], "etag": [ "\"b967f11c286ebbc8d026203babd1b50e\"" ] }, "body": { "string": "{\"full_name\":\"@applepie\\/lists\\/stars\",\"user\":{\"listed_count\":26,\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"description\":{\"urls\":[]}},\"name\":\"Josh Roesslein\",\"url\":null,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"verified\":false,\"profile_background_tile\":false,\"location\":\"San Francisco Bay Area\",\"is_translator\":false,\"statuses_count\":7649,\"id\":9302282,\"profile_sidebar_fill_color\":\"000000\",\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"lang\":\"en\",\"id_str\":\"9302282\",\"contributors_enabled\":false,\"favourites_count\":8,\"profile_background_color\":\"000000\",\"screen_name\":\"applepie\",\"utc_offset\":-28800,\"follow_request_sent\":false,\"default_profile_image\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"followers_count\":485,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"protected\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"friends_count\":307,\"default_profile\":false,\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",\"geo_enabled\":true},\"uri\":\"\\/applepie\\/lists\\/stars\",\"subscriber_count\":7,\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"id_str\":\"8078\",\"id\":8078,\"following\":true,\"mode\":\"public\",\"slug\":\"stars\",\"member_count\":55,\"description\":\"\",\"name\":\"stars\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/subscribers/destroy.json?slug=stars&owner_screen_name=applepie", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "dd12918f807abf2d" ], "content-length": [ "1711" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:41:44 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCNkIcAJKAToHaWQiJTRlOThlZjFhYTQ0MGQ2%250AZGQ3ZDI1YWFmYTVhYzczMjVjOgxjc3JmX2lkIiVjMWQ2ZDkxOGE1ZDBmOGYw%250ANGYyNjYyNjU2MzUzMmE4Yw%253D%253D--8101016b866581d3d72e1e392732b88322b552dc; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738010422466261; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:44 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:44 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:41:44 UTC" ], "x-connection-hash": [ "6cf3a2e6673ec50c8c94a626d8dbfbb2" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.15055" ], "status": [ "200 OK" ], "x-mid": [ "15f4b8e3962eb9a533e3e8bee780648641ff4be1" ], "etag": [ "\"ecae72fe4f75db81eedadc9e7daa4f8e\"" ] }, "body": { "string": "{\"full_name\":\"@applepie\\/lists\\/stars\",\"user\":{\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"description\":{\"urls\":[]}},\"name\":\"Josh Roesslein\",\"url\":null,\"listed_count\":26,\"verified\":false,\"profile_background_tile\":false,\"location\":\"San Francisco Bay Area\",\"id\":9302282,\"profile_sidebar_fill_color\":\"000000\",\"is_translator\":false,\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"lang\":\"en\",\"id_str\":\"9302282\",\"statuses_count\":7649,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"applepie\",\"utc_offset\":-28800,\"favourites_count\":8,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"followers_count\":485,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",\"friends_count\":307,\"default_profile\":false,\"geo_enabled\":true},\"uri\":\"\\/applepie\\/lists\\/stars\",\"subscriber_count\":7,\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"id_str\":\"8078\",\"id\":8078,\"following\":false,\"mode\":\"public\",\"slug\":\"stars\",\"member_count\":55,\"description\":\"\",\"name\":\"stars\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/subscribers/create.json?owner_screen_name=applepie&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "67f3beb637372c23" ], "content-length": [ "1710" ], "etag": [ "\"59f58167592435084f88ec88d6874ed1\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:31 GMT" ], "x-runtime": [ "0.15505" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:31 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCBSgoQNKAToHaWQiJWJjZThkNmY2NWE3ZDdi%250AZTgwODZmY2U1YzU4ZTEyM2QyOgxjc3JmX2lkIiU0YjgxMzVkNGE4NjdlMjI0%250ANDdkYTZmMzg4YzE2NjkzNw%253D%253D--66c9a3c2532d64ee3451527351e13f1c4c35d5b9; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740013143322429; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:31 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:31 UTC" ], "x-connection-hash": [ "4b02210124482adc5ceddb90326928a7" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "54cc0cd0a87a082e3ffb5464285e4cc0d25e9177" ] }, "body": { "string": "{\"full_name\":\"@applepie\\/lists\\/stars\",\"user\":{\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"description\":{\"urls\":[]}},\"name\":\"Josh Roesslein\",\"url\":null,\"listed_count\":26,\"verified\":false,\"profile_background_tile\":false,\"location\":\"San Francisco Bay Area\",\"id\":9302282,\"profile_sidebar_fill_color\":\"000000\",\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"lang\":\"en\",\"id_str\":\"9302282\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"statuses_count\":7649,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"applepie\",\"utc_offset\":-28800,\"favourites_count\":8,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"followers_count\":485,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"profile_use_background_image\":true,\"is_translator\":false,\"profile_text_color\":\"000000\",\"friends_count\":307,\"default_profile\":false,\"geo_enabled\":true},\"uri\":\"\\/applepie\\/lists\\/stars\",\"subscriber_count\":8,\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"id_str\":\"8078\",\"id\":8078,\"following\":true,\"mode\":\"public\",\"slug\":\"stars\",\"member_count\":55,\"description\":\"\",\"name\":\"stars\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/lists/subscribers/destroy.json?owner_screen_name=applepie&slug=stars", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "8fb5815a760c9ca2" ], "content-length": [ "1711" ], "etag": [ "\"29cfc6c5c1e89cdf16494a1ffcbb3144\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:33 GMT" ], "x-runtime": [ "0.17357" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:15:33 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCLOloQNKAToHaWQiJTRiNTI4ZDQ5ODk0NzUz%250AYmEzMDI2MGYyMzMzZTY0MjEzOgxjc3JmX2lkIiVjZGZhYzAwMzIzNTQ4YjM0%250AMjAzZjY4N2YxYjRkZmMzNw%253D%253D--e2d01737e44939e20b0008f002cf206275f842f5; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740013272744870; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:33 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:33 UTC" ], "x-connection-hash": [ "7e7edf114dd9120bd6468fbe9c44bac6" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "1663968709eddee921cc57e115a2060ecfbb31bd" ] }, "body": { "string": "{\"full_name\":\"@applepie\\/lists\\/stars\",\"user\":{\"favourites_count\":8,\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"description\":{\"urls\":[]}},\"is_translator\":false,\"name\":\"Josh Roesslein\",\"url\":null,\"default_profile_image\":false,\"verified\":false,\"profile_background_tile\":false,\"location\":\"San Francisco Bay Area\",\"id\":9302282,\"profile_sidebar_fill_color\":\"000000\",\"time_zone\":\"Pacific Time (US & Canada)\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"lang\":\"en\",\"id_str\":\"9302282\",\"friends_count\":307,\"default_profile\":false,\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"applepie\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"listed_count\":26,\"followers_count\":485,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"protected\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into code.\",\"profile_use_background_image\":true,\"statuses_count\":7649,\"profile_text_color\":\"000000\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"geo_enabled\":true},\"uri\":\"\\/applepie\\/lists\\/stars\",\"subscriber_count\":7,\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"id_str\":\"8078\",\"id\":8078,\"following\":false,\"mode\":\"public\",\"slug\":\"stars\",\"member_count\":55,\"description\":\"\",\"name\":\"stars\"}" } } } ] }tweepy-3.5.0/cassettes/testsuggestedcategories.json000066400000000000000000000215141265716604700227060ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:44 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "8de1ff75ab971d794432fbb8dcf07e12" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "c06dde888151211a" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "1326" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010483452204; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:44 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:44 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381004" ] }, "body": { "string": "[{\"size\":343,\"slug\":\"music\",\"name\":\"Music\"},{\"size\":79,\"slug\":\"sports\",\"name\":\"Sports\"},{\"size\":83,\"slug\":\"photography\",\"name\":\"Photography\"},{\"size\":51,\"slug\":\"twitter\",\"name\":\"Twitter\"},{\"size\":83,\"slug\":\"entertainment\",\"name\":\"Entertainment\"},{\"size\":64,\"slug\":\"funny\",\"name\":\"Funny\"},{\"size\":111,\"slug\":\"news\",\"name\":\"News\"},{\"size\":67,\"slug\":\"technology\",\"name\":\"Technology\"},{\"size\":75,\"slug\":\"fashion\",\"name\":\"Fashion\"},{\"size\":64,\"slug\":\"food-drink\",\"name\":\"Food & Drink\"},{\"size\":209,\"slug\":\"television\",\"name\":\"Television\"},{\"size\":37,\"slug\":\"family\",\"name\":\"Family\"},{\"size\":71,\"slug\":\"art-design\",\"name\":\"Art & Design\"},{\"size\":45,\"slug\":\"business\",\"name\":\"Business\"},{\"size\":46,\"slug\":\"health\",\"name\":\"Health\"},{\"size\":64,\"slug\":\"books\",\"name\":\"Books\"},{\"size\":49,\"slug\":\"science\",\"name\":\"Science\"},{\"size\":76,\"slug\":\"faith-and-religion\",\"name\":\"Faith and Religion\"},{\"size\":52,\"slug\":\"government\",\"name\":\"Government\"},{\"size\":48,\"slug\":\"social-good\",\"name\":\"Social Good\"},{\"size\":127,\"slug\":\"nba\",\"name\":\"NBA\"},{\"size\":44,\"slug\":\"travel\",\"name\":\"Travel\"},{\"size\":51,\"slug\":\"staff-picks\",\"name\":\"Staff Picks\"},{\"size\":81,\"slug\":\"mlb\",\"name\":\"MLB\"},{\"size\":98,\"slug\":\"nascar\",\"name\":\"NASCAR\"},{\"size\":62,\"slug\":\"nhl\",\"name\":\"NHL\"},{\"size\":128,\"slug\":\"pga\",\"name\":\"PGA\"},{\"size\":68,\"slug\":\"gaming\",\"name\":\"Gaming\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:33 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2b39a6478901d73038a3cf5e200f1200" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401033" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1326" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:33 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013387945037; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:33 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "078e6a1cb2827ce5" ] }, "body": { "string": "[{\"size\":343,\"slug\":\"music\",\"name\":\"Music\"},{\"size\":79,\"slug\":\"sports\",\"name\":\"Sports\"},{\"size\":83,\"slug\":\"photography\",\"name\":\"Photography\"},{\"size\":51,\"slug\":\"twitter\",\"name\":\"Twitter\"},{\"size\":83,\"slug\":\"entertainment\",\"name\":\"Entertainment\"},{\"size\":64,\"slug\":\"funny\",\"name\":\"Funny\"},{\"size\":111,\"slug\":\"news\",\"name\":\"News\"},{\"size\":67,\"slug\":\"technology\",\"name\":\"Technology\"},{\"size\":75,\"slug\":\"fashion\",\"name\":\"Fashion\"},{\"size\":64,\"slug\":\"food-drink\",\"name\":\"Food & Drink\"},{\"size\":209,\"slug\":\"television\",\"name\":\"Television\"},{\"size\":37,\"slug\":\"family\",\"name\":\"Family\"},{\"size\":71,\"slug\":\"art-design\",\"name\":\"Art & Design\"},{\"size\":45,\"slug\":\"business\",\"name\":\"Business\"},{\"size\":46,\"slug\":\"health\",\"name\":\"Health\"},{\"size\":64,\"slug\":\"books\",\"name\":\"Books\"},{\"size\":49,\"slug\":\"science\",\"name\":\"Science\"},{\"size\":76,\"slug\":\"faith-and-religion\",\"name\":\"Faith and Religion\"},{\"size\":52,\"slug\":\"government\",\"name\":\"Government\"},{\"size\":48,\"slug\":\"social-good\",\"name\":\"Social Good\"},{\"size\":127,\"slug\":\"nba\",\"name\":\"NBA\"},{\"size\":44,\"slug\":\"travel\",\"name\":\"Travel\"},{\"size\":51,\"slug\":\"staff-picks\",\"name\":\"Staff Picks\"},{\"size\":81,\"slug\":\"mlb\",\"name\":\"MLB\"},{\"size\":98,\"slug\":\"nascar\",\"name\":\"NASCAR\"},{\"size\":62,\"slug\":\"nhl\",\"name\":\"NHL\"},{\"size\":128,\"slug\":\"pga\",\"name\":\"PGA\"},{\"size\":68,\"slug\":\"gaming\",\"name\":\"Gaming\"}]" } } } ] }tweepy-3.5.0/cassettes/testsuggestedusers.json000066400000000000000000014347041265716604700217340ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:45 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5a63ce4e2ce5ff781e6a4ccf45909b6a" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "9111d5187499c226" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "1326" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010517572917; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:45 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:45 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "13" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381004" ] }, "body": { "string": "[{\"size\":343,\"slug\":\"music\",\"name\":\"Music\"},{\"size\":79,\"slug\":\"sports\",\"name\":\"Sports\"},{\"size\":83,\"slug\":\"photography\",\"name\":\"Photography\"},{\"size\":51,\"slug\":\"twitter\",\"name\":\"Twitter\"},{\"size\":83,\"slug\":\"entertainment\",\"name\":\"Entertainment\"},{\"size\":64,\"slug\":\"funny\",\"name\":\"Funny\"},{\"size\":111,\"slug\":\"news\",\"name\":\"News\"},{\"size\":67,\"slug\":\"technology\",\"name\":\"Technology\"},{\"size\":75,\"slug\":\"fashion\",\"name\":\"Fashion\"},{\"size\":64,\"slug\":\"food-drink\",\"name\":\"Food & Drink\"},{\"size\":209,\"slug\":\"television\",\"name\":\"Television\"},{\"size\":37,\"slug\":\"family\",\"name\":\"Family\"},{\"size\":71,\"slug\":\"art-design\",\"name\":\"Art & Design\"},{\"size\":45,\"slug\":\"business\",\"name\":\"Business\"},{\"size\":46,\"slug\":\"health\",\"name\":\"Health\"},{\"size\":64,\"slug\":\"books\",\"name\":\"Books\"},{\"size\":49,\"slug\":\"science\",\"name\":\"Science\"},{\"size\":76,\"slug\":\"faith-and-religion\",\"name\":\"Faith and Religion\"},{\"size\":52,\"slug\":\"government\",\"name\":\"Government\"},{\"size\":48,\"slug\":\"social-good\",\"name\":\"Social Good\"},{\"size\":127,\"slug\":\"nba\",\"name\":\"NBA\"},{\"size\":44,\"slug\":\"travel\",\"name\":\"Travel\"},{\"size\":51,\"slug\":\"staff-picks\",\"name\":\"Staff Picks\"},{\"size\":81,\"slug\":\"mlb\",\"name\":\"MLB\"},{\"size\":98,\"slug\":\"nascar\",\"name\":\"NASCAR\"},{\"size\":62,\"slug\":\"nhl\",\"name\":\"NHL\"},{\"size\":128,\"slug\":\"pga\",\"name\":\"PGA\"},{\"size\":68,\"slug\":\"gaming\",\"name\":\"Gaming\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions/music.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:45 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "549fb06ef64de162f468e6b9c26eeeaf" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "950c84a1fc6a81f0" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "177715" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010554300720; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:45 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:45 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381005" ] }, "body": { "string": "{\"users\":[{\"id\":44409004,\"id_str\":\"44409004\",\"name\":\"Shakira\",\"screen_name\":\"shakira\",\"location\":\"Barranquilla\",\"profile_location\":null,\"description\":\"New album Shakira out now! \\/ El nuevo \\u00e1lbum Shakira ya disponible en iTunes http:\\/\\/t.co\\/2hjhcJE9fk \\/ CD http:\\/\\/t.co\\/HFzQPvOUyQ\",\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"expanded_url\":\"http:\\/\\/www.shakira.com\",\"display_url\":\"shakira.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2hjhcJE9fk\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraiTunes\",\"display_url\":\"smarturl.it\\/ShakiraiTunes\",\"indices\":[76,98]},{\"url\":\"http:\\/\\/t.co\\/HFzQPvOUyQ\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraAlbumCD\",\"display_url\":\"smarturl.it\\/ShakiraAlbumCD\",\"indices\":[104,126]}]}},\"protected\":false,\"followers_count\":28037000,\"friends_count\":158,\"listed_count\":103093,\"created_at\":\"Wed Jun 03 17:38:07 +0000 2009\",\"favourites_count\":73,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3242,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/44409004\\/1411802902\",\"profile_link_color\":\"99033A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C3E2FA\",\"profile_text_color\":\"080808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":79293791,\"id_str\":\"79293791\",\"name\":\"Rihanna\",\"screen_name\":\"rihanna\",\"location\":\"LA BABY!\",\"profile_location\":null,\"description\":\"Support the Clara Lionel Foundation w\\/ the Hard Rock Rihanna Tee -- http:\\/\\/t.co\\/RP1lrQKILP\",\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"expanded_url\":\"http:\\/\\/www.rihannanow.com\",\"display_url\":\"rihannanow.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RP1lrQKILP\",\"expanded_url\":\"http:\\/\\/hardrock.co\\/1mse2ne\",\"display_url\":\"hardrock.co\\/1mse2ne\",\"indices\":[68,90]}]}},\"protected\":false,\"followers_count\":38203955,\"friends_count\":1172,\"listed_count\":97597,\"created_at\":\"Fri Oct 02 21:37:33 +0000 2009\",\"favourites_count\":825,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":9457,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79293791\\/1411123252\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21447363,\"id_str\":\"21447363\",\"name\":\"KATY PERRY \",\"screen_name\":\"katyperry\",\"location\":\"\",\"profile_location\":null,\"description\":\"CURRENTLY\\u2728BEAMING\\u2728ON THE PRISMATIC WORLD TOUR 2014!\",\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"expanded_url\":\"http:\\/\\/www.katyperry.com\",\"display_url\":\"katyperry.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60698302,\"friends_count\":159,\"listed_count\":143584,\"created_at\":\"Fri Feb 20 23:45:56 +0000 2009\",\"favourites_count\":1245,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6227,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"CECFBC\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21447363\\/1401576937\",\"profile_link_color\":\"D55732\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"78C0A8\",\"profile_text_color\":\"5E412F\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14230524,\"id_str\":\"14230524\",\"name\":\"Lady Gaga\",\"screen_name\":\"ladygaga\",\"location\":\"\",\"profile_location\":null,\"description\":\"The lady herself is not just a chameleon in person, but a chameleon in music.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42925795,\"friends_count\":133668,\"listed_count\":239344,\"created_at\":\"Wed Mar 26 22:37:48 +0000 2008\",\"favourites_count\":508,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6090,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0A090A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14230524\\/1415453416\",\"profile_link_color\":\"050505\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":26565946,\"id_str\":\"26565946\",\"name\":\"Justin Timberlake \",\"screen_name\":\"jtimberlake\",\"location\":\"Memphis, TN\",\"profile_location\":null,\"description\":\"Official Twitter Account of Justin Timberlake\",\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"expanded_url\":\"http:\\/\\/www.justintimberlake.com\",\"display_url\":\"justintimberlake.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38135123,\"friends_count\":88,\"listed_count\":76213,\"created_at\":\"Wed Mar 25 19:10:50 +0000 2009\",\"favourites_count\":14,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2706,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26565946\\/1414544111\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":100220864,\"id_str\":\"100220864\",\"name\":\"Bruno Mars\",\"screen_name\":\"BrunoMars\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Julio!!! Get The Stretch!!!!\",\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"expanded_url\":\"http:\\/\\/www.brunomars.com\",\"display_url\":\"brunomars.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19327952,\"friends_count\":90,\"listed_count\":36425,\"created_at\":\"Tue Dec 29 13:07:04 +0000 2009\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3326,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F0DBB7\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/100220864\\/1415585700\",\"profile_link_color\":\"0A0104\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17919972,\"id_str\":\"17919972\",\"name\":\"Taylor Swift\",\"screen_name\":\"taylorswift13\",\"location\":\"\",\"profile_location\":null,\"description\":\"Born in 1989.\",\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"expanded_url\":\"http:\\/\\/www.taylorswift.com\",\"display_url\":\"taylorswift.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47556616,\"friends_count\":148,\"listed_count\":117989,\"created_at\":\"Sat Dec 06 10:10:54 +0000 2008\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2972,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17919972\\/1409286315\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"screen_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Music related Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5907926,\"friends_count\":152,\"listed_count\":8775,\"created_at\":\"Wed Sep 14 16:50:47 +0000 2011\",\"favourites_count\":518,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5537,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27260086,\"id_str\":\"27260086\",\"name\":\"Justin Bieber\",\"screen_name\":\"justinbieber\",\"location\":\"\",\"profile_location\":null,\"description\":\"Let's make the world better, together. Join my fan club @officialfahlo and add me on @shots 'justinbieber'.\",\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/justinbieber\",\"display_url\":\"youtube.com\\/justinbieber\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57288632,\"friends_count\":164322,\"listed_count\":555580,\"created_at\":\"Sat Mar 28 16:41:22 +0000 2009\",\"favourites_count\":1387,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":27918,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27260086\\/1411311442\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":4101221,\"id_str\":\"4101221\",\"name\":\"Thalia\",\"screen_name\":\"thalia\",\"location\":\"\",\"profile_location\":null,\"description\":\"FACEBOOK: http:\\/\\/t.co\\/3ozWqxnN8b\\r\\nand INSTAGRAM: http:\\/\\/t.co\\/dSf9N5uDIp and PINTEREST: http:\\/\\/t.co\\/qnQxavU0MG and\\r\\nNEW BOOK: http:\\/\\/t.co\\/j4R7x0JsfG\",\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"expanded_url\":\"http:\\/\\/Thalia.com\",\"display_url\":\"Thalia.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3ozWqxnN8b\",\"expanded_url\":\"http:\\/\\/facebook.com\\/thalia\",\"display_url\":\"facebook.com\\/thalia\",\"indices\":[10,32]},{\"url\":\"http:\\/\\/t.co\\/dSf9N5uDIp\",\"expanded_url\":\"http:\\/\\/instagram.com\\/thalia\",\"display_url\":\"instagram.com\\/thalia\",\"indices\":[49,71]},{\"url\":\"http:\\/\\/t.co\\/qnQxavU0MG\",\"expanded_url\":\"http:\\/\\/pinterest.com\\/LadyTH\",\"display_url\":\"pinterest.com\\/LadyTH\",\"indices\":[87,109]},{\"url\":\"http:\\/\\/t.co\\/j4R7x0JsfG\",\"expanded_url\":\"http:\\/\\/facebook.com\\/chupiethebinky\",\"display_url\":\"facebook.com\\/chupiethebinky\",\"indices\":[125,147]}]}},\"protected\":false,\"followers_count\":6240956,\"friends_count\":1565,\"listed_count\":29611,\"created_at\":\"Wed Apr 11 01:07:09 +0000 2007\",\"favourites_count\":3640,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14770,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4101221\\/1410919094\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"591C78\",\"profile_text_color\":\"61ADD6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23375688,\"id_str\":\"23375688\",\"name\":\"Selena Gomez\",\"screen_name\":\"selenagomez\",\"location\":\"Los Angeles \",\"profile_location\":null,\"description\":\"Get \\u2018The Heart Wants What It Wants\\u2019 and my new collection \\u2018For You\\u2019 - http:\\/\\/t.co\\/RXvhX21okT Philippians 4:13\",\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"expanded_url\":\"http:\\/\\/www.selenagomez.com\",\"display_url\":\"selenagomez.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RXvhX21okT\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/sga1\",\"display_url\":\"smarturl.it\\/sga1\",\"indices\":[70,92]}]}},\"protected\":false,\"followers_count\":24833476,\"friends_count\":1276,\"listed_count\":136116,\"created_at\":\"Mon Mar 09 00:16:45 +0000 2009\",\"favourites_count\":22,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3602,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23375688\\/1416805110\",\"profile_link_color\":\"02806B\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"CC3399\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27909036,\"id_str\":\"27909036\",\"name\":\"Jesse & Joy Oficial\",\"screen_name\":\"jesseyjoy\",\"location\":\"En el espacio sideral..de Tour\",\"profile_location\":null,\"description\":\"Instagram: @jesseyjoy Booking: ACShows - Ana Garcia: (+5255) 53372034 agarcia@westwoodent.com Contacto: mnoriega@westwoodent.com\",\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"expanded_url\":\"http:\\/\\/www.jesseyjoy.com\",\"display_url\":\"jesseyjoy.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3626306,\"friends_count\":1068,\"listed_count\":3310,\"created_at\":\"Tue Mar 31 16:48:05 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":26320,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27909036\\/1407189638\",\"profile_link_color\":\"88888F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F7E0D4\",\"profile_text_color\":\"0ECCC3\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":184910040,\"id_str\":\"184910040\",\"name\":\"Adele\",\"screen_name\":\"OfficialAdele\",\"location\":\"London\\/NYC\",\"profile_location\":null,\"description\":\"Official Twitter account for Adele. @XLRECORDINGS \\/ @ColumbiaRecords recording artist.\",\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"expanded_url\":\"http:\\/\\/www.adele.tv\\/\",\"display_url\":\"adele.tv\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21294437,\"friends_count\":170,\"listed_count\":29831,\"created_at\":\"Mon Aug 30 19:53:19 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":214,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23605048,\"id_str\":\"23605048\",\"name\":\"Paulina Rubio\",\"screen_name\":\"paurubio\",\"location\":\"\",\"profile_location\":null,\"description\":\"Paulina Rubio official twitter \\/ El twitter oficial de Paulina Rubio\",\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"expanded_url\":\"http:\\/\\/www.paulinarubio.com\",\"display_url\":\"paulinarubio.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9261396,\"friends_count\":700,\"listed_count\":23164,\"created_at\":\"Tue Mar 10 15:30:11 +0000 2009\",\"favourites_count\":464,\"utc_offset\":-21600,\"time_zone\":\"Mexico City\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6216,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EF508A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23605048\\/1390333595\",\"profile_link_color\":\"01A7E0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F768BE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":268414482,\"id_str\":\"268414482\",\"name\":\"Miley Ray Cyrus\",\"screen_name\":\"MileyCyrus\",\"location\":\"PLUTO \",\"profile_location\":null,\"description\":\"#FUCKINGBANGERZ\",\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/bangerz?IQid=tw\",\"display_url\":\"smarturl.it\\/bangerz?IQid=tw\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18843057,\"friends_count\":371,\"listed_count\":60263,\"created_at\":\"Fri Mar 18 18:36:02 +0000 2011\",\"favourites_count\":81,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7901,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268414482\\/1412118738\",\"profile_link_color\":\"0D0101\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"FF8400\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35094637,\"id_str\":\"35094637\",\"name\":\"Alicia Keys\",\"screen_name\":\"aliciakeys\",\"location\":\"New York City\",\"profile_location\":null,\"description\":\"Passionate about my work, in love with my family and dedicated to spreading light. It's contagious!;-)\\r\\n\\r\\nhttp:\\/\\/t.co\\/QP5RXoYH12\",\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"expanded_url\":\"http:\\/\\/www.aliciakeys.com\",\"display_url\":\"aliciakeys.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/QP5RXoYH12\",\"expanded_url\":\"http:\\/\\/www.weareheremovement.com\",\"display_url\":\"weareheremovement.com\",\"indices\":[106,128]}]}},\"protected\":false,\"followers_count\":20320485,\"friends_count\":523,\"listed_count\":52372,\"created_at\":\"Sat Apr 25 00:46:24 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5138,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"150D1A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35094637\\/1412196329\",\"profile_link_color\":\"171415\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D91C26\",\"profile_text_color\":\"090A02\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":31927467,\"id_str\":\"31927467\",\"name\":\"Pitbull\",\"screen_name\":\"pitbull\",\"location\":\"Miami, FL\",\"profile_location\":null,\"description\":\"GLOBALIZATION\",\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/pitbullmusic\",\"display_url\":\"youtube.com\\/pitbullmusic\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18527261,\"friends_count\":2490,\"listed_count\":23168,\"created_at\":\"Thu Apr 16 16:03:02 +0000 2009\",\"favourites_count\":25,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6023,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31927467\\/1417022925\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D6D6D6\",\"profile_text_color\":\"C40808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16409683,\"id_str\":\"16409683\",\"name\":\"Britney Spears\",\"screen_name\":\"britneyspears\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"It\\u2019s Britney Bitch! #BritneyJean available now on @iTunesMusic: http:\\/\\/t.co\\/dps446FIFx\",\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"expanded_url\":\"http:\\/\\/www.britneyspears.com\",\"display_url\":\"britneyspears.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dps446FIFx\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/britneyjean?IQid=tw\",\"display_url\":\"smarturl.it\\/britneyjean?IQ\\u2026\",\"indices\":[64,86]}]}},\"protected\":false,\"followers_count\":39693192,\"friends_count\":400806,\"listed_count\":129408,\"created_at\":\"Mon Sep 22 20:47:35 +0000 2008\",\"favourites_count\":498,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3878,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16409683\\/1397512555\",\"profile_link_color\":\"D44A71\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F4F4F4\",\"profile_text_color\":\"222222\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":220332457,\"id_str\":\"220332457\",\"name\":\"\\u304d\\u3083\\u308a\\u30fc\\u3071\\u307f\\u3085\\u3071\\u307f\\u3085\",\"screen_name\":\"pamyurin\",\"location\":\"ASOBI SYSTEM\",\"profile_location\":null,\"description\":\"\\u3075\\u3041\\u3093\\u305f\\u4eba\",\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"expanded_url\":\"http:\\/\\/s.ameblo.jp\\/kyarypamyupamyu\\/\",\"display_url\":\"s.ameblo.jp\\/kyarypamyupamy\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2577114,\"friends_count\":165,\"listed_count\":15384,\"created_at\":\"Sat Nov 27 13:30:22 +0000 2010\",\"favourites_count\":3,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11845,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/220332457\\/1398672949\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21111883,\"id_str\":\"21111883\",\"name\":\"Demi Lovato\",\"screen_name\":\"ddlovato\",\"location\":\"DALLAS\\/LA\",\"profile_location\":null,\"description\":\"New album DEMI feat. Neon Lights, & my new single Really Don't Care available NOW!!! Download here - http:\\/\\/t.co\\/ydguDHMvx6 #DEMIWORLDTOUR tix on sale now!\",\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/DemiLovato\",\"display_url\":\"facebook.com\\/DemiLovato\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ydguDHMvx6\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/dla1\",\"display_url\":\"smarturl.it\\/dla1\",\"indices\":[101,123]}]}},\"protected\":false,\"followers_count\":25618457,\"friends_count\":339,\"listed_count\":106101,\"created_at\":\"Tue Feb 17 18:02:08 +0000 2009\",\"favourites_count\":10,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12365,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21111883\\/1410889387\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"B9BEB8\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":28706024,\"id_str\":\"28706024\",\"name\":\"P!nk\",\"screen_name\":\"Pink\",\"location\":\"los angeles\",\"profile_location\":null,\"description\":\"it's all happening\",\"url\":\"http:\\/\\/t.co\\/spVFUPAxU3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/spVFUPAxU3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pink\",\"display_url\":\"twitter.com\\/pink\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25155173,\"friends_count\":340,\"listed_count\":67165,\"created_at\":\"Sat Apr 04 01:16:34 +0000 2009\",\"favourites_count\":229,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5475,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/178806023\\/grammys13.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/178806023\\/grammys13.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahanderson_112_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahanderson_112_normal.jpg\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"DBE9ED\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27195114,\"id_str\":\"27195114\",\"name\":\"Drizzy\",\"screen_name\":\"Drake\",\"location\":\"Paradise\",\"profile_location\":null,\"description\":\"Nothing Was The Same\",\"url\":\"http:\\/\\/t.co\\/C9ZI8aYDQe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/C9ZI8aYDQe\",\"expanded_url\":\"http:\\/\\/www.octobersveryown.net\",\"display_url\":\"octobersveryown.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18265325,\"friends_count\":633,\"listed_count\":38355,\"created_at\":\"Sat Mar 28 07:17:46 +0000 2009\",\"favourites_count\":11,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1621,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000056841964\\/7c2ff2772b7f89a4ecffdf2d5544a78e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000056841964\\/7c2ff2772b7f89a4ecffdf2d5544a78e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000337150556\\/c28d01d9b1757babd8194c18270a3074_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000337150556\\/c28d01d9b1757babd8194c18270a3074_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27195114\\/1377141341\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18863815,\"id_str\":\"18863815\",\"name\":\"Coldplay\",\"screen_name\":\"coldplay\",\"location\":\"Harveytown\",\"profile_location\":null,\"description\":\"New concert film & live album, Ghost Stories Live 2014, out now. CD\\/DVD\\/Blu-ray http:\\/\\/t.co\\/N9MvHduRIW iTunes http:\\/\\/t.co\\/NIPFjZ4beT\",\"url\":\"http:\\/\\/t.co\\/i83B1uAdgm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/i83B1uAdgm\",\"expanded_url\":\"http:\\/\\/www.coldplay.com\",\"display_url\":\"coldplay.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/N9MvHduRIW\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Live2014\",\"display_url\":\"smarturl.it\\/Live2014\",\"indices\":[80,102]},{\"url\":\"http:\\/\\/t.co\\/NIPFjZ4beT\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Live2014iTunes\",\"display_url\":\"smarturl.it\\/Live2014iTunes\",\"indices\":[110,132]}]}},\"protected\":false,\"followers_count\":13487754,\"friends_count\":2121,\"listed_count\":48353,\"created_at\":\"Sun Jan 11 11:04:45 +0000 2009\",\"favourites_count\":601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4354,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/524103903088898048\\/IcSdF3zf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/524103903088898048\\/IcSdF3zf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18863815\\/1413791230\",\"profile_link_color\":\"11518C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":55033131,\"id_str\":\"55033131\",\"name\":\"Ricardo Montaner\",\"screen_name\":\"montanertwiter\",\"location\":\"MIAMI\",\"profile_location\":null,\"description\":\"Ricardo Montaner's official Twitter -\",\"url\":\"http:\\/\\/t.co\\/NEu7krdNMK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/NEu7krdNMK\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/ricardo.montaner\",\"display_url\":\"facebook.com\\/ricardo.montan\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6079648,\"friends_count\":206,\"listed_count\":14387,\"created_at\":\"Wed Jul 08 21:21:12 +0000 2009\",\"favourites_count\":87,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":35028,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/492401562824613888\\/2_NMFPC8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/492401562824613888\\/2_NMFPC8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523535846708764673\\/3V9wsrv6_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523535846708764673\\/3V9wsrv6_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/55033131\\/1413655650\",\"profile_link_color\":\"0C0D0D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":73992972,\"id_str\":\"73992972\",\"name\":\"Avril Lavigne\",\"screen_name\":\"AvrilLavigne\",\"location\":\"\",\"profile_location\":null,\"description\":\"New album available now!\",\"url\":\"http:\\/\\/t.co\\/cRHvcVAUWW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cRHvcVAUWW\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/avril-lavigne\",\"display_url\":\"smarturl.it\\/avril-lavigne\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17260880,\"friends_count\":66,\"listed_count\":39339,\"created_at\":\"Sun Sep 13 22:43:00 +0000 2009\",\"favourites_count\":40,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2631,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"100C0B\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000109462098\\/cad0a5551d2eabd42d518a66ade275b4.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000109462098\\/cad0a5551d2eabd42d518a66ade275b4.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535605743584415744\\/C43ySOsb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535605743584415744\\/C43ySOsb_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/73992972\\/1400196824\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"1A1A17\",\"profile_text_color\":\"ABABAB\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":3004231,\"id_str\":\"3004231\",\"name\":\"Snoop Dogg\",\"screen_name\":\"SnoopDogg\",\"location\":\"\",\"profile_location\":null,\"description\":\"http:\\/\\/t.co\\/mKAL0xVm2C\\nhttp:\\/\\/t.co\\/IRCkSUgQMo\",\"url\":\"http:\\/\\/t.co\\/DKHrtJuxr9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DKHrtJuxr9\",\"expanded_url\":\"http:\\/\\/snoopdogg.com\",\"display_url\":\"snoopdogg.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mKAL0xVm2C\",\"expanded_url\":\"http:\\/\\/SnooperMarket.com\",\"display_url\":\"SnooperMarket.com\",\"indices\":[0,22]},{\"url\":\"http:\\/\\/t.co\\/IRCkSUgQMo\",\"expanded_url\":\"http:\\/\\/YouTube.com\\/WestFestTV\",\"display_url\":\"YouTube.com\\/WestFestTV\",\"indices\":[23,45]}]}},\"protected\":false,\"followers_count\":11696969,\"friends_count\":2514,\"listed_count\":44250,\"created_at\":\"Fri Mar 30 19:05:42 +0000 2007\",\"favourites_count\":351,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":23799,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000146121910\\/HID4uOvf.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000146121910\\/HID4uOvf.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/473992003449917440\\/-TTmHRJq_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/473992003449917440\\/-TTmHRJq_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3004231\\/1401843639\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":42420346,\"id_str\":\"42420346\",\"name\":\"AGNEZ MO\",\"screen_name\":\"agnezmo\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"DREAM, believe, and make it happen! Instagram: @agnezmo and @myfitnezdiary Tumblr: http:\\/\\/t.co\\/ixccwFIkN7 Facebook page: http:\\/\\/t.co\\/RHEUTdskGW\",\"url\":\"http:\\/\\/t.co\\/OXrfgzYIYG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OXrfgzYIYG\",\"expanded_url\":\"http:\\/\\/www.agnezmo.com\",\"display_url\":\"agnezmo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ixccwFIkN7\",\"expanded_url\":\"http:\\/\\/agnezmothekid.tumblr.com\",\"display_url\":\"agnezmothekid.tumblr.com\",\"indices\":[83,105]},{\"url\":\"http:\\/\\/t.co\\/RHEUTdskGW\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/agnesmonica\",\"display_url\":\"facebook.com\\/agnesmonica\",\"indices\":[121,143]}]}},\"protected\":false,\"followers_count\":11796465,\"friends_count\":986,\"listed_count\":10635,\"created_at\":\"Mon May 25 15:05:00 +0000 2009\",\"favourites_count\":1142,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":14018,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/512194830709960704\\/fscLT8wF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/512194830709960704\\/fscLT8wF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/42420346\\/1380210621\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18228898,\"id_str\":\"18228898\",\"name\":\"John Legend\",\"screen_name\":\"johnlegend\",\"location\":\"New York, NY, USA\",\"profile_location\":null,\"description\":\"Get #LoveInTheFuture now http:\\/\\/t.co\\/GzKLiH5GD3\",\"url\":\"http:\\/\\/t.co\\/iGc1LHm5UB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/iGc1LHm5UB\",\"expanded_url\":\"http:\\/\\/johnlegend.com\",\"display_url\":\"johnlegend.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GzKLiH5GD3\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/LoveInTheFutureDX\",\"display_url\":\"smarturl.it\\/LoveInTheFutur\\u2026\",\"indices\":[25,47]}]}},\"protected\":false,\"followers_count\":6098726,\"friends_count\":523,\"listed_count\":20938,\"created_at\":\"Thu Dec 18 23:42:30 +0000 2008\",\"favourites_count\":49,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7253,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FBFBFB\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000065969311\\/f99e78d0f430632cc48feeee8c8fb8cd.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000065969311\\/f99e78d0f430632cc48feeee8c8fb8cd.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492422192924078080\\/PL-7YjMk_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492422192924078080\\/PL-7YjMk_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18228898\\/1398279153\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":169686021,\"id_str\":\"169686021\",\"name\":\"KANYE WEST\",\"screen_name\":\"kanyewest\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/ZdywsugSWD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZdywsugSWD\",\"expanded_url\":\"http:\\/\\/KANYEWEST.COM\",\"display_url\":\"KANYEWEST.COM\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10994914,\"friends_count\":1,\"listed_count\":45774,\"created_at\":\"Thu Jul 22 23:00:05 +0000 2010\",\"favourites_count\":1,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":98,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/390200267\\/Screen_Shot_2011-12-27_at_11.53.35_PM.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/390200267\\/Screen_Shot_2011-12-27_at_11.53.35_PM.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1132696610\\/securedownload_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1132696610\\/securedownload_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/169686021\\/1359417382\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":84620024,\"id_str\":\"84620024\",\"name\":\"S\\u0131la Gen\\u00e7o\\u011flu\",\"screen_name\":\"silagencoglu\",\"location\":\"\\u0130stanbul\",\"profile_location\":null,\"description\":\"Official Twitter Profile. http:\\/\\/t.co\\/rZlrTk0u\",\"url\":\"http:\\/\\/t.co\\/IMBpTWs9RK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IMBpTWs9RK\",\"expanded_url\":\"http:\\/\\/www.silagencoglu.com.tr\",\"display_url\":\"silagencoglu.com.tr\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/rZlrTk0u\",\"expanded_url\":\"http:\\/\\/silagencoglu.com.tr\",\"display_url\":\"silagencoglu.com.tr\",\"indices\":[26,46]}]}},\"protected\":false,\"followers_count\":3035273,\"friends_count\":144,\"listed_count\":1605,\"created_at\":\"Fri Oct 23 15:41:00 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1132,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/696784051\\/253f8adfa1b570093e38f72882253579.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/696784051\\/253f8adfa1b570093e38f72882253579.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534306185735057408\\/E5eFHw3S_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534306185735057408\\/E5eFHw3S_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/84620024\\/1416223820\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14780915,\"id_str\":\"14780915\",\"name\":\"Rolling Stone\",\"screen_name\":\"RollingStone\",\"location\":\"New York, New York\",\"profile_location\":null,\"description\":\"The latest news and more from Rolling Stone magazine and http:\\/\\/t.co\\/P631jaSEDh.\",\"url\":\"http:\\/\\/t.co\\/zhpWt9kvuA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/zhpWt9kvuA\",\"expanded_url\":\"http:\\/\\/www.rollingstone.com\",\"display_url\":\"rollingstone.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/P631jaSEDh\",\"expanded_url\":\"http:\\/\\/RollingStone.com\",\"display_url\":\"RollingStone.com\",\"indices\":[57,79]}]}},\"protected\":false,\"followers_count\":4069933,\"friends_count\":262,\"listed_count\":33672,\"created_at\":\"Thu May 15 02:52:27 +0000 2008\",\"favourites_count\":5,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":37066,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0B0B0E\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/433012998307729408\\/m8vgpwYl.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/433012998307729408\\/m8vgpwYl.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458998630175617024\\/MIwtW6L0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458998630175617024\\/MIwtW6L0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14780915\\/1416418099\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":740216334,\"id_str\":\"740216334\",\"name\":\"PSY\",\"screen_name\":\"psy_oppa\",\"location\":\"KOREA\",\"profile_location\":null,\"description\":\"Watch #Hangover at http:\\/\\/t.co\\/cMZlv9zu15 And get #Hangover at http:\\/\\/t.co\\/xCNqZLSFDQ\",\"url\":\"http:\\/\\/t.co\\/F5MsR17UWS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F5MsR17UWS\",\"expanded_url\":\"http:\\/\\/youtu.be\\/APj-fkBKIpQ\",\"display_url\":\"youtu.be\\/APj-fkBKIpQ\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cMZlv9zu15\",\"expanded_url\":\"http:\\/\\/youtu.be\\/HkMNOlYcpHg\",\"display_url\":\"youtu.be\\/HkMNOlYcpHg\",\"indices\":[19,41]},{\"url\":\"http:\\/\\/t.co\\/xCNqZLSFDQ\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/PsyHangoveriT\",\"display_url\":\"smarturl.it\\/PsyHangoveriT\",\"indices\":[63,85]}]}},\"protected\":false,\"followers_count\":3799682,\"friends_count\":621,\"listed_count\":7256,\"created_at\":\"Mon Aug 06 09:15:58 +0000 2012\",\"favourites_count\":17,\"utc_offset\":32400,\"time_zone\":\"Irkutsk\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2369,\"lang\":\"ko\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/710779468\\/1c6285d6a08e99fe833a92cd0555745b.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/710779468\\/1c6285d6a08e99fe833a92cd0555745b.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529100506287718400\\/IScqsjFU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529100506287718400\\/IScqsjFU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/740216334\\/1414993265\",\"profile_link_color\":\"FF5317\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19895282,\"id_str\":\"19895282\",\"name\":\"A.R.Rahman\",\"screen_name\":\"arrahman\",\"location\":\"Chennai, India\",\"profile_location\":null,\"description\":\"Grammy and Academy Award winning musician\",\"url\":\"http:\\/\\/t.co\\/Y4qmZ7N7vn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Y4qmZ7N7vn\",\"expanded_url\":\"http:\\/\\/www.arrahman.com\",\"display_url\":\"arrahman.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5549706,\"friends_count\":0,\"listed_count\":10980,\"created_at\":\"Mon Feb 02 05:53:57 +0000 2009\",\"favourites_count\":0,\"utc_offset\":19800,\"time_zone\":\"Chennai\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":717,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/737604036\\/3179cc1733a2b605d117e3661d8439ad.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/737604036\\/3179cc1733a2b605d117e3661d8439ad.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2967359603\\/450c0df90b3eb6711318c450db7db201_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2967359603\\/450c0df90b3eb6711318c450db7db201_normal.jpeg\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":74580436,\"id_str\":\"74580436\",\"name\":\"iTunes Music\",\"screen_name\":\"iTunesMusic\",\"location\":\"Cupertino, CA \",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/HRfui5yQLk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HRfui5yQLk\",\"expanded_url\":\"http:\\/\\/itunes.com\\/music\",\"display_url\":\"itunes.com\\/music\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6436777,\"friends_count\":128,\"listed_count\":18234,\"created_at\":\"Tue Sep 15 22:49:25 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":20047,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EAEAEA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/280868779\\/Twitter_Festival_Background.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/280868779\\/Twitter_Festival_Background.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536704075958476800\\/R4tmpH1O_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536704075958476800\\/R4tmpH1O_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/74580436\\/1416795153\",\"profile_link_color\":\"0088CC\",\"profile_sidebar_border_color\":\"C7C7C7\",\"profile_sidebar_fill_color\":\"E0E0E0\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":59900378,\"id_str\":\"59900378\",\"name\":\"Alejandro Fernandez\",\"screen_name\":\"alexoficial\",\"location\":\"Mexico\",\"profile_location\":null,\"description\":\"Twitter oficial de Alejandro Fern\\u00e1ndez\",\"url\":\"http:\\/\\/t.co\\/8Gv1wWLXtR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8Gv1wWLXtR\",\"expanded_url\":\"http:\\/\\/www.alejandrofernandez.com\",\"display_url\":\"alejandrofernandez.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3217338,\"friends_count\":113,\"listed_count\":6722,\"created_at\":\"Fri Jul 24 22:01:07 +0000 2009\",\"favourites_count\":16,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3959,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000063162501\\/67296aafac07a8bcaa7e666ebed7ec8a.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000063162501\\/67296aafac07a8bcaa7e666ebed7ec8a.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534359170754310144\\/T0RB7ghV_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534359170754310144\\/T0RB7ghV_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/59900378\\/1417216840\",\"profile_link_color\":\"991818\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"0A0A0A\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":70162012,\"id_str\":\"70162012\",\"name\":\"Chino y Nacho\",\"screen_name\":\"ChinoyNacho\",\"location\":\"\\u00dcT: 10.487815,-66.836216\",\"profile_location\":null,\"description\":\"Chino&Nacho, son 2 j\\u00f3venes q a fuerza d talento,constancia y entrega se han convertido en los soberanos absolutos de la m\\u00fasica Urbana en el mundo\",\"url\":\"http:\\/\\/t.co\\/A0QCaVh2yg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/A0QCaVh2yg\",\"expanded_url\":\"http:\\/\\/www.chinoynacho.com.ve\",\"display_url\":\"chinoynacho.com.ve\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3844621,\"friends_count\":172,\"listed_count\":7290,\"created_at\":\"Sun Aug 30 17:04:34 +0000 2009\",\"favourites_count\":25,\"utc_offset\":-16200,\"time_zone\":\"Caracas\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":16391,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/494503555919654912\\/NRxf1SCy.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/494503555919654912\\/NRxf1SCy.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/494501640045486080\\/vH1qCgMr_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/494501640045486080\\/vH1qCgMr_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/70162012\\/1406735026\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":637313893,\"id_str\":\"637313893\",\"name\":\"G-DRAGON\",\"screen_name\":\"IBGDRGN\",\"location\":\"SEOULCITY\",\"profile_location\":null,\"description\":\"\\u2592 \\u2592 \\u2592 ONE AND ONLY GD \\u2592 \\u2592 \\u2592 http:\\/\\/t.co\\/ABdWwJrQG4\\uff5chttp:\\/\\/t.co\\/xCuh2e1jE3\\uff5chttp:\\/\\/t.co\\/z4O2zgQL5q\\uff5cinstagram:XXXIBGDRGN\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ABdWwJrQG4\",\"expanded_url\":\"http:\\/\\/ygbigbang.com\\/GDRAGON\",\"display_url\":\"ygbigbang.com\\/GDRAGON\",\"indices\":[28,50]},{\"url\":\"http:\\/\\/t.co\\/xCuh2e1jE3\",\"expanded_url\":\"http:\\/\\/youtube.com\\/officialGDRAGON\",\"display_url\":\"youtube.com\\/officialGDRAGON\",\"indices\":[51,73]},{\"url\":\"http:\\/\\/t.co\\/z4O2zgQL5q\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/GDRAGON\",\"display_url\":\"facebook.com\\/GDRAGON\",\"indices\":[74,96]}]}},\"protected\":false,\"followers_count\":3541821,\"friends_count\":94,\"listed_count\":12975,\"created_at\":\"Mon Jul 16 21:48:58 +0000 2012\",\"favourites_count\":4,\"utc_offset\":32400,\"time_zone\":\"Seoul\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2374,\"lang\":\"ko\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/749399817\\/aa42bc41c4a74f6723f332dabfc00517.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/749399817\\/aa42bc41c4a74f6723f332dabfc00517.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534967056429363200\\/Zq0uBltY_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534967056429363200\\/Zq0uBltY_normal.jpeg\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"CF7C7C\",\"profile_text_color\":\"FE2E60\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17074714,\"id_str\":\"17074714\",\"name\":\"Luke Bryan\",\"screen_name\":\"LukeBryanOnline\",\"location\":\"Nashville, TN\",\"profile_location\":null,\"description\":\"OFFICIAL twitter for Luke Bryan\",\"url\":\"http:\\/\\/t.co\\/9biJkKaXjb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9biJkKaXjb\",\"expanded_url\":\"http:\\/\\/www.lukebryan.com\\/\",\"display_url\":\"lukebryan.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3721811,\"friends_count\":11990,\"listed_count\":5474,\"created_at\":\"Thu Oct 30 21:14:38 +0000 2008\",\"favourites_count\":112,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2307,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/453577882338476032\\/QDjfcf4u.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/453577882338476032\\/QDjfcf4u.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474222943543652352\\/JTJvDyfT_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474222943543652352\\/JTJvDyfT_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17074714\\/1413908010\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35877056,\"id_str\":\"35877056\",\"name\":\"Axel\",\"screen_name\":\"AxelOficial\",\"location\":\"Buenos Aires, Argentina\",\"profile_location\":null,\"description\":\"#TusOjosMisOjos en iTunes https:\\/\\/t.co\\/b3r9pHsmKd\\nhttp:\\/\\/t.co\\/X5aFKYtGU8\",\"url\":\"http:\\/\\/t.co\\/m4es1c4NmT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/m4es1c4NmT\",\"expanded_url\":\"http:\\/\\/www.axelweb.com.ar\",\"display_url\":\"axelweb.com.ar\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/b3r9pHsmKd\",\"expanded_url\":\"https:\\/\\/itunes.apple.com\\/ar\\/album\\/tus-ojos-mis-ojos\\/id868755749\",\"display_url\":\"itunes.apple.com\\/ar\\/album\\/tus-o\\u2026\",\"indices\":[26,49]},{\"url\":\"http:\\/\\/t.co\\/X5aFKYtGU8\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/AxelOficial\",\"display_url\":\"Instagram.com\\/AxelOficial\",\"indices\":[50,72]}]}},\"protected\":false,\"followers_count\":2327619,\"friends_count\":781,\"listed_count\":3360,\"created_at\":\"Mon Apr 27 22:02:09 +0000 2009\",\"favourites_count\":76,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":15414,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/519530357352177664\\/WDb-uVm8.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/519530357352177664\\/WDb-uVm8.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/519528857473265666\\/Rez_gtUW_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/519528857473265666\\/Rez_gtUW_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35877056\\/1412700278\",\"profile_link_color\":\"878A7B\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"131317\",\"profile_text_color\":\"0084B4\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":413487212,\"id_str\":\"413487212\",\"name\":\"Simon Cowell\",\"screen_name\":\"SimonCowell\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10936837,\"friends_count\":2574,\"listed_count\":12172,\"created_at\":\"Tue Nov 15 23:12:59 +0000 2011\",\"favourites_count\":5,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1444,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1642774110\\/simoncowelltwitter2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1642774110\\/simoncowelltwitter2_normal.jpg\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":36307418,\"id_str\":\"36307418\",\"name\":\"Aleks Syntek\",\"screen_name\":\"syntekoficial\",\"location\":\"M\\u00e9xico\",\"profile_location\":null,\"description\":\"Cantante y compositor festejando 25 a\\u00f1os de discograf\\u00eda, en busqueda de Corazones Invencibles en la humanidad @TheGRAMMYs 2014 nominee http:\\/\\/t.co\\/qBacVTFxIA\",\"url\":\"http:\\/\\/t.co\\/ouAcojTfAJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ouAcojTfAJ\",\"expanded_url\":\"http:\\/\\/syntekoficial.com\",\"display_url\":\"syntekoficial.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qBacVTFxIA\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/syntekoficial\",\"display_url\":\"facebook.com\\/syntekoficial\",\"indices\":[135,157]}]}},\"protected\":false,\"followers_count\":3674124,\"friends_count\":2525,\"listed_count\":8303,\"created_at\":\"Wed Apr 29 06:53:00 +0000 2009\",\"favourites_count\":427,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14914,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/503774959060013056\\/Miwk_Eta.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/503774959060013056\\/Miwk_Eta.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528414330270662656\\/Y61qm0_F_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528414330270662656\\/Y61qm0_F_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/36307418\\/1408848817\",\"profile_link_color\":\"3985A8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":30040682,\"id_str\":\"30040682\",\"name\":\"Anahi \",\"screen_name\":\"Anahi\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/mGqguBMPfJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mGqguBMPfJ\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/anahichannelone\",\"display_url\":\"youtube.com\\/anahichannelone\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7605912,\"friends_count\":501,\"listed_count\":41917,\"created_at\":\"Thu Apr 09 18:49:26 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5806,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/774877553\\/205a72c1ae48d04c7e740269faa442b8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/774877553\\/205a72c1ae48d04c7e740269faa442b8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528590102478737408\\/Q92WeO9f_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528590102478737408\\/Q92WeO9f_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/30040682\\/1359302337\",\"profile_link_color\":\"0F0D0D\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"AB9FBD\",\"profile_text_color\":\"282729\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":116362700,\"id_str\":\"116362700\",\"name\":\"Lil Wayne WEEZY F\",\"screen_name\":\"LilTunechi\",\"location\":\"Mars\",\"profile_location\":null,\"description\":\"IM YOUNG MONEY http:\\/\\/t.co\\/wMwkyzCu\",\"url\":\"http:\\/\\/t.co\\/Drv5zXOC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Drv5zXOC\",\"expanded_url\":\"http:\\/\\/youngmoney.com\",\"display_url\":\"youngmoney.com\",\"indices\":[0,20]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wMwkyzCu\",\"expanded_url\":\"http:\\/\\/trukfit.com\",\"display_url\":\"trukfit.com\",\"indices\":[15,35]}]}},\"protected\":false,\"followers_count\":19368772,\"friends_count\":43,\"listed_count\":37330,\"created_at\":\"Mon Feb 22 05:29:44 +0000 2010\",\"favourites_count\":7,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/77710465\\/lil-wayne-gq-2.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/77710465\\/lil-wayne-gq-2.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/712863751\\/lil-wayne-gq-2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/712863751\\/lil-wayne-gq-2_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14502789,\"id_str\":\"14502789\",\"name\":\"Ivete Sangalo\",\"screen_name\":\"ivetesangalo\",\"location\":\"-14.864931,-40.842104\",\"profile_location\":null,\"description\":\"Twitter Oficial da cantora brasileira Ivete Sangalo. Twitter atualizado pela pr\\u00f3pria Ivete e pela equipe do seu site.\",\"url\":\"http:\\/\\/t.co\\/kXhC3KKClM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kXhC3KKClM\",\"expanded_url\":\"http:\\/\\/www.ivetesangalo.com\",\"display_url\":\"ivetesangalo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11297595,\"friends_count\":707,\"listed_count\":51316,\"created_at\":\"Wed Apr 23 23:25:12 +0000 2008\",\"favourites_count\":324,\"utc_offset\":-7200,\"time_zone\":\"Brasilia\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":36080,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"757367\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/530000045521657857\\/F53E3FI3.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/530000045521657857\\/F53E3FI3.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529999119511613440\\/HNm5uSYW_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529999119511613440\\/HNm5uSYW_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14502789\\/1415196734\",\"profile_link_color\":\"F02E0C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":41265813,\"id_str\":\"41265813\",\"name\":\"Brad Paisley\",\"screen_name\":\"BradPaisley\",\"location\":\"Nashville, TN\",\"profile_location\":null,\"description\":\"In 1972, a crack commando unit was sent to prison by a military court for a crime they didn't commit. I was also born.\",\"url\":\"http:\\/\\/t.co\\/sfUh4kOSha\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sfUh4kOSha\",\"expanded_url\":\"http:\\/\\/bradpaisley.com\",\"display_url\":\"bradpaisley.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3040886,\"friends_count\":87,\"listed_count\":9177,\"created_at\":\"Wed May 20 01:37:57 +0000 2009\",\"favourites_count\":9,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5439,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1F1F27\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/452892293050007552\\/g85aqtDe.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/452892293050007552\\/g85aqtDe.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/483027014832500736\\/rjcKrWYB_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/483027014832500736\\/rjcKrWYB_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/41265813\\/1408978641\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23976386,\"id_str\":\"23976386\",\"name\":\"David Guetta\",\"screen_name\":\"davidguetta\",\"location\":\"Ibiza, Paris, the world...\",\"profile_location\":null,\"description\":\"Official David Guetta Twitter Page. http:\\/\\/t.co\\/RMCqdEM9XC\",\"url\":\"http:\\/\\/t.co\\/MdmYLUVs9y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MdmYLUVs9y\",\"expanded_url\":\"http:\\/\\/www.davidguetta.com\",\"display_url\":\"davidguetta.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RMCqdEM9XC\",\"expanded_url\":\"http:\\/\\/instagram.com\\/davidguetta\",\"display_url\":\"instagram.com\\/davidguetta\",\"indices\":[36,58]}]}},\"protected\":false,\"followers_count\":16025842,\"friends_count\":146,\"listed_count\":29341,\"created_at\":\"Thu Mar 12 16:19:49 +0000 2009\",\"favourites_count\":180,\"utc_offset\":3600,\"time_zone\":\"Paris\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2187,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/518408149372395521\\/sMTVC5RL.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/518408149372395521\\/sMTVC5RL.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535477460054208513\\/Vq47wekj_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535477460054208513\\/Vq47wekj_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23976386\\/1416578880\",\"profile_link_color\":\"ED2023\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":828742454,\"id_str\":\"828742454\",\"name\":\"Sandara Park\",\"screen_name\":\"krungy21\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\ud22c\\uc560\\ub2c8\\uc6d0\\uc758 \\uc0c1\\ud07c\\ud55c\\ubcf4\\uceec & Pambansang krungkrung ng Pilipinas\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2265398,\"friends_count\":160,\"listed_count\":6451,\"created_at\":\"Mon Sep 17 09:51:13 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3255,\"lang\":\"ko\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FAEC50\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/532376821807849472\\/VYsz_lOU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/532376821807849472\\/VYsz_lOU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/828742454\\/1393718725\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":87808186,\"id_str\":\"87808186\",\"name\":\"Diego Torres\",\"screen_name\":\"diegotorres\",\"location\":\"Argentina\",\"profile_location\":null,\"description\":\"Cantante,musico y actor\",\"url\":\"http:\\/\\/t.co\\/uTHDoBLyai\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uTHDoBLyai\",\"expanded_url\":\"http:\\/\\/www.diegotorres.com\",\"display_url\":\"diegotorres.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3490348,\"friends_count\":62,\"listed_count\":7289,\"created_at\":\"Thu Nov 05 23:01:00 +0000 2009\",\"favourites_count\":10,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4369,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FAFAFA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/709250211\\/42dbb99067bf8ab5d3e26751d947d9b3.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/709250211\\/42dbb99067bf8ab5d3e26751d947d9b3.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/518589155639427072\\/NXM5NB0D_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/518589155639427072\\/NXM5NB0D_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":470307418,\"id_str\":\"470307418\",\"name\":\"Nancy Ajram\",\"screen_name\":\"NancyAjram\",\"location\":\"Lebanon\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/VEJDvQzvTy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/VEJDvQzvTy\",\"expanded_url\":\"http:\\/\\/NancyAjram.com\",\"display_url\":\"NancyAjram.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4601245,\"friends_count\":82,\"listed_count\":6456,\"created_at\":\"Sat Jan 21 16:32:54 +0000 2012\",\"favourites_count\":733,\"utc_offset\":7200,\"time_zone\":\"Istanbul\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8506,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/497447740050124801\\/wFkcKHO5_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/497447740050124801\\/wFkcKHO5_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/470307418\\/1406740582\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18825961,\"id_str\":\"18825961\",\"name\":\"Skrillex \",\"screen_name\":\"Skrillex\",\"location\":\"\\u00dcT: 33.997971,-118.280807\",\"profile_location\":null,\"description\":\"your friend\",\"url\":\"http:\\/\\/t.co\\/0Shsi9wWDX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0Shsi9wWDX\",\"expanded_url\":\"http:\\/\\/facebook.com\\/skrillex\",\"display_url\":\"facebook.com\\/skrillex\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3893060,\"friends_count\":859,\"listed_count\":11577,\"created_at\":\"Sat Jan 10 03:49:35 +0000 2009\",\"favourites_count\":2072,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":12365,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534637130270519296\\/MmBo2HR7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534637130270519296\\/MmBo2HR7_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18825961\\/1398372903\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17696167,\"id_str\":\"17696167\",\"name\":\"Ludacris\",\"screen_name\":\"Ludacris\",\"location\":\"International\",\"profile_location\":null,\"description\":\"BURNING BRIDGES EP \\u2013 AVAILABLE DEC 16TH On @GooglePlay - FREE\\u2013ORDER NOW\",\"url\":\"http:\\/\\/t.co\\/mSDcExVt9i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mSDcExVt9i\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/LudaBurningBridges?IQid=tb\",\"display_url\":\"smarturl.it\\/LudaBurningBri\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9882247,\"friends_count\":301,\"listed_count\":25972,\"created_at\":\"Fri Nov 28 02:06:50 +0000 2008\",\"favourites_count\":33,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":14057,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/61663157\\/Conjure_bottle.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/61663157\\/Conjure_bottle.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535845250644705280\\/h_cDVsJt_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535845250644705280\\/h_cDVsJt_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17696167\\/1416590419\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":24963961,\"id_str\":\"24963961\",\"name\":\"Ozzy Osbourne\",\"screen_name\":\"OzzyOsbourne\",\"location\":\"\",\"profile_location\":null,\"description\":\"The Prince of Darkness\",\"url\":\"http:\\/\\/t.co\\/38g2SvGhEZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/38g2SvGhEZ\",\"expanded_url\":\"http:\\/\\/www.ozzy.com\",\"display_url\":\"ozzy.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3922517,\"friends_count\":87,\"listed_count\":17045,\"created_at\":\"Tue Mar 17 21:56:55 +0000 2009\",\"favourites_count\":52,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1853,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/113452082\\/ozzy_twiter_bg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/113452082\\/ozzy_twiter_bg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2946590122\\/09add4b845b1b20dab0c8f3dda6d16c3_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2946590122\\/09add4b845b1b20dab0c8f3dda6d16c3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24963961\\/1387140555\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35787166,\"id_str\":\"35787166\",\"name\":\"NICKI MINAJ\",\"screen_name\":\"NICKIMINAJ\",\"location\":\"The Pinkprint - DEC 15th, 2014\",\"profile_location\":null,\"description\":\"http:\\/\\/t.co\\/IRf1yauV5w ONLY on iTunes\",\"url\":\"http:\\/\\/t.co\\/jWqD25CGhx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jWqD25CGhx\",\"expanded_url\":\"http:\\/\\/MYPINKFRIDAY.COM\",\"display_url\":\"MYPINKFRIDAY.COM\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IRf1yauV5w\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/OnlyExplicit\",\"display_url\":\"smarturl.it\\/OnlyExplicit\",\"indices\":[0,22]}]}},\"protected\":false,\"followers_count\":18379065,\"friends_count\":3645,\"listed_count\":62423,\"created_at\":\"Mon Apr 27 16:36:43 +0000 2009\",\"favourites_count\":19868,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":30200,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F04F8F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/344918034409996672\\/69ca57d46567f9752c46d59f5385247b.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/344918034409996672\\/69ca57d46567f9752c46d59f5385247b.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536552010405777408\\/KvPFuqCn_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536552010405777408\\/KvPFuqCn_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35787166\\/1414996188\",\"profile_link_color\":\"102294\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":49573859,\"id_str\":\"49573859\",\"name\":\"will.i.am\",\"screen_name\":\"iamwill\",\"location\":\"\",\"profile_location\":null,\"description\":\"i.am...i.can...i.will\",\"url\":\"http:\\/\\/t.co\\/A31SqNELFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/A31SqNELFy\",\"expanded_url\":\"http:\\/\\/www.will.i.am\",\"display_url\":\"will.i.am\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12594264,\"friends_count\":1123,\"listed_count\":24437,\"created_at\":\"Mon Jun 22 08:24:19 +0000 2009\",\"favourites_count\":65,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5737,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"080A0A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/716435468\\/35ac33ba311101d05d3b1bfbb45840cb.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/716435468\\/35ac33ba311101d05d3b1bfbb45840cb.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523207513534386176\\/SIo5YRFp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523207513534386176\\/SIo5YRFp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/49573859\\/1413577490\",\"profile_link_color\":\"7A5B0D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17915334,\"id_str\":\"17915334\",\"name\":\"Big Sean\",\"screen_name\":\"BigSean\",\"location\":\"Detroit, MI\",\"profile_location\":null,\"description\":\"Detroit! #FFOE #GOOD Def Jam. my new album almost ready... https:\\/\\/t.co\\/2hS79MMakq\\r\\n\\r\\nhttp:\\/\\/t.co\\/aS16fltwn5 http:\\/\\/t.co\\/uVIPb5xDCd\",\"url\":\"http:\\/\\/t.co\\/gERYKfit82\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gERYKfit82\",\"expanded_url\":\"http:\\/\\/uknowbigsean.com\\/\",\"display_url\":\"uknowbigsean.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2hS79MMakq\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/bigsean-1\",\"display_url\":\"soundcloud.com\\/bigsean-1\",\"indices\":[59,82]},{\"url\":\"http:\\/\\/t.co\\/aS16fltwn5\",\"expanded_url\":\"http:\\/\\/youtube.com\\/bseandon\",\"display_url\":\"youtube.com\\/bseandon\",\"indices\":[86,108]},{\"url\":\"http:\\/\\/t.co\\/uVIPb5xDCd\",\"expanded_url\":\"http:\\/\\/facebook.com\\/uknowbigsean\",\"display_url\":\"facebook.com\\/uknowbigsean\",\"indices\":[109,131]}]}},\"protected\":false,\"followers_count\":6100076,\"friends_count\":1913,\"listed_count\":10229,\"created_at\":\"Sat Dec 06 03:17:02 +0000 2008\",\"favourites_count\":2199,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":17750,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/510541510886957057\\/k26NpIgP.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/510541510886957057\\/k26NpIgP.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/513489771780268034\\/jW_FODLO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/513489771780268034\\/jW_FODLO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17915334\\/1411595498\",\"profile_link_color\":\"005CB3\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":254274083,\"id_str\":\"254274083\",\"name\":\"Marc Anthony\",\"screen_name\":\"MarcAnthony\",\"location\":\"www.marcanthonyonline.com\",\"profile_location\":null,\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/Gv5wkxQwuN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gv5wkxQwuN\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/officialmarcanthony\",\"display_url\":\"facebook.com\\/officialmarcan\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6709436,\"friends_count\":464,\"listed_count\":8137,\"created_at\":\"Fri Feb 18 23:59:54 +0000 2011\",\"favourites_count\":169,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1969,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/439081688908316672\\/3RtdJ1Hd.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/439081688908316672\\/3RtdJ1Hd.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/491285957824356352\\/3TVoigee_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/491285957824356352\\/3TVoigee_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/254274083\\/1405968080\",\"profile_link_color\":\"0A0A0A\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"ABC7D1\",\"profile_text_color\":\"1F1E1C\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":278235826,\"id_str\":\"278235826\",\"name\":\"Elissa\",\"screen_name\":\"elissakh\",\"location\":\"Beirut, Lebanon\",\"profile_location\":null,\"description\":\"Lebanese & International singer, 3 times World Music Award! I m in halethob with my new album #halethob\",\"url\":\"http:\\/\\/t.co\\/YZTG7UtXiD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YZTG7UtXiD\",\"expanded_url\":\"http:\\/\\/www.elissalb.com\",\"display_url\":\"elissalb.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4641945,\"friends_count\":226,\"listed_count\":7308,\"created_at\":\"Wed Apr 06 21:53:47 +0000 2011\",\"favourites_count\":1982,\"utc_offset\":7200,\"time_zone\":\"Cairo\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":16412,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/239899016\\/eli_rez.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/239899016\\/eli_rez.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492391632356925440\\/p1TpB2Kp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492391632356925440\\/p1TpB2Kp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/278235826\\/1406230286\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":8273632,\"id_str\":\"8273632\",\"name\":\"Gustavo Cerati\",\"screen_name\":\"cerati\",\"location\":\"Ciudad de Buenos Aires\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/Wvu3Pn6XzH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Wvu3Pn6XzH\",\"expanded_url\":\"http:\\/\\/cerati.com\",\"display_url\":\"cerati.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2917082,\"friends_count\":6,\"listed_count\":11873,\"created_at\":\"Sat Aug 18 22:38:39 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":241,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F2F2F2\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/80124046\\/DSC06909.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/80124046\\/DSC06909.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/323337022\\/twitter_gus_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/323337022\\/twitter_gus_normal.jpg\",\"profile_link_color\":\"0A0101\",\"profile_sidebar_border_color\":\"CFCFCF\",\"profile_sidebar_fill_color\":\"C2C2C2\",\"profile_text_color\":\"871313\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14790966,\"id_str\":\"14790966\",\"name\":\"Dolly Parton\",\"screen_name\":\"DollyParton\",\"location\":\"Nashville, Tennessee\",\"profile_location\":null,\"description\":\"Blue Smoke available NOW on iTunes! http:\\/\\/t.co\\/EwJjLhkXKS \\r http:\\/\\/t.co\\/O35Itdxp76\",\"url\":\"http:\\/\\/t.co\\/tvguIe5PuX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tvguIe5PuX\",\"expanded_url\":\"http:\\/\\/www.DollyPartonEntertainment.com\",\"display_url\":\"DollyPartonEntertainment.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EwJjLhkXKS\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/BlueSmoke\",\"display_url\":\"smarturl.it\\/BlueSmoke\",\"indices\":[36,58]},{\"url\":\"http:\\/\\/t.co\\/O35Itdxp76\",\"expanded_url\":\"http:\\/\\/OfficialDollyParton.tumblr.com\",\"display_url\":\"OfficialDollyParton.tumblr.com\",\"indices\":[61,83]}]}},\"protected\":false,\"followers_count\":3305255,\"friends_count\":25,\"listed_count\":15192,\"created_at\":\"Thu May 15 20:00:06 +0000 2008\",\"favourites_count\":3,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":953,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000156045213\\/1wVKtTEb.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000156045213\\/1wVKtTEb.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3764210470\\/212b47b120e1ff61a661a2e57f652e60_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3764210470\\/212b47b120e1ff61a661a2e57f652e60_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14790966\\/1405628017\",\"profile_link_color\":\"050933\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"8DD1E6\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19018401,\"id_str\":\"19018401\",\"name\":\"Jason Mraz\",\"screen_name\":\"jason_mraz\",\"location\":\"San Diego, CA\",\"profile_location\":null,\"description\":\"The Official Jason Mraz You Very Much Twitter Account. Follow @MrazTeam for the latest news. 'YES!' available now: http:\\/\\/t.co\\/yYA6qba8uv\",\"url\":\"http:\\/\\/t.co\\/WkhYapC4u9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WkhYapC4u9\",\"expanded_url\":\"http:\\/\\/jasonmraz.com\",\"display_url\":\"jasonmraz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/yYA6qba8uv\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/YesJasonMraz\",\"display_url\":\"smarturl.it\\/YesJasonMraz\",\"indices\":[115,137]}]}},\"protected\":false,\"followers_count\":5598058,\"friends_count\":34,\"listed_count\":27872,\"created_at\":\"Thu Jan 15 11:16:33 +0000 2009\",\"favourites_count\":99,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3090,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EEEEEE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/526249557\\/Twitter-skin.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/526249557\\/Twitter-skin.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492090556877922305\\/X05kHQrT_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492090556877922305\\/X05kHQrT_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19018401\\/1412065741\",\"profile_link_color\":\"CC3333\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18091904,\"id_str\":\"18091904\",\"name\":\"AshleyTisdaleFrench \",\"screen_name\":\"ashleytisdale\",\"location\":\"\",\"profile_location\":null,\"description\":\"My official twitter page!! Hoping my tweets inspire you :)\",\"url\":\"http:\\/\\/t.co\\/GCap09PIfy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GCap09PIfy\",\"expanded_url\":\"http:\\/\\/www.ashleytisdale.com\",\"display_url\":\"ashleytisdale.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12459378,\"friends_count\":179,\"listed_count\":45817,\"created_at\":\"Sat Dec 13 02:32:20 +0000 2008\",\"favourites_count\":425,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4772,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"EDEDED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/487368884039589888\\/jjPoFgxn.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/487368884039589888\\/jjPoFgxn.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536054154112675840\\/3eujN-Ml_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536054154112675840\\/3eujN-Ml_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18091904\\/1406769565\",\"profile_link_color\":\"DA6796\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":209708391,\"id_str\":\"209708391\",\"name\":\"One Direction\",\"screen_name\":\"onedirection\",\"location\":\"London\",\"profile_location\":null,\"description\":\"1D's new album FOUR - out now http:\\/\\/t.co\\/HYHPLwDyPc Pre-order the 'Where We Are' DVD: http:\\/\\/t.co\\/bsEJLFWWcS\",\"url\":\"http:\\/\\/t.co\\/zUsqChksfv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/zUsqChksfv\",\"expanded_url\":\"http:\\/\\/www.onedirectionmusic.com\",\"display_url\":\"onedirectionmusic.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HYHPLwDyPc\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/1DFourAmz\",\"display_url\":\"smarturl.it\\/1DFourAmz\",\"indices\":[30,52]},{\"url\":\"http:\\/\\/t.co\\/bsEJLFWWcS\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/WhereWeAreDVD\",\"display_url\":\"smarturl.it\\/WhereWeAreDVD\",\"indices\":[103,125]}]}},\"protected\":false,\"followers_count\":21490572,\"friends_count\":3782,\"listed_count\":63218,\"created_at\":\"Fri Oct 29 19:05:25 +0000 2010\",\"favourites_count\":151,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7712,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/534140369995194368\\/mmTI0iQr.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/534140369995194368\\/mmTI0iQr.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529223941269630977\\/X7qzczoQ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529223941269630977\\/X7qzczoQ_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/209708391\\/1416184056\",\"profile_link_color\":\"D60808\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":124003770,\"id_str\":\"124003770\",\"name\":\"Cher \",\"screen_name\":\"cher\",\"location\":\"Malibu, California\",\"profile_location\":null,\"description\":\"Stand & B Counted or Sit & B Nothing.\\nDon't Litter,Chew Gum,Walk Past \\nHomeless PPL w\\/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\\nTHERE'S ONLY LOVE&FEAR\",\"url\":\"http:\\/\\/t.co\\/E5aYMJHxx5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/E5aYMJHxx5\",\"expanded_url\":\"http:\\/\\/cher.com\",\"display_url\":\"cher.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2373738,\"friends_count\":154,\"listed_count\":10725,\"created_at\":\"Wed Mar 17 23:05:55 +0000 2010\",\"favourites_count\":749,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12369,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/527880356767084544\\/qhkY_khq.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/527880356767084544\\/qhkY_khq.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/516049693038485504\\/OQASMmsF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/516049693038485504\\/OQASMmsF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/124003770\\/1402616686\",\"profile_link_color\":\"F92649\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":22461427,\"id_str\":\"22461427\",\"name\":\"Al Yankovic\",\"screen_name\":\"alyankovic\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"You know... the Eat It guy.\",\"url\":\"http:\\/\\/t.co\\/rwtnBFlCio\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/rwtnBFlCio\",\"expanded_url\":\"http:\\/\\/www.weirdal.com\",\"display_url\":\"weirdal.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3551629,\"friends_count\":375,\"listed_count\":32697,\"created_at\":\"Mon Mar 02 07:00:29 +0000 2009\",\"favourites_count\":1744,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2823,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/5009241\\/906623544_l.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/5009241\\/906623544_l.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/246073324\\/IL2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/246073324\\/IL2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22461427\\/1398828117\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":94339403,\"id_str\":\"94339403\",\"name\":\"afgansyah reza\",\"screen_name\":\"afgansyah_reza\",\"location\":\"Indonesia-Malaysia\",\"profile_location\":null,\"description\":\"I sing sometimes. \\n#L1VEtoLOVE is out on iTunes.\\nhttp:\\/\\/t.co\\/EF1AUjE5XG\",\"url\":\"http:\\/\\/t.co\\/5rQ4z4Qkix\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5rQ4z4Qkix\",\"expanded_url\":\"http:\\/\\/www.afganworld.com\",\"display_url\":\"afganworld.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EF1AUjE5XG\",\"expanded_url\":\"http:\\/\\/itunes.com\\/afgan\",\"display_url\":\"itunes.com\\/afgan\",\"indices\":[49,71]}]}},\"protected\":false,\"followers_count\":7163435,\"friends_count\":607,\"listed_count\":3840,\"created_at\":\"Thu Dec 03 14:27:45 +0000 2009\",\"favourites_count\":1,\"utc_offset\":25200,\"time_zone\":\"Bangkok\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":9396,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/77429702\\/alisson_13.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/77429702\\/alisson_13.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/483949121015795712\\/FUn_4oP9_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/483949121015795712\\/FUn_4oP9_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":40255499,\"id_str\":\"40255499\",\"name\":\"Ricky Martin\",\"screen_name\":\"ricky_martin\",\"location\":\"Puerto Rico\",\"profile_location\":null,\"description\":\"|where words fail, music speaks| \\n#ADIOS http:\\/\\/t.co\\/AzknYrMvMP\",\"url\":\"http:\\/\\/t.co\\/DMTdvjIOwZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DMTdvjIOwZ\",\"expanded_url\":\"http:\\/\\/bit.ly\\/RMmusic\",\"display_url\":\"bit.ly\\/RMmusic\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AzknYrMvMP\",\"expanded_url\":\"http:\\/\\/bit.ly\\/AdiosOfficialVid\",\"display_url\":\"bit.ly\\/AdiosOfficialV\\u2026\",\"indices\":[58,80]}]}},\"protected\":false,\"followers_count\":11171825,\"friends_count\":334,\"listed_count\":42220,\"created_at\":\"Fri May 15 14:53:26 +0000 2009\",\"favourites_count\":585,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5488,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/510080524124033026\\/KwxvIcgo.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/510080524124033026\\/KwxvIcgo.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/525651525847109634\\/XoK1gtK1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/525651525847109634\\/XoK1gtK1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/40255499\\/1413841885\",\"profile_link_color\":\"EB1212\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"8ED3F5\",\"profile_text_color\":\"06070F\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":150566311,\"id_str\":\"150566311\",\"name\":\"Demet Akalin Kurt\",\"screen_name\":\"DemetAkalin\",\"location\":\"Istanbul, TR\",\"profile_location\":null,\"description\":\"Demet Akal\\u0131n resmi Twitter hesab\\u0131 \\/ Demet Akal\\u0131n official Twitter account. Facebook: http:\\/\\/t.co\\/DHvYok4Y9y\",\"url\":\"http:\\/\\/t.co\\/CARN00wyp2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CARN00wyp2\",\"expanded_url\":\"http:\\/\\/demetakalin.com.tr\",\"display_url\":\"demetakalin.com.tr\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DHvYok4Y9y\",\"expanded_url\":\"http:\\/\\/fb.com\\/DemetAkalin\",\"display_url\":\"fb.com\\/DemetAkalin\",\"indices\":[85,107]}]}},\"protected\":false,\"followers_count\":4264271,\"friends_count\":1290,\"listed_count\":8109,\"created_at\":\"Tue Jun 01 07:29:05 +0000 2010\",\"favourites_count\":50,\"utc_offset\":7200,\"time_zone\":\"Istanbul\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":71643,\"lang\":\"tr\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"01090D\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/472270488345903104\\/KqeUc0Dy.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/472270488345903104\\/KqeUc0Dy.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/506509837023592448\\/wC89_o1R_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/506509837023592448\\/wC89_o1R_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/150566311\\/1400611200\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":48332360,\"id_str\":\"48332360\",\"name\":\"Claudia Leitte\",\"screen_name\":\"ClaudiaLeitte\",\"location\":\"Salvador, Bahia\",\"profile_location\":null,\"description\":\"Brazilian Singer\",\"url\":\"http:\\/\\/t.co\\/KHxYYfQn2S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/KHxYYfQn2S\",\"expanded_url\":\"http:\\/\\/claudialeitte.com\",\"display_url\":\"claudialeitte.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9864825,\"friends_count\":639,\"listed_count\":35939,\"created_at\":\"Thu Jun 18 12:25:09 +0000 2009\",\"favourites_count\":131,\"utc_offset\":-7200,\"time_zone\":\"Brasilia\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":22035,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FCF9F9\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/443104788670971904\\/krY1Q0u2.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/443104788670971904\\/krY1Q0u2.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/521387485105229825\\/twSFjThT_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/521387485105229825\\/twSFjThT_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48332360\\/1414610051\",\"profile_link_color\":\"010F09\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"626262\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19028953,\"id_str\":\"19028953\",\"name\":\"J. Cole\",\"screen_name\":\"JColeNC\",\"location\":\"\",\"profile_location\":null,\"description\":\"Cole World\",\"url\":\"http:\\/\\/t.co\\/7yAqQahMUP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7yAqQahMUP\",\"expanded_url\":\"http:\\/\\/www.dreamvillain.net\",\"display_url\":\"dreamvillain.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5722815,\"friends_count\":386,\"listed_count\":11834,\"created_at\":\"Thu Jan 15 17:08:04 +0000 2009\",\"favourites_count\":63,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2406,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/850246512\\/8ade99f611767df6960441fd09114ddf.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/850246512\\/8ade99f611767df6960441fd09114ddf.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534204016750649345\\/DuB3Z0xN_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534204016750649345\\/DuB3Z0xN_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":180396151,\"id_str\":\"180396151\",\"name\":\"Rossa Roslaina\",\"screen_name\":\"mynameisrossa\",\"location\":\"Indonesia\",\"profile_location\":null,\"description\":\"Love,Life&Music Album instagram @itsrossa. Singer,Brand Ambassador,based in Indonesia,Malaysia.cp: @gemasakti\",\"url\":\"http:\\/\\/t.co\\/ws16Ei16Rx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ws16Ei16Rx\",\"expanded_url\":\"http:\\/\\/www.pecintarossa.com\",\"display_url\":\"pecintarossa.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2373732,\"friends_count\":330,\"listed_count\":1280,\"created_at\":\"Thu Aug 19 14:50:16 +0000 2010\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":15795,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458280497685086208\\/FxRB-gev_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458280497685086208\\/FxRB-gev_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/180396151\\/1400754000\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":26347170,\"id_str\":\"26347170\",\"name\":\"Depeche Mode\",\"screen_name\":\"depechemode\",\"location\":\"Burbank, CA (band webmaster)\",\"profile_location\":null,\"description\":\"From beginnings in Basildon, Essex, to the Universe, Depeche Mode have been creating their brand of music for over 30 years.\",\"url\":\"http:\\/\\/t.co\\/1mwfKToLhZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1mwfKToLhZ\",\"expanded_url\":\"http:\\/\\/www.depechemode.com\",\"display_url\":\"depechemode.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2045808,\"friends_count\":6050,\"listed_count\":13617,\"created_at\":\"Tue Mar 24 22:52:15 +0000 2009\",\"favourites_count\":43,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":924,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/7115102\\/discography_bg_main.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/7115102\\/discography_bg_main.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458756496105279488\\/fWFW2Ra8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458756496105279488\\/fWFW2Ra8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26347170\\/1398211035\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":15155074,\"id_str\":\"15155074\",\"name\":\"Pearl Jam\",\"screen_name\":\"PearlJam\",\"location\":\"Seattle, WA\",\"profile_location\":null,\"description\":\"Pearl Jam's Official Twitter.\\nDownload Lightning Bolt now: http:\\/\\/t.co\\/gdBG7twcVq\",\"url\":\"http:\\/\\/t.co\\/sGQjzDFfFJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sGQjzDFfFJ\",\"expanded_url\":\"http:\\/\\/www.pearljam.com\",\"display_url\":\"pearljam.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gdBG7twcVq\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/PJLightningBolt\",\"display_url\":\"smarturl.it\\/PJLightningBolt\",\"indices\":[59,81]}]}},\"protected\":false,\"followers_count\":2682855,\"friends_count\":530,\"listed_count\":18355,\"created_at\":\"Wed Jun 18 06:59:14 +0000 2008\",\"favourites_count\":254,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2946,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/458709139665846272\\/xuqdWuDa.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/458709139665846272\\/xuqdWuDa.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458703903924551681\\/K1kqKhYb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458703903924551681\\/K1kqKhYb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/15155074\\/1398198846\",\"profile_link_color\":\"DE1D1D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19330043,\"id_str\":\"19330043\",\"name\":\" GOAT.\",\"screen_name\":\"llcoolj\",\"location\":\"Www.rousesocial.com\",\"profile_location\":null,\"description\":\"Longevity.Versatility.Originality\",\"url\":\"http:\\/\\/t.co\\/W7gQZeWcQm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/W7gQZeWcQm\",\"expanded_url\":\"http:\\/\\/www.tsu.co\\/LLCOOLJ\",\"display_url\":\"tsu.co\\/LLCOOLJ\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4521129,\"friends_count\":643,\"listed_count\":18217,\"created_at\":\"Thu Jan 22 07:24:15 +0000 2009\",\"favourites_count\":406,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":23183,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/671106406\\/3ba492f962b7e55859966a1997d6a3e8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/671106406\\/3ba492f962b7e55859966a1997d6a3e8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530249570865774593\\/n83MXNyJ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530249570865774593\\/n83MXNyJ_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19330043\\/1415255844\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":31239408,\"id_str\":\"31239408\",\"name\":\"Beyonc\\u00e9 Knowles\",\"screen_name\":\"Beyonce\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/e8ORwX0pFo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/e8ORwX0pFo\",\"expanded_url\":\"http:\\/\\/www.beyonce.com\",\"display_url\":\"beyonce.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13713099,\"friends_count\":8,\"listed_count\":32621,\"created_at\":\"Tue Apr 14 21:56:04 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":8,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/453644137481261056\\/fg6qGE4n_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/453644137481261056\\/fg6qGE4n_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31239408\\/1396992135\",\"profile_link_color\":\"8F8C8C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":36483808,\"id_str\":\"36483808\",\"name\":\"Daddy Yankee\",\"screen_name\":\"daddy_yankee\",\"location\":\"Worldwide\",\"profile_location\":null,\"description\":\"*EL JEFE* #DYARMY. Billboard and Grammy Latin Urban Music Award Winner. 10 years of #BarrioFino. Shop at my website\",\"url\":\"http:\\/\\/t.co\\/lwRs93BFGi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/lwRs93BFGi\",\"expanded_url\":\"http:\\/\\/daddyyankee.com\\/sabado-rebelde\",\"display_url\":\"daddyyankee.com\\/sabado-rebelde\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7598529,\"friends_count\":65,\"listed_count\":16662,\"created_at\":\"Wed Apr 29 21:15:16 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14167,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000095429189\\/27b950bbd1bda298439c3f831d02c984.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000095429189\\/27b950bbd1bda298439c3f831d02c984.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/425296240755347456\\/xTozEWF__normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/425296240755347456\\/xTozEWF__normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/36483808\\/1414797964\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":43152482,\"id_str\":\"43152482\",\"name\":\"Alejandro Sanz\",\"screen_name\":\"AlejandroSanz\",\"location\":\"\",\"profile_location\":null,\"description\":\"http:\\/\\/t.co\\/sS9G4mnnBy\",\"url\":\"http:\\/\\/t.co\\/0Tzx6wyBME\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0Tzx6wyBME\",\"expanded_url\":\"http:\\/\\/www.alejandrosanz.com\",\"display_url\":\"alejandrosanz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sS9G4mnnBy\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/ASanzOficial\",\"display_url\":\"facebook.com\\/ASanzOficial\",\"indices\":[0,22]}]}},\"protected\":false,\"followers_count\":11793252,\"friends_count\":624,\"listed_count\":32449,\"created_at\":\"Thu May 28 17:21:35 +0000 2009\",\"favourites_count\":7,\"utc_offset\":-10800,\"time_zone\":\"Greenland\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":25579,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/442414188892143616\\/UOwW0adf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/442414188892143616\\/UOwW0adf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43152482\\/1394314761\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":79327591,\"id_str\":\"79327591\",\"name\":\"Dulce Maria\",\"screen_name\":\"DulceMaria\",\"location\":\"\",\"profile_location\":null,\"description\":\"Cantante, Autora y Actriz. Managers: @LuisLuisillo y @PedroDamianof , Management: @SideB_News Contrataciones y contacto: i.want@sidebent.com Dulcemariaoficialfb\",\"url\":\"http:\\/\\/t.co\\/htxREvd0s3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/htxREvd0s3\",\"expanded_url\":\"http:\\/\\/www.dulcemaria.com.mx\",\"display_url\":\"dulcemaria.com.mx\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5406997,\"friends_count\":605,\"listed_count\":31435,\"created_at\":\"Sat Oct 03 00:22:58 +0000 2009\",\"favourites_count\":234,\"utc_offset\":-21600,\"time_zone\":\"Mexico City\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":15858,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"050205\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/456294798194774016\\/aiwakBQF.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/456294798194774016\\/aiwakBQF.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/538035020326531072\\/65pUW--Z_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/538035020326531072\\/65pUW--Z_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79327591\\/1416594952\",\"profile_link_color\":\"F50A15\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0D0D0D\",\"profile_text_color\":\"706969\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16998020,\"id_str\":\"16998020\",\"name\":\"lily\",\"screen_name\":\"lilyallen\",\"location\":\"london\",\"profile_location\":null,\"description\":\"YUNGMUMMEY\",\"url\":\"http:\\/\\/t.co\\/5UzePmPwik\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5UzePmPwik\",\"expanded_url\":\"http:\\/\\/www.lilyallenmusic.com\",\"display_url\":\"lilyallenmusic.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4905498,\"friends_count\":893,\"listed_count\":27727,\"created_at\":\"Mon Oct 27 13:23:17 +0000 2008\",\"favourites_count\":89,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11477,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000076694520\\/1f55db04087950854042a964147708c2.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000076694520\\/1f55db04087950854042a964147708c2.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531996979954716672\\/5U9b4Vz9_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531996979954716672\\/5U9b4Vz9_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16998020\\/1379456373\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":39203045,\"id_str\":\"39203045\",\"name\":\"Residente C13\\/ RC13\",\"screen_name\":\"Calle13Oficial\",\"location\":\"Puerto Rico \\/ Argentina \",\"profile_location\":null,\"description\":\"Ren\\u00e9 P\\u00e9rez Joglar http:\\/\\/t.co\\/iLsFUFLoeB\",\"url\":\"https:\\/\\/t.co\\/JhfaKwDqeF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JhfaKwDqeF\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/calle13oficial\",\"display_url\":\"facebook.com\\/calle13oficial\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/iLsFUFLoeB\",\"expanded_url\":\"http:\\/\\/instagram.com\\/residentecalle13\",\"display_url\":\"instagram.com\\/residentecalle\\u2026\",\"indices\":[18,40]}]}},\"protected\":false,\"followers_count\":5318001,\"friends_count\":1017,\"listed_count\":23958,\"created_at\":\"Mon May 11 06:01:58 +0000 2009\",\"favourites_count\":15,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":22161,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/435671258785533952\\/Hdt619A4.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/435671258785533952\\/Hdt619A4.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3183438195\\/375636a580be0c92ee95d3ea1af7d824_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3183438195\\/375636a580be0c92ee95d3ea1af7d824_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/39203045\\/1392707368\",\"profile_link_color\":\"146B06\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"999999\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":119509520,\"id_str\":\"119509520\",\"name\":\"Chris Brown\",\"screen_name\":\"chrisbrown\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Chris Brown Twitter #XTheAlbum available now! http:\\/\\/t.co\\/x3IKiOn11q\",\"url\":\"http:\\/\\/t.co\\/GdreIID9ez\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GdreIID9ez\",\"expanded_url\":\"http:\\/\\/www.chrisbrownworld.com\",\"display_url\":\"chrisbrownworld.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/x3IKiOn11q\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/XTheAlbum?IQid=tw\",\"display_url\":\"smarturl.it\\/XTheAlbum?IQid\\u2026\",\"indices\":[55,77]}]}},\"protected\":false,\"followers_count\":13775640,\"friends_count\":4,\"listed_count\":46371,\"created_at\":\"Wed Mar 03 21:39:14 +0000 2010\",\"favourites_count\":589,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1784,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"999999\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511907950839877632\\/ZeEHXWUI.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511907950839877632\\/ZeEHXWUI.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/497420988498198528\\/EjB-W5lb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/497420988498198528\\/EjB-W5lb_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/119509520\\/1410840561\",\"profile_link_color\":\"0A0101\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D0D8D9\",\"profile_text_color\":\"4327E6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":24775528,\"id_str\":\"24775528\",\"name\":\"Nelly_Mo \",\"screen_name\":\"Nelly_Mo\",\"location\":\"St. Louis\",\"profile_location\":null,\"description\":\"NELLY's OFFICIAL TWITTER...CEO of Nelly Inc, Derrty Ent, Apple Bottom Clothing and a St. Lunatic\",\"url\":\"http:\\/\\/t.co\\/tIOe39p7Zn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tIOe39p7Zn\",\"expanded_url\":\"http:\\/\\/www.nelly.net\",\"display_url\":\"nelly.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3820807,\"friends_count\":1398,\"listed_count\":10744,\"created_at\":\"Mon Mar 16 21:38:48 +0000 2009\",\"favourites_count\":12,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":8955,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090616184\\/e8a5371dfa3901be19294a1599d2d8e3.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090616184\\/e8a5371dfa3901be19294a1599d2d8e3.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534830121237372929\\/_LG_hlcX_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534830121237372929\\/_LG_hlcX_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24775528\\/1396172748\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":20659839,\"id_str\":\"20659839\",\"name\":\"Wyclef Jean\",\"screen_name\":\"wyclef\",\"location\":\"\",\"profile_location\":null,\"description\":\"The Official and only Wyclef Twitter Page\",\"url\":\"http:\\/\\/t.co\\/4sKDALBrHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4sKDALBrHu\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/wyclefjean\",\"display_url\":\"instagram.com\\/wyclefjean\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3651572,\"friends_count\":109,\"listed_count\":14009,\"created_at\":\"Thu Feb 12 07:11:07 +0000 2009\",\"favourites_count\":165,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":26839,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"990000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/450627631608651776\\/BzzpwDg8.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/450627631608651776\\/BzzpwDg8.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/459606244487991298\\/3eYuCONq_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/459606244487991298\\/3eYuCONq_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20659839\\/1416847744\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":57099808,\"id_str\":\"57099808\",\"name\":\"David Bisbal\",\"screen_name\":\"davidbisbal\",\"location\":\"Almer\\u00eda, Andaluc\\u00eda, Espa\\u00f1a\",\"profile_location\":null,\"description\":\"#T\\u00fayYo http:\\/\\/t.co\\/PlkzeLYruB http:\\/\\/t.co\\/O2KUvVSkwx http:\\/\\/t.co\\/I1WB9uAO2Z\",\"url\":\"http:\\/\\/t.co\\/pBQ19jDLHL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pBQ19jDLHL\",\"expanded_url\":\"http:\\/\\/www.davidbisbal.com\",\"display_url\":\"davidbisbal.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PlkzeLYruB\",\"expanded_url\":\"http:\\/\\/bit.ly\\/TuyYoTourEdition\",\"display_url\":\"bit.ly\\/TuyYoTourEditi\\u2026\",\"indices\":[7,29]},{\"url\":\"http:\\/\\/t.co\\/O2KUvVSkwx\",\"expanded_url\":\"http:\\/\\/facebook.com\\/DavidBisbal\",\"display_url\":\"facebook.com\\/DavidBisbal\",\"indices\":[30,52]},{\"url\":\"http:\\/\\/t.co\\/I1WB9uAO2Z\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/DavidBisbal\",\"display_url\":\"Instagram.com\\/DavidBisbal\",\"indices\":[53,75]}]}},\"protected\":false,\"followers_count\":6932893,\"friends_count\":598,\"listed_count\":18725,\"created_at\":\"Wed Jul 15 18:47:03 +0000 2009\",\"favourites_count\":1234,\"utc_offset\":3600,\"time_zone\":\"Madrid\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":13237,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"48494B\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/445902412021129216\\/qOku4NAv.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/445902412021129216\\/qOku4NAv.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530658391530565632\\/Qlv-i3p3_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530658391530565632\\/Qlv-i3p3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57099808\\/1415353692\",\"profile_link_color\":\"8F6907\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F0F0F5\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":28897926,\"id_str\":\"28897926\",\"name\":\"Ciara\",\"screen_name\":\"ciara\",\"location\":\"Making My Album....\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/21bB11F5NG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/21bB11F5NG\",\"expanded_url\":\"http:\\/\\/onlyciara.com\",\"display_url\":\"onlyciara.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6015676,\"friends_count\":34,\"listed_count\":17566,\"created_at\":\"Sat Apr 04 23:53:24 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6753,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"211B1C\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000078758829\\/7eac875d1b4d281c850f388021f5b08a.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000078758829\\/7eac875d1b4d281c850f388021f5b08a.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531939541318660096\\/WuOiG_Ry_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531939541318660096\\/WuOiG_Ry_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/28897926\\/1409267739\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23006794,\"id_str\":\"23006794\",\"name\":\"Lenny Kravitz\",\"screen_name\":\"LennyKravitz\",\"location\":\"Paris\",\"profile_location\":null,\"description\":\"New album Strut available now on Roxie Records \\/ iTunes: http:\\/\\/t.co\\/AWRHdynur4 \\/ Fall 2014 European Tour Dates @ http:\\/\\/t.co\\/7QqCkVToUe\",\"url\":\"http:\\/\\/t.co\\/FrREsleu8A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/FrREsleu8A\",\"expanded_url\":\"http:\\/\\/www.lennykravitz.com\",\"display_url\":\"lennykravitz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AWRHdynur4\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/strutitunes\",\"display_url\":\"smarturl.it\\/strutitunes\",\"indices\":[57,79]},{\"url\":\"http:\\/\\/t.co\\/7QqCkVToUe\",\"expanded_url\":\"http:\\/\\/LennyKravitz.com\",\"display_url\":\"LennyKravitz.com\",\"indices\":[114,136]}]}},\"protected\":false,\"followers_count\":4721097,\"friends_count\":1878,\"listed_count\":25855,\"created_at\":\"Fri Mar 06 00:51:27 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1390,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/459351819655712768\\/ZuXTP4AS.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/459351819655712768\\/ZuXTP4AS.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/480750582353760258\\/yHSbChAu_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/480750582353760258\\/yHSbChAu_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23006794\\/1417234519\",\"profile_link_color\":\"0F7195\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"92998F\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16685316,\"id_str\":\"16685316\",\"name\":\"weezer\",\"screen_name\":\"Weezer\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Everything WiIl Be Alright In The End out now http:\\/\\/t.co\\/DI3DKApClU Fan Club http:\\/\\/t.co\\/SGnAy9eMeW\",\"url\":\"http:\\/\\/t.co\\/IIJP32O92E\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IIJP32O92E\",\"expanded_url\":\"http:\\/\\/www.weezer.com\",\"display_url\":\"weezer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DI3DKApClU\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/WeezerTheEndDA\",\"display_url\":\"smarturl.it\\/WeezerTheEndDA\",\"indices\":[46,68]},{\"url\":\"http:\\/\\/t.co\\/SGnAy9eMeW\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1uTEY7Q\",\"display_url\":\"bit.ly\\/1uTEY7Q\",\"indices\":[79,101]}]}},\"protected\":false,\"followers_count\":1458942,\"friends_count\":452,\"listed_count\":10345,\"created_at\":\"Fri Oct 10 16:33:54 +0000 2008\",\"favourites_count\":2,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4534,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EEEEEE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/487716852332646400\\/43kSF1wb.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/487716852332646400\\/43kSF1wb.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/436202276672131072\\/s8yod4jn_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/436202276672131072\\/s8yod4jn_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16685316\\/1412659779\",\"profile_link_color\":\"FF2200\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"D4D4D4\",\"profile_text_color\":\"050505\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":24702915,\"id_str\":\"24702915\",\"name\":\"Luis Fonsi \",\"screen_name\":\"LuisFonsi\",\"location\":\"PuertoRico\\/Miami\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/5Zq36KkPxs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Zq36KkPxs\",\"expanded_url\":\"http:\\/\\/www.luisfonsi.com\",\"display_url\":\"luisfonsi.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6742065,\"friends_count\":387,\"listed_count\":17193,\"created_at\":\"Mon Mar 16 14:58:39 +0000 2009\",\"favourites_count\":26,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6048,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/461551143303147520\\/1oxtwghh.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/461551143303147520\\/1oxtwghh.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/433003297444614144\\/twN0XSfM_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/433003297444614144\\/twN0XSfM_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24702915\\/1392071026\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":47288005,\"id_str\":\"47288005\",\"name\":\"JUANES\",\"screen_name\":\"juanes\",\"location\":\"\",\"profile_location\":null,\"description\":\"El nuevo \\u00e1lbum \\u2018Loco de Amor' disponible en iTunes: http:\\/\\/t.co\\/JFB2qMT2gG | DELUXE: http:\\/\\/t.co\\/F3a5z2kTzt\",\"url\":\"http:\\/\\/t.co\\/BgQt677oHi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BgQt677oHi\",\"expanded_url\":\"http:\\/\\/www.juanes.net\",\"display_url\":\"juanes.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/JFB2qMT2gG\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1kKnjXt\",\"display_url\":\"bit.ly\\/1kKnjXt\",\"indices\":[52,74]},{\"url\":\"http:\\/\\/t.co\\/F3a5z2kTzt\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1hPDkxu\",\"display_url\":\"bit.ly\\/1hPDkxu\",\"indices\":[85,107]}]}},\"protected\":false,\"followers_count\":9806589,\"friends_count\":2082,\"listed_count\":32445,\"created_at\":\"Mon Jun 15 07:57:11 +0000 2009\",\"favourites_count\":134,\"utc_offset\":-18000,\"time_zone\":\"Bogota\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7251,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/443443681639428096\\/90O1xM-T.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/443443681639428096\\/90O1xM-T.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/499357609002926081\\/p6_KTWos_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/499357609002926081\\/p6_KTWos_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/47288005\\/1407891502\",\"profile_link_color\":\"424242\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"1A1A1A\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":22412376,\"id_str\":\"22412376\",\"name\":\"deadmau5\",\"screen_name\":\"deadmau5\",\"location\":\"9th circle of hell\",\"profile_location\":null,\"description\":\"loves EDM\",\"url\":\"http:\\/\\/t.co\\/cnNrVJOo1H\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cnNrVJOo1H\",\"expanded_url\":\"http:\\/\\/live.deadmau5.com\",\"display_url\":\"live.deadmau5.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3057985,\"friends_count\":195,\"listed_count\":15997,\"created_at\":\"Sun Mar 01 21:59:41 +0000 2009\",\"favourites_count\":28,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":24361,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"003A42\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/633097334\\/etecldyneiq7uiesf3tz.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/633097334\\/etecldyneiq7uiesf3tz.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/525674381251334144\\/d9jYSrpO_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/525674381251334144\\/d9jYSrpO_normal.png\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"ABABAB\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27911944,\"id_str\":\"27911944\",\"name\":\"Michael Bubl\\u00e9\",\"screen_name\":\"michaelbuble\",\"location\":\"Vancouver, BC\",\"profile_location\":null,\"description\":\"Download 'Christmas' http:\\/\\/t.co\\/RzvD1BnujX. Tweets Signed MB are from Michael, himself! Tweets from TOT are from Tory on Tour\",\"url\":\"http:\\/\\/t.co\\/OQ14XxX54Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OQ14XxX54Y\",\"expanded_url\":\"http:\\/\\/www.michaelbuble.com\",\"display_url\":\"michaelbuble.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RzvD1BnujX\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/MBXmasDeluxe\",\"display_url\":\"smarturl.it\\/MBXmasDeluxe\",\"indices\":[21,43]}]}},\"protected\":false,\"followers_count\":2077700,\"friends_count\":235,\"listed_count\":7115,\"created_at\":\"Tue Mar 31 17:01:38 +0000 2009\",\"favourites_count\":109,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1873,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"295EA8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/466001812009410560\\/BxMi1tpS.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/466001812009410560\\/BxMi1tpS.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/537331634828099584\\/ONf84kC7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/537331634828099584\\/ONf84kC7_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27911944\\/1416905611\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18220175,\"id_str\":\"18220175\",\"name\":\"Diddy\",\"screen_name\":\"iamdiddy\",\"location\":\"EVERYWHERE!!!\",\"profile_location\":null,\"description\":\"KING COMBS\\r\\n\\r\\nLISTEN TO THE #TAKETHATTAKETHAT SUPERPACK \\r\\nCLICK - http:\\/\\/t.co\\/z84kWYvQ2q\",\"url\":\"http:\\/\\/t.co\\/c3KmsZl4vA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/c3KmsZl4vA\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/Diddy\",\"display_url\":\"facebook.com\\/Diddy\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/z84kWYvQ2q\",\"expanded_url\":\"http:\\/\\/bit.ly\\/takethatsuperpack\",\"display_url\":\"bit.ly\\/takethatsuperp\\u2026\",\"indices\":[66,88]}]}},\"protected\":false,\"followers_count\":10080146,\"friends_count\":1651,\"listed_count\":34490,\"created_at\":\"Thu Dec 18 17:52:09 +0000 2008\",\"favourites_count\":104,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":27555,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"030303\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000024715541\\/09eb30b9122deb669c3c610b25ac320d.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000024715541\\/09eb30b9122deb669c3c610b25ac320d.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/476344890818052096\\/TWXRKsPo_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/476344890818052096\\/TWXRKsPo_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18220175\\/1402406227\",\"profile_link_color\":\"646666\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"181F1F\",\"profile_text_color\":\"348A8A\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":22733444,\"id_str\":\"22733444\",\"name\":\"T-Raww\",\"screen_name\":\"Tyga\",\"location\":\"KINGIN\",\"profile_location\":null,\"description\":\"business inquires: anthony@thecmsn.com\\n\\n lastkings.co \\u00a0 \\n#LastKings #TheGoldAlbum\",\"url\":\"http:\\/\\/t.co\\/S5GdD2pTc8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/S5GdD2pTc8\",\"expanded_url\":\"http:\\/\\/tygasworld.com\",\"display_url\":\"tygasworld.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5679043,\"friends_count\":4518,\"listed_count\":13307,\"created_at\":\"Wed Mar 04 04:29:52 +0000 2009\",\"favourites_count\":18,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8631,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F0F0F0\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511293751948353537\\/GiBqOHhj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511293751948353537\\/GiBqOHhj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/477618791833018368\\/U_-j3MCO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/477618791833018368\\/U_-j3MCO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22733444\\/1416697612\",\"profile_link_color\":\"EB0000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":38871237,\"id_str\":\"38871237\",\"name\":\"Julieta Venegas\",\"screen_name\":\"julietav\",\"location\":\"Mexico\",\"profile_location\":null,\"description\":\"m\\u00fasica m\\u00fasicaaaaaaa\",\"url\":\"http:\\/\\/t.co\\/fDsz5MCTU0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fDsz5MCTU0\",\"expanded_url\":\"http:\\/\\/www.julietavenegas.net\",\"display_url\":\"julietavenegas.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3658625,\"friends_count\":561,\"listed_count\":13655,\"created_at\":\"Sat May 09 15:32:20 +0000 2009\",\"favourites_count\":2680,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7934,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2560409305\\/1tl273uunpnjpyp8tj82_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2560409305\\/1tl273uunpnjpyp8tj82_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/38871237\\/1402460637\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14128609,\"id_str\":\"14128609\",\"name\":\"Felipe Neto\",\"screen_name\":\"felipeneto\",\"location\":\"Rio de Janeiro\",\"profile_location\":null,\"description\":\"Cover da Kelly Key e cantor de Sertanejo Universit\\u00e1rio - Contato Prof.: comercial@parafernalha.com.br\",\"url\":\"http:\\/\\/t.co\\/53GN5v0nsW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/53GN5v0nsW\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/felipeneto\",\"display_url\":\"youtube.com\\/felipeneto\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3135805,\"friends_count\":469,\"listed_count\":19880,\"created_at\":\"Wed Mar 12 00:17:35 +0000 2008\",\"favourites_count\":6,\"utc_offset\":-7200,\"time_zone\":\"Brasilia\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52411,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/166858058\\/bgtwitter.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/166858058\\/bgtwitter.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/476459804794171392\\/GnorRvUf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/476459804794171392\\/GnorRvUf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14128609\\/1402438928\",\"profile_link_color\":\"0D60A8\",\"profile_sidebar_border_color\":\"F0F0F0\",\"profile_sidebar_fill_color\":\"F2F2F2\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":57912874,\"id_str\":\"57912874\",\"name\":\"Carlos Baute\",\"screen_name\":\"carlosbaute\",\"location\":\"\\u00dcT: 25.762257,-80.265178\",\"profile_location\":null,\"description\":\"Official Twitter page. Bienvenidos a la p\\u00e1gina oficial de Carlos Baute en Twitter .\",\"url\":\"http:\\/\\/t.co\\/YGEMEVqyp2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YGEMEVqyp2\",\"expanded_url\":\"http:\\/\\/carlosbauteoficial.com\",\"display_url\":\"carlosbauteoficial.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2138700,\"friends_count\":722,\"listed_count\":5094,\"created_at\":\"Sat Jul 18 11:32:25 +0000 2009\",\"favourites_count\":23,\"utc_offset\":3600,\"time_zone\":\"Madrid\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":4492,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/509144312966152192\\/Rr2-nUh8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/509144312966152192\\/Rr2-nUh8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530075168643616768\\/EHjJq1P2_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530075168643616768\\/EHjJq1P2_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57912874\\/1415214601\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCE9FF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":6211972,\"id_str\":\"6211972\",\"name\":\"Sara Bareilles\",\"screen_name\":\"SaraBareilles\",\"location\":\"hear.\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/UWzRxPIxzg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UWzRxPIxzg\",\"expanded_url\":\"http:\\/\\/www.sarabmusic.com\",\"display_url\":\"sarabmusic.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3132788,\"friends_count\":225,\"listed_count\":15164,\"created_at\":\"Mon May 21 23:17:07 +0000 2007\",\"favourites_count\":32,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5510,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451498962634031105\\/vHK8Rekj.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451498962634031105\\/vHK8Rekj.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/483666678488629248\\/tBfafhe2_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/483666678488629248\\/tBfafhe2_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6211972\\/1401733947\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"B8C9FF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19341413,\"id_str\":\"19341413\",\"name\":\"Cage The Elephant\",\"screen_name\":\"CageTheElephant\",\"location\":\"\",\"profile_location\":null,\"description\":\"New album MELOPHOBIA out NOW!!\",\"url\":\"http:\\/\\/t.co\\/kbmvKefqSO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kbmvKefqSO\",\"expanded_url\":\"http:\\/\\/www.cagetheelephant.com\",\"display_url\":\"cagetheelephant.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1009524,\"friends_count\":669,\"listed_count\":3445,\"created_at\":\"Thu Jan 22 15:01:28 +0000 2009\",\"favourites_count\":1262,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090531250\\/2fd159b2d48cd4028811a690f39b1798.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090531250\\/2fd159b2d48cd4028811a690f39b1798.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000289017036\\/80318a2f3361997d30014ace0c5469dd_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000289017036\\/80318a2f3361997d30014ace0c5469dd_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19341413\\/1398887632\",\"profile_link_color\":\"EDCD00\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"807070\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21705616,\"id_str\":\"21705616\",\"name\":\"Jim Jones \",\"screen_name\":\"jimjonescapo\",\"location\":\"Harlem\",\"profile_location\":null,\"description\":\"#VampireLife bookings for #JimJones bookjimjones@gmail.com info@nextofkinent.com\",\"url\":\"http:\\/\\/t.co\\/9S2nUmSo5l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9S2nUmSo5l\",\"expanded_url\":\"http:\\/\\/www.capolife.com\",\"display_url\":\"capolife.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3543101,\"friends_count\":640,\"listed_count\":7399,\"created_at\":\"Mon Feb 23 23:10:39 +0000 2009\",\"favourites_count\":17,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":18934,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/364318203\\/vampirelifefrontcover.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/364318203\\/vampirelifefrontcover.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/481947772518932480\\/jVCTNlwI_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/481947772518932480\\/jVCTNlwI_normal.jpeg\",\"profile_link_color\":\"0A0A0A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":50751556,\"id_str\":\"50751556\",\"name\":\"Nelly Furtado\",\"screen_name\":\"NellyFurtado\",\"location\":\"ONWARDS. UPWARDS!\",\"profile_location\":null,\"description\":\"The Spirit Indestructible is available now worldwide!\\r\\nhttp:\\/\\/t.co\\/O3NJZUsrKo\",\"url\":\"http:\\/\\/t.co\\/PPPUIat0Hl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PPPUIat0Hl\",\"expanded_url\":\"http:\\/\\/www.nellyfurtado.com\",\"display_url\":\"nellyfurtado.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/O3NJZUsrKo\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/NellyTSIalbum\",\"display_url\":\"smarturl.it\\/NellyTSIalbum\",\"indices\":[55,77]}]}},\"protected\":false,\"followers_count\":3275695,\"friends_count\":4290,\"listed_count\":23840,\"created_at\":\"Thu Jun 25 20:02:18 +0000 2009\",\"favourites_count\":7,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4279,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/800018137\\/7f2140fe6c5f798c2ae0a72eae65f7ae.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/800018137\\/7f2140fe6c5f798c2ae0a72eae65f7ae.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/513303997848240128\\/wM7bPqMt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/513303997848240128\\/wM7bPqMt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/50751556\\/1411216205\",\"profile_link_color\":\"0E3A61\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FAEFD5\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":36008570,\"id_str\":\"36008570\",\"name\":\"Jessie J\",\"screen_name\":\"JessieJ\",\"location\":\"Here, there and everywhere...\",\"profile_location\":null,\"description\":\"I love to sing...\\r\\nInsta: isthatjessiej\",\"url\":\"http:\\/\\/t.co\\/BvolsUaHEG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BvolsUaHEG\",\"expanded_url\":\"http:\\/\\/jessiejofficial.com\\/\",\"display_url\":\"jessiejofficial.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6731060,\"friends_count\":882,\"listed_count\":14036,\"created_at\":\"Tue Apr 28 06:34:34 +0000 2009\",\"favourites_count\":28,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":17428,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000141949220\\/z1v1rjuq.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000141949220\\/z1v1rjuq.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/538607318930587648\\/ywy_nniH_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/538607318930587648\\/ywy_nniH_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/36008570\\/1416309498\",\"profile_link_color\":\"942694\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"ADADAD\",\"profile_text_color\":\"09090A\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}],\"size\":343,\"slug\":\"music\",\"name\":\"Music\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:34 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "7b27082b932fbd87ee74a72539c3f4b0" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401033" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1326" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:34 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "13" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013423363063; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:34 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "c47987cfd8a00b21" ] }, "body": { "string": "[{\"size\":343,\"slug\":\"music\",\"name\":\"Music\"},{\"size\":79,\"slug\":\"sports\",\"name\":\"Sports\"},{\"size\":83,\"slug\":\"photography\",\"name\":\"Photography\"},{\"size\":51,\"slug\":\"twitter\",\"name\":\"Twitter\"},{\"size\":83,\"slug\":\"entertainment\",\"name\":\"Entertainment\"},{\"size\":64,\"slug\":\"funny\",\"name\":\"Funny\"},{\"size\":111,\"slug\":\"news\",\"name\":\"News\"},{\"size\":67,\"slug\":\"technology\",\"name\":\"Technology\"},{\"size\":75,\"slug\":\"fashion\",\"name\":\"Fashion\"},{\"size\":64,\"slug\":\"food-drink\",\"name\":\"Food & Drink\"},{\"size\":209,\"slug\":\"television\",\"name\":\"Television\"},{\"size\":37,\"slug\":\"family\",\"name\":\"Family\"},{\"size\":71,\"slug\":\"art-design\",\"name\":\"Art & Design\"},{\"size\":45,\"slug\":\"business\",\"name\":\"Business\"},{\"size\":46,\"slug\":\"health\",\"name\":\"Health\"},{\"size\":64,\"slug\":\"books\",\"name\":\"Books\"},{\"size\":49,\"slug\":\"science\",\"name\":\"Science\"},{\"size\":76,\"slug\":\"faith-and-religion\",\"name\":\"Faith and Religion\"},{\"size\":52,\"slug\":\"government\",\"name\":\"Government\"},{\"size\":48,\"slug\":\"social-good\",\"name\":\"Social Good\"},{\"size\":127,\"slug\":\"nba\",\"name\":\"NBA\"},{\"size\":44,\"slug\":\"travel\",\"name\":\"Travel\"},{\"size\":51,\"slug\":\"staff-picks\",\"name\":\"Staff Picks\"},{\"size\":81,\"slug\":\"mlb\",\"name\":\"MLB\"},{\"size\":98,\"slug\":\"nascar\",\"name\":\"NASCAR\"},{\"size\":62,\"slug\":\"nhl\",\"name\":\"NHL\"},{\"size\":128,\"slug\":\"pga\",\"name\":\"PGA\"},{\"size\":68,\"slug\":\"gaming\",\"name\":\"Gaming\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions/music.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:34 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c232d752f3e42f6ba4340e3b10e1cb43" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401034" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "177715" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:34 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013461054489; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:34 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "b9d1373eb47744c6" ] }, "body": { "string": "{\"users\":[{\"id\":44409004,\"id_str\":\"44409004\",\"name\":\"Shakira\",\"screen_name\":\"shakira\",\"location\":\"Barranquilla\",\"profile_location\":null,\"description\":\"New album Shakira out now! \\/ El nuevo \\u00e1lbum Shakira ya disponible en iTunes http:\\/\\/t.co\\/2hjhcJE9fk \\/ CD http:\\/\\/t.co\\/HFzQPvOUyQ\",\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"expanded_url\":\"http:\\/\\/www.shakira.com\",\"display_url\":\"shakira.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2hjhcJE9fk\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraiTunes\",\"display_url\":\"smarturl.it\\/ShakiraiTunes\",\"indices\":[76,98]},{\"url\":\"http:\\/\\/t.co\\/HFzQPvOUyQ\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraAlbumCD\",\"display_url\":\"smarturl.it\\/ShakiraAlbumCD\",\"indices\":[104,126]}]}},\"protected\":false,\"followers_count\":28037185,\"friends_count\":158,\"listed_count\":103087,\"created_at\":\"Wed Jun 03 17:38:07 +0000 2009\",\"favourites_count\":73,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3241,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/44409004\\/1411802902\",\"profile_link_color\":\"99033A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C3E2FA\",\"profile_text_color\":\"080808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":79293791,\"id_str\":\"79293791\",\"name\":\"Rihanna\",\"screen_name\":\"rihanna\",\"location\":\"LA BABY!\",\"profile_location\":null,\"description\":\"Support the Clara Lionel Foundation w\\/ the Hard Rock Rihanna Tee -- http:\\/\\/t.co\\/RP1lrQKILP\",\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"expanded_url\":\"http:\\/\\/www.rihannanow.com\",\"display_url\":\"rihannanow.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RP1lrQKILP\",\"expanded_url\":\"http:\\/\\/hardrock.co\\/1mse2ne\",\"display_url\":\"hardrock.co\\/1mse2ne\",\"indices\":[68,90]}]}},\"protected\":false,\"followers_count\":38203141,\"friends_count\":1171,\"listed_count\":97580,\"created_at\":\"Fri Oct 02 21:37:33 +0000 2009\",\"favourites_count\":825,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":9457,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79293791\\/1411123252\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21447363,\"id_str\":\"21447363\",\"name\":\"KATY PERRY \",\"screen_name\":\"katyperry\",\"location\":\"\",\"profile_location\":null,\"description\":\"CURRENTLY\\u2728BEAMING\\u2728ON THE PRISMATIC WORLD TOUR 2014!\",\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"expanded_url\":\"http:\\/\\/www.katyperry.com\",\"display_url\":\"katyperry.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60706185,\"friends_count\":159,\"listed_count\":143574,\"created_at\":\"Fri Feb 20 23:45:56 +0000 2009\",\"favourites_count\":1246,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6227,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"CECFBC\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21447363\\/1401576937\",\"profile_link_color\":\"D55732\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"78C0A8\",\"profile_text_color\":\"5E412F\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14230524,\"id_str\":\"14230524\",\"name\":\"Lady Gaga\",\"screen_name\":\"ladygaga\",\"location\":\"\",\"profile_location\":null,\"description\":\"The lady herself is not just a chameleon in person, but a chameleon in music.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42924499,\"friends_count\":133664,\"listed_count\":239331,\"created_at\":\"Wed Mar 26 22:37:48 +0000 2008\",\"favourites_count\":508,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6091,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0A090A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14230524\\/1415453416\",\"profile_link_color\":\"050505\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":26565946,\"id_str\":\"26565946\",\"name\":\"Justin Timberlake \",\"screen_name\":\"jtimberlake\",\"location\":\"Memphis, TN\",\"profile_location\":null,\"description\":\"Official Twitter Account of Justin Timberlake\",\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"expanded_url\":\"http:\\/\\/www.justintimberlake.com\",\"display_url\":\"justintimberlake.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38141062,\"friends_count\":88,\"listed_count\":76206,\"created_at\":\"Wed Mar 25 19:10:50 +0000 2009\",\"favourites_count\":14,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2706,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26565946\\/1414544111\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":100220864,\"id_str\":\"100220864\",\"name\":\"Bruno Mars\",\"screen_name\":\"BrunoMars\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Julio!!! Get The Stretch!!!!\",\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"expanded_url\":\"http:\\/\\/www.brunomars.com\",\"display_url\":\"brunomars.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19329430,\"friends_count\":88,\"listed_count\":36424,\"created_at\":\"Tue Dec 29 13:07:04 +0000 2009\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3327,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F0DBB7\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/100220864\\/1415585700\",\"profile_link_color\":\"0A0104\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17919972,\"id_str\":\"17919972\",\"name\":\"Taylor Swift\",\"screen_name\":\"taylorswift13\",\"location\":\"\",\"profile_location\":null,\"description\":\"Born in 1989.\",\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"expanded_url\":\"http:\\/\\/www.taylorswift.com\",\"display_url\":\"taylorswift.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47566527,\"friends_count\":148,\"listed_count\":117977,\"created_at\":\"Sat Dec 06 10:10:54 +0000 2008\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2973,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17919972\\/1409286315\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"screen_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Music related Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5909221,\"friends_count\":152,\"listed_count\":8775,\"created_at\":\"Wed Sep 14 16:50:47 +0000 2011\",\"favourites_count\":518,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5543,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27260086,\"id_str\":\"27260086\",\"name\":\"Justin Bieber\",\"screen_name\":\"justinbieber\",\"location\":\"\",\"profile_location\":null,\"description\":\"Let's make the world better, together. Join my fan club @officialfahlo and add me on @shots 'justinbieber'.\",\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/justinbieber\",\"display_url\":\"youtube.com\\/justinbieber\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57296609,\"friends_count\":164315,\"listed_count\":555575,\"created_at\":\"Sat Mar 28 16:41:22 +0000 2009\",\"favourites_count\":1387,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":27919,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27260086\\/1411311442\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":4101221,\"id_str\":\"4101221\",\"name\":\"Thalia\",\"screen_name\":\"thalia\",\"location\":\"\",\"profile_location\":null,\"description\":\"FACEBOOK: http:\\/\\/t.co\\/3ozWqxnN8b\\r\\nand INSTAGRAM: http:\\/\\/t.co\\/dSf9N5uDIp and PINTEREST: http:\\/\\/t.co\\/qnQxavU0MG and\\r\\nNEW BOOK: http:\\/\\/t.co\\/j4R7x0JsfG\",\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"expanded_url\":\"http:\\/\\/Thalia.com\",\"display_url\":\"Thalia.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3ozWqxnN8b\",\"expanded_url\":\"http:\\/\\/facebook.com\\/thalia\",\"display_url\":\"facebook.com\\/thalia\",\"indices\":[10,32]},{\"url\":\"http:\\/\\/t.co\\/dSf9N5uDIp\",\"expanded_url\":\"http:\\/\\/instagram.com\\/thalia\",\"display_url\":\"instagram.com\\/thalia\",\"indices\":[49,71]},{\"url\":\"http:\\/\\/t.co\\/qnQxavU0MG\",\"expanded_url\":\"http:\\/\\/pinterest.com\\/LadyTH\",\"display_url\":\"pinterest.com\\/LadyTH\",\"indices\":[87,109]},{\"url\":\"http:\\/\\/t.co\\/j4R7x0JsfG\",\"expanded_url\":\"http:\\/\\/facebook.com\\/chupiethebinky\",\"display_url\":\"facebook.com\\/chupiethebinky\",\"indices\":[125,147]}]}},\"protected\":false,\"followers_count\":6243176,\"friends_count\":1565,\"listed_count\":29609,\"created_at\":\"Wed Apr 11 01:07:09 +0000 2007\",\"favourites_count\":3640,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14771,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4101221\\/1410919094\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"591C78\",\"profile_text_color\":\"61ADD6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23375688,\"id_str\":\"23375688\",\"name\":\"Selena Gomez\",\"screen_name\":\"selenagomez\",\"location\":\"Los Angeles \",\"profile_location\":null,\"description\":\"Get \\u2018The Heart Wants What It Wants\\u2019 and my new collection \\u2018For You\\u2019 - http:\\/\\/t.co\\/RXvhX21okT Philippians 4:13\",\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"expanded_url\":\"http:\\/\\/www.selenagomez.com\",\"display_url\":\"selenagomez.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RXvhX21okT\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/sga1\",\"display_url\":\"smarturl.it\\/sga1\",\"indices\":[70,92]}]}},\"protected\":false,\"followers_count\":24836030,\"friends_count\":1277,\"listed_count\":136069,\"created_at\":\"Mon Mar 09 00:16:45 +0000 2009\",\"favourites_count\":22,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3602,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23375688\\/1416805110\",\"profile_link_color\":\"02806B\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"CC3399\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27909036,\"id_str\":\"27909036\",\"name\":\"Jesse & Joy Oficial\",\"screen_name\":\"jesseyjoy\",\"location\":\"En el espacio sideral..de Tour\",\"profile_location\":null,\"description\":\"Instagram: @jesseyjoy Booking: ACShows - Ana Garcia: (+5255) 53372034 agarcia@westwoodent.com Contacto: mnoriega@westwoodent.com\",\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"expanded_url\":\"http:\\/\\/www.jesseyjoy.com\",\"display_url\":\"jesseyjoy.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3627824,\"friends_count\":1068,\"listed_count\":3309,\"created_at\":\"Tue Mar 31 16:48:05 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":26320,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27909036\\/1407189638\",\"profile_link_color\":\"88888F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F7E0D4\",\"profile_text_color\":\"0ECCC3\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":184910040,\"id_str\":\"184910040\",\"name\":\"Adele\",\"screen_name\":\"OfficialAdele\",\"location\":\"London\\/NYC\",\"profile_location\":null,\"description\":\"Official Twitter account for Adele. @XLRECORDINGS \\/ @ColumbiaRecords recording artist.\",\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"expanded_url\":\"http:\\/\\/www.adele.tv\\/\",\"display_url\":\"adele.tv\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21295585,\"friends_count\":170,\"listed_count\":29829,\"created_at\":\"Mon Aug 30 19:53:19 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":214,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23605048,\"id_str\":\"23605048\",\"name\":\"Paulina Rubio\",\"screen_name\":\"paurubio\",\"location\":\"\",\"profile_location\":null,\"description\":\"Paulina Rubio official twitter \\/ El twitter oficial de Paulina Rubio\",\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"expanded_url\":\"http:\\/\\/www.paulinarubio.com\",\"display_url\":\"paulinarubio.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9263658,\"friends_count\":700,\"listed_count\":23163,\"created_at\":\"Tue Mar 10 15:30:11 +0000 2009\",\"favourites_count\":465,\"utc_offset\":-21600,\"time_zone\":\"Mexico City\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6216,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EF508A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23605048\\/1390333595\",\"profile_link_color\":\"01A7E0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F768BE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":268414482,\"id_str\":\"268414482\",\"name\":\"Miley Ray Cyrus\",\"screen_name\":\"MileyCyrus\",\"location\":\"PLUTO \",\"profile_location\":null,\"description\":\"#FUCKINGBANGERZ\",\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/bangerz?IQid=tw\",\"display_url\":\"smarturl.it\\/bangerz?IQid=tw\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18843580,\"friends_count\":372,\"listed_count\":60255,\"created_at\":\"Fri Mar 18 18:36:02 +0000 2011\",\"favourites_count\":81,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7901,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268414482\\/1412118738\",\"profile_link_color\":\"0D0101\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"FF8400\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35094637,\"id_str\":\"35094637\",\"name\":\"Alicia Keys\",\"screen_name\":\"aliciakeys\",\"location\":\"New York City\",\"profile_location\":null,\"description\":\"Passionate about my work, in love with my family and dedicated to spreading light. It's contagious!;-)\\r\\n\\r\\nhttp:\\/\\/t.co\\/QP5RXoYH12\",\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"expanded_url\":\"http:\\/\\/www.aliciakeys.com\",\"display_url\":\"aliciakeys.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/QP5RXoYH12\",\"expanded_url\":\"http:\\/\\/www.weareheremovement.com\",\"display_url\":\"weareheremovement.com\",\"indices\":[106,128]}]}},\"protected\":false,\"followers_count\":20322078,\"friends_count\":523,\"listed_count\":52368,\"created_at\":\"Sat Apr 25 00:46:24 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"150D1A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35094637\\/1412196329\",\"profile_link_color\":\"171415\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D91C26\",\"profile_text_color\":\"090A02\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":31927467,\"id_str\":\"31927467\",\"name\":\"Pitbull\",\"screen_name\":\"pitbull\",\"location\":\"Miami, FL\",\"profile_location\":null,\"description\":\"GLOBALIZATION\",\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/pitbullmusic\",\"display_url\":\"youtube.com\\/pitbullmusic\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18529727,\"friends_count\":2492,\"listed_count\":23168,\"created_at\":\"Thu Apr 16 16:03:02 +0000 2009\",\"favourites_count\":25,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6023,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31927467\\/1417022925\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D6D6D6\",\"profile_text_color\":\"C40808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16409683,\"id_str\":\"16409683\",\"name\":\"Britney Spears\",\"screen_name\":\"britneyspears\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"It\\u2019s Britney Bitch! #BritneyJean available now on @iTunesMusic: http:\\/\\/t.co\\/dps446FIFx\",\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"expanded_url\":\"http:\\/\\/www.britneyspears.com\",\"display_url\":\"britneyspears.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dps446FIFx\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/britneyjean?IQid=tw\",\"display_url\":\"smarturl.it\\/britneyjean?IQ\\u2026\",\"indices\":[64,86]}]}},\"protected\":false,\"followers_count\":39695594,\"friends_count\":400804,\"listed_count\":129402,\"created_at\":\"Mon Sep 22 20:47:35 +0000 2008\",\"favourites_count\":498,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3879,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16409683\\/1397512555\",\"profile_link_color\":\"D44A71\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F4F4F4\",\"profile_text_color\":\"222222\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":220332457,\"id_str\":\"220332457\",\"name\":\"\\u304d\\u3083\\u308a\\u30fc\\u3071\\u307f\\u3085\\u3071\\u307f\\u3085\",\"screen_name\":\"pamyurin\",\"location\":\"ASOBI SYSTEM\",\"profile_location\":null,\"description\":\"\\u3075\\u3041\\u3093\\u305f\\u4eba\",\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"expanded_url\":\"http:\\/\\/s.ameblo.jp\\/kyarypamyupamyu\\/\",\"display_url\":\"s.ameblo.jp\\/kyarypamyupamy\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2577723,\"friends_count\":165,\"listed_count\":15385,\"created_at\":\"Sat Nov 27 13:30:22 +0000 2010\",\"favourites_count\":3,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11845,\"lang\":\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/220332457\\/1398672949\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21111883,\"id_str\":\"21111883\",\"name\":\"Demi Lovato\",\"screen_name\":\"ddlovato\",\"location\":\"DALLAS\\/LA\",\"profile_location\":null,\"description\":\"New album DEMI feat. Neon Lights, & my new single Really Don't Care available NOW!!! Download here - http:\\/\\/t.co\\/ydguDHMvx6 #DEMIWORLDTOUR tix on sale now!\",\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/DemiLovato\",\"display_url\":\"facebook.com\\/DemiLovato\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ydguDHMvx6\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/dla1\",\"display_url\":\"smarturl.it\\/dla1\",\"indices\":[101,123]}]}},\"protected\":false,\"followers_count\":25622267,\"friends_count\":339,\"listed_count\":106076,\"created_at\":\"Tue Feb 17 18:02:08 +0000 2009\",\"favourites_count\":10,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12365,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21111883\\/1410889387\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"B9BEB8\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":28706024,\"id_str\":\"28706024\",\"name\":\"P!nk\",\"screen_name\":\"Pink\",\"location\":\"los angeles\",\"profile_location\":null,\"description\":\"it's all happening\",\"url\":\"http:\\/\\/t.co\\/spVFUPAxU3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/spVFUPAxU3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pink\",\"display_url\":\"twitter.com\\/pink\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":25156163,\"friends_count\":340,\"listed_count\":67160,\"created_at\":\"Sat Apr 04 01:16:34 +0000 2009\",\"favourites_count\":230,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5476,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/178806023\\/grammys13.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/178806023\\/grammys13.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahanderson_112_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahanderson_112_normal.jpg\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"DBE9ED\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27195114,\"id_str\":\"27195114\",\"name\":\"Drizzy\",\"screen_name\":\"Drake\",\"location\":\"Paradise\",\"profile_location\":null,\"description\":\"Nothing Was The Same\",\"url\":\"http:\\/\\/t.co\\/C9ZI8aYDQe\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/C9ZI8aYDQe\",\"expanded_url\":\"http:\\/\\/www.octobersveryown.net\",\"display_url\":\"octobersveryown.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18271768,\"friends_count\":633,\"listed_count\":38353,\"created_at\":\"Sat Mar 28 07:17:46 +0000 2009\",\"favourites_count\":11,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1621,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000056841964\\/7c2ff2772b7f89a4ecffdf2d5544a78e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000056841964\\/7c2ff2772b7f89a4ecffdf2d5544a78e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000337150556\\/c28d01d9b1757babd8194c18270a3074_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000337150556\\/c28d01d9b1757babd8194c18270a3074_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27195114\\/1377141341\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18863815,\"id_str\":\"18863815\",\"name\":\"Coldplay\",\"screen_name\":\"coldplay\",\"location\":\"Harveytown\",\"profile_location\":null,\"description\":\"New concert film & live album, Ghost Stories Live 2014, out now. CD\\/DVD\\/Blu-ray http:\\/\\/t.co\\/N9MvHduRIW iTunes http:\\/\\/t.co\\/NIPFjZ4beT\",\"url\":\"http:\\/\\/t.co\\/i83B1uAdgm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/i83B1uAdgm\",\"expanded_url\":\"http:\\/\\/www.coldplay.com\",\"display_url\":\"coldplay.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/N9MvHduRIW\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Live2014\",\"display_url\":\"smarturl.it\\/Live2014\",\"indices\":[80,102]},{\"url\":\"http:\\/\\/t.co\\/NIPFjZ4beT\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Live2014iTunes\",\"display_url\":\"smarturl.it\\/Live2014iTunes\",\"indices\":[110,132]}]}},\"protected\":false,\"followers_count\":13489172,\"friends_count\":2121,\"listed_count\":48350,\"created_at\":\"Sun Jan 11 11:04:45 +0000 2009\",\"favourites_count\":601,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4354,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/524103903088898048\\/IcSdF3zf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/524103903088898048\\/IcSdF3zf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18863815\\/1413791230\",\"profile_link_color\":\"11518C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":55033131,\"id_str\":\"55033131\",\"name\":\"Ricardo Montaner\",\"screen_name\":\"montanertwiter\",\"location\":\"MIAMI\",\"profile_location\":null,\"description\":\"Ricardo Montaner's official Twitter -\",\"url\":\"http:\\/\\/t.co\\/NEu7krdNMK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/NEu7krdNMK\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/ricardo.montaner\",\"display_url\":\"facebook.com\\/ricardo.montan\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6081197,\"friends_count\":207,\"listed_count\":14388,\"created_at\":\"Wed Jul 08 21:21:12 +0000 2009\",\"favourites_count\":87,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":35042,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/492401562824613888\\/2_NMFPC8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/492401562824613888\\/2_NMFPC8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523535846708764673\\/3V9wsrv6_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523535846708764673\\/3V9wsrv6_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/55033131\\/1413655650\",\"profile_link_color\":\"0C0D0D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":73992972,\"id_str\":\"73992972\",\"name\":\"Avril Lavigne\",\"screen_name\":\"AvrilLavigne\",\"location\":\"\",\"profile_location\":null,\"description\":\"New album available now!\",\"url\":\"http:\\/\\/t.co\\/cRHvcVAUWW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cRHvcVAUWW\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/avril-lavigne\",\"display_url\":\"smarturl.it\\/avril-lavigne\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":17261991,\"friends_count\":66,\"listed_count\":39338,\"created_at\":\"Sun Sep 13 22:43:00 +0000 2009\",\"favourites_count\":40,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2631,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"100C0B\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000109462098\\/cad0a5551d2eabd42d518a66ade275b4.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000109462098\\/cad0a5551d2eabd42d518a66ade275b4.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535605743584415744\\/C43ySOsb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535605743584415744\\/C43ySOsb_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/73992972\\/1400196824\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"1A1A17\",\"profile_text_color\":\"ABABAB\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":3004231,\"id_str\":\"3004231\",\"name\":\"Snoop Dogg\",\"screen_name\":\"SnoopDogg\",\"location\":\"\",\"profile_location\":null,\"description\":\"http:\\/\\/t.co\\/mKAL0xVm2C\\nhttp:\\/\\/t.co\\/IRCkSUgQMo\",\"url\":\"http:\\/\\/t.co\\/DKHrtJuxr9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DKHrtJuxr9\",\"expanded_url\":\"http:\\/\\/snoopdogg.com\",\"display_url\":\"snoopdogg.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mKAL0xVm2C\",\"expanded_url\":\"http:\\/\\/SnooperMarket.com\",\"display_url\":\"SnooperMarket.com\",\"indices\":[0,22]},{\"url\":\"http:\\/\\/t.co\\/IRCkSUgQMo\",\"expanded_url\":\"http:\\/\\/YouTube.com\\/WestFestTV\",\"display_url\":\"YouTube.com\\/WestFestTV\",\"indices\":[23,45]}]}},\"protected\":false,\"followers_count\":11697491,\"friends_count\":2502,\"listed_count\":44250,\"created_at\":\"Fri Mar 30 19:05:42 +0000 2007\",\"favourites_count\":352,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":23805,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000146121910\\/HID4uOvf.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000146121910\\/HID4uOvf.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/473992003449917440\\/-TTmHRJq_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/473992003449917440\\/-TTmHRJq_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3004231\\/1401843639\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":42420346,\"id_str\":\"42420346\",\"name\":\"AGNEZ MO\",\"screen_name\":\"agnezmo\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"DREAM, believe, and make it happen! Instagram: @agnezmo and @myfitnezdiary Tumblr: http:\\/\\/t.co\\/ixccwFIkN7 Facebook page: http:\\/\\/t.co\\/RHEUTdskGW\",\"url\":\"http:\\/\\/t.co\\/OXrfgzYIYG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OXrfgzYIYG\",\"expanded_url\":\"http:\\/\\/www.agnezmo.com\",\"display_url\":\"agnezmo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ixccwFIkN7\",\"expanded_url\":\"http:\\/\\/agnezmothekid.tumblr.com\",\"display_url\":\"agnezmothekid.tumblr.com\",\"indices\":[83,105]},{\"url\":\"http:\\/\\/t.co\\/RHEUTdskGW\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/agnesmonica\",\"display_url\":\"facebook.com\\/agnesmonica\",\"indices\":[121,143]}]}},\"protected\":false,\"followers_count\":11797167,\"friends_count\":986,\"listed_count\":10635,\"created_at\":\"Mon May 25 15:05:00 +0000 2009\",\"favourites_count\":1142,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":14018,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/512194830709960704\\/fscLT8wF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/512194830709960704\\/fscLT8wF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/42420346\\/1380210621\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18228898,\"id_str\":\"18228898\",\"name\":\"John Legend\",\"screen_name\":\"johnlegend\",\"location\":\"New York, NY, USA\",\"profile_location\":null,\"description\":\"Get #LoveInTheFuture now http:\\/\\/t.co\\/GzKLiH5GD3\",\"url\":\"http:\\/\\/t.co\\/iGc1LHm5UB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/iGc1LHm5UB\",\"expanded_url\":\"http:\\/\\/johnlegend.com\",\"display_url\":\"johnlegend.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GzKLiH5GD3\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/LoveInTheFutureDX\",\"display_url\":\"smarturl.it\\/LoveInTheFutur\\u2026\",\"indices\":[25,47]}]}},\"protected\":false,\"followers_count\":6099484,\"friends_count\":523,\"listed_count\":20937,\"created_at\":\"Thu Dec 18 23:42:30 +0000 2008\",\"favourites_count\":49,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7254,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FBFBFB\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000065969311\\/f99e78d0f430632cc48feeee8c8fb8cd.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000065969311\\/f99e78d0f430632cc48feeee8c8fb8cd.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492422192924078080\\/PL-7YjMk_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492422192924078080\\/PL-7YjMk_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18228898\\/1398279153\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":169686021,\"id_str\":\"169686021\",\"name\":\"KANYE WEST\",\"screen_name\":\"kanyewest\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/ZdywsugSWD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ZdywsugSWD\",\"expanded_url\":\"http:\\/\\/KANYEWEST.COM\",\"display_url\":\"KANYEWEST.COM\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10995297,\"friends_count\":1,\"listed_count\":45771,\"created_at\":\"Thu Jul 22 23:00:05 +0000 2010\",\"favourites_count\":1,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":98,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/390200267\\/Screen_Shot_2011-12-27_at_11.53.35_PM.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/390200267\\/Screen_Shot_2011-12-27_at_11.53.35_PM.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1132696610\\/securedownload_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1132696610\\/securedownload_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/169686021\\/1359417382\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":84620024,\"id_str\":\"84620024\",\"name\":\"S\\u0131la Gen\\u00e7o\\u011flu\",\"screen_name\":\"silagencoglu\",\"location\":\"\\u0130stanbul\",\"profile_location\":null,\"description\":\"Official Twitter Profile. http:\\/\\/t.co\\/rZlrTk0u\",\"url\":\"http:\\/\\/t.co\\/IMBpTWs9RK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IMBpTWs9RK\",\"expanded_url\":\"http:\\/\\/www.silagencoglu.com.tr\",\"display_url\":\"silagencoglu.com.tr\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/rZlrTk0u\",\"expanded_url\":\"http:\\/\\/silagencoglu.com.tr\",\"display_url\":\"silagencoglu.com.tr\",\"indices\":[26,46]}]}},\"protected\":false,\"followers_count\":3035988,\"friends_count\":144,\"listed_count\":1606,\"created_at\":\"Fri Oct 23 15:41:00 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1132,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/696784051\\/253f8adfa1b570093e38f72882253579.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/696784051\\/253f8adfa1b570093e38f72882253579.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534306185735057408\\/E5eFHw3S_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534306185735057408\\/E5eFHw3S_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/84620024\\/1416223820\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14780915,\"id_str\":\"14780915\",\"name\":\"Rolling Stone\",\"screen_name\":\"RollingStone\",\"location\":\"New York, New York\",\"profile_location\":null,\"description\":\"The latest news and more from Rolling Stone magazine and http:\\/\\/t.co\\/P631jaSEDh.\",\"url\":\"http:\\/\\/t.co\\/zhpWt9kvuA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/zhpWt9kvuA\",\"expanded_url\":\"http:\\/\\/www.rollingstone.com\",\"display_url\":\"rollingstone.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/P631jaSEDh\",\"expanded_url\":\"http:\\/\\/RollingStone.com\",\"display_url\":\"RollingStone.com\",\"indices\":[57,79]}]}},\"protected\":false,\"followers_count\":4070391,\"friends_count\":262,\"listed_count\":33671,\"created_at\":\"Thu May 15 02:52:27 +0000 2008\",\"favourites_count\":5,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":37069,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0B0B0E\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/433012998307729408\\/m8vgpwYl.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/433012998307729408\\/m8vgpwYl.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458998630175617024\\/MIwtW6L0_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458998630175617024\\/MIwtW6L0_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14780915\\/1416418099\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":740216334,\"id_str\":\"740216334\",\"name\":\"PSY\",\"screen_name\":\"psy_oppa\",\"location\":\"KOREA\",\"profile_location\":null,\"description\":\"Watch #Hangover at http:\\/\\/t.co\\/cMZlv9zu15 And get #Hangover at http:\\/\\/t.co\\/xCNqZLSFDQ\",\"url\":\"http:\\/\\/t.co\\/F5MsR17UWS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/F5MsR17UWS\",\"expanded_url\":\"http:\\/\\/youtu.be\\/APj-fkBKIpQ\",\"display_url\":\"youtu.be\\/APj-fkBKIpQ\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cMZlv9zu15\",\"expanded_url\":\"http:\\/\\/youtu.be\\/HkMNOlYcpHg\",\"display_url\":\"youtu.be\\/HkMNOlYcpHg\",\"indices\":[19,41]},{\"url\":\"http:\\/\\/t.co\\/xCNqZLSFDQ\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/PsyHangoveriT\",\"display_url\":\"smarturl.it\\/PsyHangoveriT\",\"indices\":[63,85]}]}},\"protected\":false,\"followers_count\":3799744,\"friends_count\":621,\"listed_count\":7256,\"created_at\":\"Mon Aug 06 09:15:58 +0000 2012\",\"favourites_count\":17,\"utc_offset\":32400,\"time_zone\":\"Irkutsk\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2369,\"lang\":\"ko\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/710779468\\/1c6285d6a08e99fe833a92cd0555745b.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/710779468\\/1c6285d6a08e99fe833a92cd0555745b.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529100506287718400\\/IScqsjFU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529100506287718400\\/IScqsjFU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/740216334\\/1414993265\",\"profile_link_color\":\"FF5317\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19895282,\"id_str\":\"19895282\",\"name\":\"A.R.Rahman\",\"screen_name\":\"arrahman\",\"location\":\"Chennai, India\",\"profile_location\":null,\"description\":\"Grammy and Academy Award winning musician\",\"url\":\"http:\\/\\/t.co\\/Y4qmZ7N7vn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Y4qmZ7N7vn\",\"expanded_url\":\"http:\\/\\/www.arrahman.com\",\"display_url\":\"arrahman.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5550328,\"friends_count\":0,\"listed_count\":10981,\"created_at\":\"Mon Feb 02 05:53:57 +0000 2009\",\"favourites_count\":0,\"utc_offset\":19800,\"time_zone\":\"Chennai\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":717,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/737604036\\/3179cc1733a2b605d117e3661d8439ad.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/737604036\\/3179cc1733a2b605d117e3661d8439ad.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2967359603\\/450c0df90b3eb6711318c450db7db201_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2967359603\\/450c0df90b3eb6711318c450db7db201_normal.jpeg\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":74580436,\"id_str\":\"74580436\",\"name\":\"iTunes Music\",\"screen_name\":\"iTunesMusic\",\"location\":\"Cupertino, CA \",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/HRfui5yQLk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HRfui5yQLk\",\"expanded_url\":\"http:\\/\\/itunes.com\\/music\",\"display_url\":\"itunes.com\\/music\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6437387,\"friends_count\":129,\"listed_count\":18235,\"created_at\":\"Tue Sep 15 22:49:25 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":20054,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EAEAEA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/280868779\\/Twitter_Festival_Background.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/280868779\\/Twitter_Festival_Background.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536704075958476800\\/R4tmpH1O_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536704075958476800\\/R4tmpH1O_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/74580436\\/1416795153\",\"profile_link_color\":\"0088CC\",\"profile_sidebar_border_color\":\"C7C7C7\",\"profile_sidebar_fill_color\":\"E0E0E0\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":59900378,\"id_str\":\"59900378\",\"name\":\"Alejandro Fernandez\",\"screen_name\":\"alexoficial\",\"location\":\"Mexico\",\"profile_location\":null,\"description\":\"Twitter oficial de Alejandro Fern\\u00e1ndez\",\"url\":\"http:\\/\\/t.co\\/8Gv1wWLXtR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8Gv1wWLXtR\",\"expanded_url\":\"http:\\/\\/www.alejandrofernandez.com\",\"display_url\":\"alejandrofernandez.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3218231,\"friends_count\":113,\"listed_count\":6721,\"created_at\":\"Fri Jul 24 22:01:07 +0000 2009\",\"favourites_count\":16,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3959,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000063162501\\/67296aafac07a8bcaa7e666ebed7ec8a.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000063162501\\/67296aafac07a8bcaa7e666ebed7ec8a.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534359170754310144\\/T0RB7ghV_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534359170754310144\\/T0RB7ghV_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/59900378\\/1417216840\",\"profile_link_color\":\"991818\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"0A0A0A\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":70162012,\"id_str\":\"70162012\",\"name\":\"Chino y Nacho\",\"screen_name\":\"ChinoyNacho\",\"location\":\"\\u00dcT: 10.487815,-66.836216\",\"profile_location\":null,\"description\":\"Chino&Nacho, son 2 j\\u00f3venes q a fuerza d talento,constancia y entrega se han convertido en los soberanos absolutos de la m\\u00fasica Urbana en el mundo\",\"url\":\"http:\\/\\/t.co\\/A0QCaVh2yg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/A0QCaVh2yg\",\"expanded_url\":\"http:\\/\\/www.chinoynacho.com.ve\",\"display_url\":\"chinoynacho.com.ve\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3845179,\"friends_count\":172,\"listed_count\":7290,\"created_at\":\"Sun Aug 30 17:04:34 +0000 2009\",\"favourites_count\":25,\"utc_offset\":-16200,\"time_zone\":\"Caracas\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":16393,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/494503555919654912\\/NRxf1SCy.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/494503555919654912\\/NRxf1SCy.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/494501640045486080\\/vH1qCgMr_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/494501640045486080\\/vH1qCgMr_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/70162012\\/1406735026\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":637313893,\"id_str\":\"637313893\",\"name\":\"G-DRAGON\",\"screen_name\":\"IBGDRGN\",\"location\":\"SEOULCITY\",\"profile_location\":null,\"description\":\"\\u2592 \\u2592 \\u2592 ONE AND ONLY GD \\u2592 \\u2592 \\u2592 http:\\/\\/t.co\\/ABdWwJrQG4\\uff5chttp:\\/\\/t.co\\/xCuh2e1jE3\\uff5chttp:\\/\\/t.co\\/z4O2zgQL5q\\uff5cinstagram:XXXIBGDRGN\",\"url\":null,\"entities\":{\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ABdWwJrQG4\",\"expanded_url\":\"http:\\/\\/ygbigbang.com\\/GDRAGON\",\"display_url\":\"ygbigbang.com\\/GDRAGON\",\"indices\":[28,50]},{\"url\":\"http:\\/\\/t.co\\/xCuh2e1jE3\",\"expanded_url\":\"http:\\/\\/youtube.com\\/officialGDRAGON\",\"display_url\":\"youtube.com\\/officialGDRAGON\",\"indices\":[51,73]},{\"url\":\"http:\\/\\/t.co\\/z4O2zgQL5q\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/GDRAGON\",\"display_url\":\"facebook.com\\/GDRAGON\",\"indices\":[74,96]}]}},\"protected\":false,\"followers_count\":3542281,\"friends_count\":94,\"listed_count\":12976,\"created_at\":\"Mon Jul 16 21:48:58 +0000 2012\",\"favourites_count\":4,\"utc_offset\":32400,\"time_zone\":\"Seoul\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2374,\"lang\":\"ko\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/749399817\\/aa42bc41c4a74f6723f332dabfc00517.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/749399817\\/aa42bc41c4a74f6723f332dabfc00517.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534967056429363200\\/Zq0uBltY_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534967056429363200\\/Zq0uBltY_normal.jpeg\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"CF7C7C\",\"profile_text_color\":\"FE2E60\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17074714,\"id_str\":\"17074714\",\"name\":\"Luke Bryan\",\"screen_name\":\"LukeBryanOnline\",\"location\":\"Nashville, TN\",\"profile_location\":null,\"description\":\"OFFICIAL twitter for Luke Bryan\",\"url\":\"http:\\/\\/t.co\\/9biJkKaXjb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9biJkKaXjb\",\"expanded_url\":\"http:\\/\\/www.lukebryan.com\\/\",\"display_url\":\"lukebryan.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3722681,\"friends_count\":11990,\"listed_count\":5474,\"created_at\":\"Thu Oct 30 21:14:38 +0000 2008\",\"favourites_count\":112,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2307,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/453577882338476032\\/QDjfcf4u.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/453577882338476032\\/QDjfcf4u.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/474222943543652352\\/JTJvDyfT_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/474222943543652352\\/JTJvDyfT_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17074714\\/1413908010\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35877056,\"id_str\":\"35877056\",\"name\":\"Axel\",\"screen_name\":\"AxelOficial\",\"location\":\"Buenos Aires, Argentina\",\"profile_location\":null,\"description\":\"#TusOjosMisOjos en iTunes https:\\/\\/t.co\\/b3r9pHsmKd\\nhttp:\\/\\/t.co\\/X5aFKYtGU8\",\"url\":\"http:\\/\\/t.co\\/m4es1c4NmT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/m4es1c4NmT\",\"expanded_url\":\"http:\\/\\/www.axelweb.com.ar\",\"display_url\":\"axelweb.com.ar\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/b3r9pHsmKd\",\"expanded_url\":\"https:\\/\\/itunes.apple.com\\/ar\\/album\\/tus-ojos-mis-ojos\\/id868755749\",\"display_url\":\"itunes.apple.com\\/ar\\/album\\/tus-o\\u2026\",\"indices\":[26,49]},{\"url\":\"http:\\/\\/t.co\\/X5aFKYtGU8\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/AxelOficial\",\"display_url\":\"Instagram.com\\/AxelOficial\",\"indices\":[50,72]}]}},\"protected\":false,\"followers_count\":2328032,\"friends_count\":781,\"listed_count\":3361,\"created_at\":\"Mon Apr 27 22:02:09 +0000 2009\",\"favourites_count\":76,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":15417,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/519530357352177664\\/WDb-uVm8.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/519530357352177664\\/WDb-uVm8.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/519528857473265666\\/Rez_gtUW_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/519528857473265666\\/Rez_gtUW_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35877056\\/1412700278\",\"profile_link_color\":\"878A7B\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"131317\",\"profile_text_color\":\"0084B4\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":413487212,\"id_str\":\"413487212\",\"name\":\"Simon Cowell\",\"screen_name\":\"SimonCowell\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10938169,\"friends_count\":2576,\"listed_count\":12173,\"created_at\":\"Tue Nov 15 23:12:59 +0000 2011\",\"favourites_count\":5,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1444,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1642774110\\/simoncowelltwitter2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1642774110\\/simoncowelltwitter2_normal.jpg\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":36307418,\"id_str\":\"36307418\",\"name\":\"Aleks Syntek\",\"screen_name\":\"syntekoficial\",\"location\":\"M\\u00e9xico\",\"profile_location\":null,\"description\":\"Cantante y compositor festejando 25 a\\u00f1os de discograf\\u00eda, en busqueda de Corazones Invencibles en la humanidad @TheGRAMMYs 2014 nominee http:\\/\\/t.co\\/qBacVTFxIA\",\"url\":\"http:\\/\\/t.co\\/ouAcojTfAJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ouAcojTfAJ\",\"expanded_url\":\"http:\\/\\/syntekoficial.com\",\"display_url\":\"syntekoficial.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qBacVTFxIA\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/syntekoficial\",\"display_url\":\"facebook.com\\/syntekoficial\",\"indices\":[135,157]}]}},\"protected\":false,\"followers_count\":3675530,\"friends_count\":2525,\"listed_count\":8303,\"created_at\":\"Wed Apr 29 06:53:00 +0000 2009\",\"favourites_count\":427,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14913,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/503774959060013056\\/Miwk_Eta.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/503774959060013056\\/Miwk_Eta.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528414330270662656\\/Y61qm0_F_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528414330270662656\\/Y61qm0_F_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/36307418\\/1408848817\",\"profile_link_color\":\"3985A8\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":30040682,\"id_str\":\"30040682\",\"name\":\"Anahi \",\"screen_name\":\"Anahi\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/mGqguBMPfJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mGqguBMPfJ\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/anahichannelone\",\"display_url\":\"youtube.com\\/anahichannelone\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7607602,\"friends_count\":501,\"listed_count\":41915,\"created_at\":\"Thu Apr 09 18:49:26 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5807,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/774877553\\/205a72c1ae48d04c7e740269faa442b8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/774877553\\/205a72c1ae48d04c7e740269faa442b8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/528590102478737408\\/Q92WeO9f_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/528590102478737408\\/Q92WeO9f_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/30040682\\/1359302337\",\"profile_link_color\":\"0F0D0D\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"AB9FBD\",\"profile_text_color\":\"282729\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":116362700,\"id_str\":\"116362700\",\"name\":\"Lil Wayne WEEZY F\",\"screen_name\":\"LilTunechi\",\"location\":\"Mars\",\"profile_location\":null,\"description\":\"IM YOUNG MONEY http:\\/\\/t.co\\/wMwkyzCu\",\"url\":\"http:\\/\\/t.co\\/Drv5zXOC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Drv5zXOC\",\"expanded_url\":\"http:\\/\\/youngmoney.com\",\"display_url\":\"youngmoney.com\",\"indices\":[0,20]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wMwkyzCu\",\"expanded_url\":\"http:\\/\\/trukfit.com\",\"display_url\":\"trukfit.com\",\"indices\":[15,35]}]}},\"protected\":false,\"followers_count\":19373509,\"friends_count\":43,\"listed_count\":37331,\"created_at\":\"Mon Feb 22 05:29:44 +0000 2010\",\"favourites_count\":7,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1127,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/77710465\\/lil-wayne-gq-2.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/77710465\\/lil-wayne-gq-2.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/712863751\\/lil-wayne-gq-2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/712863751\\/lil-wayne-gq-2_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14502789,\"id_str\":\"14502789\",\"name\":\"Ivete Sangalo\",\"screen_name\":\"ivetesangalo\",\"location\":\"-14.864931,-40.842104\",\"profile_location\":null,\"description\":\"Twitter Oficial da cantora brasileira Ivete Sangalo. Twitter atualizado pela pr\\u00f3pria Ivete e pela equipe do seu site.\",\"url\":\"http:\\/\\/t.co\\/kXhC3KKClM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kXhC3KKClM\",\"expanded_url\":\"http:\\/\\/www.ivetesangalo.com\",\"display_url\":\"ivetesangalo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11301361,\"friends_count\":707,\"listed_count\":51311,\"created_at\":\"Wed Apr 23 23:25:12 +0000 2008\",\"favourites_count\":324,\"utc_offset\":-7200,\"time_zone\":\"Brasilia\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":36080,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"757367\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/530000045521657857\\/F53E3FI3.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/530000045521657857\\/F53E3FI3.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529999119511613440\\/HNm5uSYW_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529999119511613440\\/HNm5uSYW_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14502789\\/1415196734\",\"profile_link_color\":\"F02E0C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":41265813,\"id_str\":\"41265813\",\"name\":\"Brad Paisley\",\"screen_name\":\"BradPaisley\",\"location\":\"Nashville, TN\",\"profile_location\":null,\"description\":\"In 1972, a crack commando unit was sent to prison by a military court for a crime they didn't commit. I was also born.\",\"url\":\"http:\\/\\/t.co\\/sfUh4kOSha\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sfUh4kOSha\",\"expanded_url\":\"http:\\/\\/bradpaisley.com\",\"display_url\":\"bradpaisley.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3041014,\"friends_count\":87,\"listed_count\":9178,\"created_at\":\"Wed May 20 01:37:57 +0000 2009\",\"favourites_count\":9,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5451,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1F1F27\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/452892293050007552\\/g85aqtDe.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/452892293050007552\\/g85aqtDe.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/483027014832500736\\/rjcKrWYB_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/483027014832500736\\/rjcKrWYB_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/41265813\\/1408978641\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23976386,\"id_str\":\"23976386\",\"name\":\"David Guetta\",\"screen_name\":\"davidguetta\",\"location\":\"Ibiza, Paris, the world...\",\"profile_location\":null,\"description\":\"Official David Guetta Twitter Page. http:\\/\\/t.co\\/RMCqdEM9XC\",\"url\":\"http:\\/\\/t.co\\/MdmYLUVs9y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/MdmYLUVs9y\",\"expanded_url\":\"http:\\/\\/www.davidguetta.com\",\"display_url\":\"davidguetta.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RMCqdEM9XC\",\"expanded_url\":\"http:\\/\\/instagram.com\\/davidguetta\",\"display_url\":\"instagram.com\\/davidguetta\",\"indices\":[36,58]}]}},\"protected\":false,\"followers_count\":16027429,\"friends_count\":146,\"listed_count\":29341,\"created_at\":\"Thu Mar 12 16:19:49 +0000 2009\",\"favourites_count\":180,\"utc_offset\":3600,\"time_zone\":\"Paris\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2187,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/518408149372395521\\/sMTVC5RL.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/518408149372395521\\/sMTVC5RL.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535477460054208513\\/Vq47wekj_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535477460054208513\\/Vq47wekj_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23976386\\/1416578880\",\"profile_link_color\":\"ED2023\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":828742454,\"id_str\":\"828742454\",\"name\":\"Sandara Park\",\"screen_name\":\"krungy21\",\"location\":\"\",\"profile_location\":null,\"description\":\"\\ud22c\\uc560\\ub2c8\\uc6d0\\uc758 \\uc0c1\\ud07c\\ud55c\\ubcf4\\uceec & Pambansang krungkrung ng Pilipinas\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2265700,\"friends_count\":160,\"listed_count\":6452,\"created_at\":\"Mon Sep 17 09:51:13 +0000 2012\",\"favourites_count\":8,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3255,\"lang\":\"ko\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FAEC50\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/532376821807849472\\/VYsz_lOU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/532376821807849472\\/VYsz_lOU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/828742454\\/1393718725\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":87808186,\"id_str\":\"87808186\",\"name\":\"Diego Torres\",\"screen_name\":\"diegotorres\",\"location\":\"Argentina\",\"profile_location\":null,\"description\":\"Cantante,musico y actor\",\"url\":\"http:\\/\\/t.co\\/uTHDoBLyai\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uTHDoBLyai\",\"expanded_url\":\"http:\\/\\/www.diegotorres.com\",\"display_url\":\"diegotorres.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3491095,\"friends_count\":62,\"listed_count\":7289,\"created_at\":\"Thu Nov 05 23:01:00 +0000 2009\",\"favourites_count\":10,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4371,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FAFAFA\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/709250211\\/42dbb99067bf8ab5d3e26751d947d9b3.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/709250211\\/42dbb99067bf8ab5d3e26751d947d9b3.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/518589155639427072\\/NXM5NB0D_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/518589155639427072\\/NXM5NB0D_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":470307418,\"id_str\":\"470307418\",\"name\":\"Nancy Ajram\",\"screen_name\":\"NancyAjram\",\"location\":\"Lebanon\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/VEJDvQzvTy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/VEJDvQzvTy\",\"expanded_url\":\"http:\\/\\/NancyAjram.com\",\"display_url\":\"NancyAjram.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4602927,\"friends_count\":80,\"listed_count\":6458,\"created_at\":\"Sat Jan 21 16:32:54 +0000 2012\",\"favourites_count\":733,\"utc_offset\":7200,\"time_zone\":\"Istanbul\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8506,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"BADFCD\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/497447740050124801\\/wFkcKHO5_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/497447740050124801\\/wFkcKHO5_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/470307418\\/1406740582\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18825961,\"id_str\":\"18825961\",\"name\":\"Skrillex \",\"screen_name\":\"Skrillex\",\"location\":\"\\u00dcT: 33.997971,-118.280807\",\"profile_location\":null,\"description\":\"your friend\",\"url\":\"http:\\/\\/t.co\\/0Shsi9wWDX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0Shsi9wWDX\",\"expanded_url\":\"http:\\/\\/facebook.com\\/skrillex\",\"display_url\":\"facebook.com\\/skrillex\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3893394,\"friends_count\":859,\"listed_count\":11576,\"created_at\":\"Sat Jan 10 03:49:35 +0000 2009\",\"favourites_count\":2072,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":12365,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534637130270519296\\/MmBo2HR7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534637130270519296\\/MmBo2HR7_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18825961\\/1398372903\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17696167,\"id_str\":\"17696167\",\"name\":\"Ludacris\",\"screen_name\":\"Ludacris\",\"location\":\"International\",\"profile_location\":null,\"description\":\"BURNING BRIDGES EP \\u2013 AVAILABLE DEC 16TH On @GooglePlay - FREE\\u2013ORDER NOW\",\"url\":\"http:\\/\\/t.co\\/mSDcExVt9i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/mSDcExVt9i\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/LudaBurningBridges?IQid=tb\",\"display_url\":\"smarturl.it\\/LudaBurningBri\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9882789,\"friends_count\":301,\"listed_count\":25971,\"created_at\":\"Fri Nov 28 02:06:50 +0000 2008\",\"favourites_count\":33,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":14059,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/61663157\\/Conjure_bottle.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/61663157\\/Conjure_bottle.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/535845250644705280\\/h_cDVsJt_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/535845250644705280\\/h_cDVsJt_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17696167\\/1416590419\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":24963961,\"id_str\":\"24963961\",\"name\":\"Ozzy Osbourne\",\"screen_name\":\"OzzyOsbourne\",\"location\":\"\",\"profile_location\":null,\"description\":\"The Prince of Darkness\",\"url\":\"http:\\/\\/t.co\\/38g2SvGhEZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/38g2SvGhEZ\",\"expanded_url\":\"http:\\/\\/www.ozzy.com\",\"display_url\":\"ozzy.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3922868,\"friends_count\":87,\"listed_count\":17045,\"created_at\":\"Tue Mar 17 21:56:55 +0000 2009\",\"favourites_count\":52,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1853,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/113452082\\/ozzy_twiter_bg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/113452082\\/ozzy_twiter_bg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2946590122\\/09add4b845b1b20dab0c8f3dda6d16c3_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2946590122\\/09add4b845b1b20dab0c8f3dda6d16c3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24963961\\/1387140555\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35787166,\"id_str\":\"35787166\",\"name\":\"NICKI MINAJ\",\"screen_name\":\"NICKIMINAJ\",\"location\":\"The Pinkprint - DEC 15th, 2014\",\"profile_location\":null,\"description\":\"http:\\/\\/t.co\\/IRf1yauV5w ONLY on iTunes\",\"url\":\"http:\\/\\/t.co\\/jWqD25CGhx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/jWqD25CGhx\",\"expanded_url\":\"http:\\/\\/MYPINKFRIDAY.COM\",\"display_url\":\"MYPINKFRIDAY.COM\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IRf1yauV5w\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/OnlyExplicit\",\"display_url\":\"smarturl.it\\/OnlyExplicit\",\"indices\":[0,22]}]}},\"protected\":false,\"followers_count\":18379981,\"friends_count\":3645,\"listed_count\":62410,\"created_at\":\"Mon Apr 27 16:36:43 +0000 2009\",\"favourites_count\":19875,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":30200,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F04F8F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/344918034409996672\\/69ca57d46567f9752c46d59f5385247b.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/344918034409996672\\/69ca57d46567f9752c46d59f5385247b.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536552010405777408\\/KvPFuqCn_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536552010405777408\\/KvPFuqCn_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35787166\\/1414996188\",\"profile_link_color\":\"102294\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":49573859,\"id_str\":\"49573859\",\"name\":\"will.i.am\",\"screen_name\":\"iamwill\",\"location\":\"\",\"profile_location\":null,\"description\":\"i.am...i.can...i.will\",\"url\":\"http:\\/\\/t.co\\/A31SqNELFy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/A31SqNELFy\",\"expanded_url\":\"http:\\/\\/www.will.i.am\",\"display_url\":\"will.i.am\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12594592,\"friends_count\":1124,\"listed_count\":24434,\"created_at\":\"Mon Jun 22 08:24:19 +0000 2009\",\"favourites_count\":65,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5740,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"080A0A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/716435468\\/35ac33ba311101d05d3b1bfbb45840cb.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/716435468\\/35ac33ba311101d05d3b1bfbb45840cb.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523207513534386176\\/SIo5YRFp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523207513534386176\\/SIo5YRFp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/49573859\\/1413577490\",\"profile_link_color\":\"7A5B0D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17915334,\"id_str\":\"17915334\",\"name\":\"Big Sean\",\"screen_name\":\"BigSean\",\"location\":\"Detroit, MI\",\"profile_location\":null,\"description\":\"Detroit! #FFOE #GOOD Def Jam. my new album almost ready... https:\\/\\/t.co\\/2hS79MMakq\\r\\n\\r\\nhttp:\\/\\/t.co\\/aS16fltwn5 http:\\/\\/t.co\\/uVIPb5xDCd\",\"url\":\"http:\\/\\/t.co\\/gERYKfit82\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gERYKfit82\",\"expanded_url\":\"http:\\/\\/uknowbigsean.com\\/\",\"display_url\":\"uknowbigsean.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2hS79MMakq\",\"expanded_url\":\"https:\\/\\/soundcloud.com\\/bigsean-1\",\"display_url\":\"soundcloud.com\\/bigsean-1\",\"indices\":[59,82]},{\"url\":\"http:\\/\\/t.co\\/aS16fltwn5\",\"expanded_url\":\"http:\\/\\/youtube.com\\/bseandon\",\"display_url\":\"youtube.com\\/bseandon\",\"indices\":[86,108]},{\"url\":\"http:\\/\\/t.co\\/uVIPb5xDCd\",\"expanded_url\":\"http:\\/\\/facebook.com\\/uknowbigsean\",\"display_url\":\"facebook.com\\/uknowbigsean\",\"indices\":[109,131]}]}},\"protected\":false,\"followers_count\":6101554,\"friends_count\":1913,\"listed_count\":10232,\"created_at\":\"Sat Dec 06 03:17:02 +0000 2008\",\"favourites_count\":2200,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":17751,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/510541510886957057\\/k26NpIgP.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/510541510886957057\\/k26NpIgP.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/513489771780268034\\/jW_FODLO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/513489771780268034\\/jW_FODLO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17915334\\/1411595498\",\"profile_link_color\":\"005CB3\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":254274083,\"id_str\":\"254274083\",\"name\":\"Marc Anthony\",\"screen_name\":\"MarcAnthony\",\"location\":\"www.marcanthonyonline.com\",\"profile_location\":null,\"description\":\"\",\"url\":\"https:\\/\\/t.co\\/Gv5wkxQwuN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Gv5wkxQwuN\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/officialmarcanthony\",\"display_url\":\"facebook.com\\/officialmarcan\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6711285,\"friends_count\":464,\"listed_count\":8136,\"created_at\":\"Fri Feb 18 23:59:54 +0000 2011\",\"favourites_count\":169,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1969,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/439081688908316672\\/3RtdJ1Hd.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/439081688908316672\\/3RtdJ1Hd.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/491285957824356352\\/3TVoigee_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/491285957824356352\\/3TVoigee_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/254274083\\/1405968080\",\"profile_link_color\":\"0A0A0A\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"ABC7D1\",\"profile_text_color\":\"1F1E1C\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":278235826,\"id_str\":\"278235826\",\"name\":\"Elissa\",\"screen_name\":\"elissakh\",\"location\":\"Beirut, Lebanon\",\"profile_location\":null,\"description\":\"Lebanese & International singer, 3 times World Music Award! I m in halethob with my new album #halethob\",\"url\":\"http:\\/\\/t.co\\/YZTG7UtXiD\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YZTG7UtXiD\",\"expanded_url\":\"http:\\/\\/www.elissalb.com\",\"display_url\":\"elissalb.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4643776,\"friends_count\":226,\"listed_count\":7309,\"created_at\":\"Wed Apr 06 21:53:47 +0000 2011\",\"favourites_count\":1983,\"utc_offset\":7200,\"time_zone\":\"Cairo\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":16412,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/239899016\\/eli_rez.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/239899016\\/eli_rez.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492391632356925440\\/p1TpB2Kp_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492391632356925440\\/p1TpB2Kp_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/278235826\\/1406230286\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":8273632,\"id_str\":\"8273632\",\"name\":\"Gustavo Cerati\",\"screen_name\":\"cerati\",\"location\":\"Ciudad de Buenos Aires\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/Wvu3Pn6XzH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Wvu3Pn6XzH\",\"expanded_url\":\"http:\\/\\/cerati.com\",\"display_url\":\"cerati.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2917746,\"friends_count\":6,\"listed_count\":11873,\"created_at\":\"Sat Aug 18 22:38:39 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":241,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F2F2F2\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/80124046\\/DSC06909.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/80124046\\/DSC06909.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/323337022\\/twitter_gus_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/323337022\\/twitter_gus_normal.jpg\",\"profile_link_color\":\"0A0101\",\"profile_sidebar_border_color\":\"CFCFCF\",\"profile_sidebar_fill_color\":\"C2C2C2\",\"profile_text_color\":\"871313\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14790966,\"id_str\":\"14790966\",\"name\":\"Dolly Parton\",\"screen_name\":\"DollyParton\",\"location\":\"Nashville, Tennessee\",\"profile_location\":null,\"description\":\"Blue Smoke available NOW on iTunes! http:\\/\\/t.co\\/EwJjLhkXKS \\r http:\\/\\/t.co\\/O35Itdxp76\",\"url\":\"http:\\/\\/t.co\\/tvguIe5PuX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tvguIe5PuX\",\"expanded_url\":\"http:\\/\\/www.DollyPartonEntertainment.com\",\"display_url\":\"DollyPartonEntertainment.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EwJjLhkXKS\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/BlueSmoke\",\"display_url\":\"smarturl.it\\/BlueSmoke\",\"indices\":[36,58]},{\"url\":\"http:\\/\\/t.co\\/O35Itdxp76\",\"expanded_url\":\"http:\\/\\/OfficialDollyParton.tumblr.com\",\"display_url\":\"OfficialDollyParton.tumblr.com\",\"indices\":[61,83]}]}},\"protected\":false,\"followers_count\":3305559,\"friends_count\":25,\"listed_count\":15193,\"created_at\":\"Thu May 15 20:00:06 +0000 2008\",\"favourites_count\":3,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":953,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000156045213\\/1wVKtTEb.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000156045213\\/1wVKtTEb.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3764210470\\/212b47b120e1ff61a661a2e57f652e60_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3764210470\\/212b47b120e1ff61a661a2e57f652e60_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14790966\\/1405628017\",\"profile_link_color\":\"050933\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"8DD1E6\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19018401,\"id_str\":\"19018401\",\"name\":\"Jason Mraz\",\"screen_name\":\"jason_mraz\",\"location\":\"San Diego, CA\",\"profile_location\":null,\"description\":\"The Official Jason Mraz You Very Much Twitter Account. Follow @MrazTeam for the latest news. 'YES!' available now: http:\\/\\/t.co\\/yYA6qba8uv\",\"url\":\"http:\\/\\/t.co\\/WkhYapC4u9\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WkhYapC4u9\",\"expanded_url\":\"http:\\/\\/jasonmraz.com\",\"display_url\":\"jasonmraz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/yYA6qba8uv\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/YesJasonMraz\",\"display_url\":\"smarturl.it\\/YesJasonMraz\",\"indices\":[115,137]}]}},\"protected\":false,\"followers_count\":5598219,\"friends_count\":34,\"listed_count\":27869,\"created_at\":\"Thu Jan 15 11:16:33 +0000 2009\",\"favourites_count\":99,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3090,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EEEEEE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/526249557\\/Twitter-skin.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/526249557\\/Twitter-skin.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492090556877922305\\/X05kHQrT_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492090556877922305\\/X05kHQrT_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19018401\\/1412065741\",\"profile_link_color\":\"CC3333\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18091904,\"id_str\":\"18091904\",\"name\":\"AshleyTisdaleFrench \",\"screen_name\":\"ashleytisdale\",\"location\":\"\",\"profile_location\":null,\"description\":\"My official twitter page!! Hoping my tweets inspire you :)\",\"url\":\"http:\\/\\/t.co\\/GCap09PIfy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GCap09PIfy\",\"expanded_url\":\"http:\\/\\/www.ashleytisdale.com\",\"display_url\":\"ashleytisdale.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":12459389,\"friends_count\":179,\"listed_count\":45809,\"created_at\":\"Sat Dec 13 02:32:20 +0000 2008\",\"favourites_count\":425,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4773,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"EDEDED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/487368884039589888\\/jjPoFgxn.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/487368884039589888\\/jjPoFgxn.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/536054154112675840\\/3eujN-Ml_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/536054154112675840\\/3eujN-Ml_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18091904\\/1406769565\",\"profile_link_color\":\"DA6796\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":209708391,\"id_str\":\"209708391\",\"name\":\"One Direction\",\"screen_name\":\"onedirection\",\"location\":\"London\",\"profile_location\":null,\"description\":\"1D's new album FOUR - out now http:\\/\\/t.co\\/HYHPLwDyPc Pre-order the 'Where We Are' DVD: http:\\/\\/t.co\\/bsEJLFWWcS\",\"url\":\"http:\\/\\/t.co\\/zUsqChksfv\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/zUsqChksfv\",\"expanded_url\":\"http:\\/\\/www.onedirectionmusic.com\",\"display_url\":\"onedirectionmusic.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HYHPLwDyPc\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/1DFourAmz\",\"display_url\":\"smarturl.it\\/1DFourAmz\",\"indices\":[30,52]},{\"url\":\"http:\\/\\/t.co\\/bsEJLFWWcS\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/WhereWeAreDVD\",\"display_url\":\"smarturl.it\\/WhereWeAreDVD\",\"indices\":[103,125]}]}},\"protected\":false,\"followers_count\":21493648,\"friends_count\":3783,\"listed_count\":63201,\"created_at\":\"Fri Oct 29 19:05:25 +0000 2010\",\"favourites_count\":151,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7712,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/534140369995194368\\/mmTI0iQr.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/534140369995194368\\/mmTI0iQr.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/529223941269630977\\/X7qzczoQ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/529223941269630977\\/X7qzczoQ_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/209708391\\/1416184056\",\"profile_link_color\":\"D60808\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":124003770,\"id_str\":\"124003770\",\"name\":\"Cher \",\"screen_name\":\"cher\",\"location\":\"Malibu, California\",\"profile_location\":null,\"description\":\"Stand & B Counted or Sit & B Nothing.\\nDon't Litter,Chew Gum,Walk Past \\nHomeless PPL w\\/out Smile.DOESNT MATTER in 5 yrs IT DOESNT MATTER\\nTHERE'S ONLY LOVE&FEAR\",\"url\":\"http:\\/\\/t.co\\/E5aYMJHxx5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/E5aYMJHxx5\",\"expanded_url\":\"http:\\/\\/cher.com\",\"display_url\":\"cher.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2374217,\"friends_count\":154,\"listed_count\":10727,\"created_at\":\"Wed Mar 17 23:05:55 +0000 2010\",\"favourites_count\":749,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12369,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/527880356767084544\\/qhkY_khq.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/527880356767084544\\/qhkY_khq.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/516049693038485504\\/OQASMmsF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/516049693038485504\\/OQASMmsF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/124003770\\/1402616686\",\"profile_link_color\":\"F92649\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":22461427,\"id_str\":\"22461427\",\"name\":\"Al Yankovic\",\"screen_name\":\"alyankovic\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"You know... the Eat It guy.\",\"url\":\"http:\\/\\/t.co\\/rwtnBFlCio\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/rwtnBFlCio\",\"expanded_url\":\"http:\\/\\/www.weirdal.com\",\"display_url\":\"weirdal.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3552130,\"friends_count\":376,\"listed_count\":32697,\"created_at\":\"Mon Mar 02 07:00:29 +0000 2009\",\"favourites_count\":1745,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2824,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/5009241\\/906623544_l.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/5009241\\/906623544_l.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/246073324\\/IL2_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/246073324\\/IL2_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22461427\\/1398828117\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"BDDCAD\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":94339403,\"id_str\":\"94339403\",\"name\":\"afgansyah reza\",\"screen_name\":\"afgansyah_reza\",\"location\":\"Indonesia-Malaysia\",\"profile_location\":null,\"description\":\"I sing sometimes. \\n#L1VEtoLOVE is out on iTunes.\\nhttp:\\/\\/t.co\\/EF1AUjE5XG\",\"url\":\"http:\\/\\/t.co\\/5rQ4z4Qkix\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5rQ4z4Qkix\",\"expanded_url\":\"http:\\/\\/www.afganworld.com\",\"display_url\":\"afganworld.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EF1AUjE5XG\",\"expanded_url\":\"http:\\/\\/itunes.com\\/afgan\",\"display_url\":\"itunes.com\\/afgan\",\"indices\":[49,71]}]}},\"protected\":false,\"followers_count\":7163914,\"friends_count\":607,\"listed_count\":3840,\"created_at\":\"Thu Dec 03 14:27:45 +0000 2009\",\"favourites_count\":1,\"utc_offset\":25200,\"time_zone\":\"Bangkok\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":9396,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/77429702\\/alisson_13.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/77429702\\/alisson_13.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/483949121015795712\\/FUn_4oP9_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/483949121015795712\\/FUn_4oP9_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":40255499,\"id_str\":\"40255499\",\"name\":\"Ricky Martin\",\"screen_name\":\"ricky_martin\",\"location\":\"Puerto Rico\",\"profile_location\":null,\"description\":\"|where words fail, music speaks| \\n#ADIOS http:\\/\\/t.co\\/AzknYrMvMP\",\"url\":\"http:\\/\\/t.co\\/DMTdvjIOwZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DMTdvjIOwZ\",\"expanded_url\":\"http:\\/\\/bit.ly\\/RMmusic\",\"display_url\":\"bit.ly\\/RMmusic\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AzknYrMvMP\",\"expanded_url\":\"http:\\/\\/bit.ly\\/AdiosOfficialVid\",\"display_url\":\"bit.ly\\/AdiosOfficialV\\u2026\",\"indices\":[58,80]}]}},\"protected\":false,\"followers_count\":11173718,\"friends_count\":334,\"listed_count\":42214,\"created_at\":\"Fri May 15 14:53:26 +0000 2009\",\"favourites_count\":586,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":5490,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/510080524124033026\\/KwxvIcgo.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/510080524124033026\\/KwxvIcgo.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/525651525847109634\\/XoK1gtK1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/525651525847109634\\/XoK1gtK1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/40255499\\/1413841885\",\"profile_link_color\":\"EB1212\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"8ED3F5\",\"profile_text_color\":\"06070F\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":150566311,\"id_str\":\"150566311\",\"name\":\"Demet Akalin Kurt\",\"screen_name\":\"DemetAkalin\",\"location\":\"Istanbul, TR\",\"profile_location\":null,\"description\":\"Demet Akal\\u0131n resmi Twitter hesab\\u0131 \\/ Demet Akal\\u0131n official Twitter account. Facebook: http:\\/\\/t.co\\/DHvYok4Y9y\",\"url\":\"http:\\/\\/t.co\\/CARN00wyp2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CARN00wyp2\",\"expanded_url\":\"http:\\/\\/demetakalin.com.tr\",\"display_url\":\"demetakalin.com.tr\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DHvYok4Y9y\",\"expanded_url\":\"http:\\/\\/fb.com\\/DemetAkalin\",\"display_url\":\"fb.com\\/DemetAkalin\",\"indices\":[85,107]}]}},\"protected\":false,\"followers_count\":4264693,\"friends_count\":1290,\"listed_count\":8108,\"created_at\":\"Tue Jun 01 07:29:05 +0000 2010\",\"favourites_count\":50,\"utc_offset\":7200,\"time_zone\":\"Istanbul\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":71695,\"lang\":\"tr\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"01090D\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/472270488345903104\\/KqeUc0Dy.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/472270488345903104\\/KqeUc0Dy.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/506509837023592448\\/wC89_o1R_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/506509837023592448\\/wC89_o1R_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/150566311\\/1400611200\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":48332360,\"id_str\":\"48332360\",\"name\":\"Claudia Leitte\",\"screen_name\":\"ClaudiaLeitte\",\"location\":\"Salvador, Bahia\",\"profile_location\":null,\"description\":\"Brazilian Singer\",\"url\":\"http:\\/\\/t.co\\/KHxYYfQn2S\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/KHxYYfQn2S\",\"expanded_url\":\"http:\\/\\/claudialeitte.com\",\"display_url\":\"claudialeitte.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9867376,\"friends_count\":639,\"listed_count\":35936,\"created_at\":\"Thu Jun 18 12:25:09 +0000 2009\",\"favourites_count\":131,\"utc_offset\":-7200,\"time_zone\":\"Brasilia\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":22035,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FCF9F9\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/443104788670971904\\/krY1Q0u2.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/443104788670971904\\/krY1Q0u2.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/521387485105229825\\/twSFjThT_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/521387485105229825\\/twSFjThT_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/48332360\\/1414610051\",\"profile_link_color\":\"010F09\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"CCCCCC\",\"profile_text_color\":\"626262\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19028953,\"id_str\":\"19028953\",\"name\":\"J. Cole\",\"screen_name\":\"JColeNC\",\"location\":\"\",\"profile_location\":null,\"description\":\"Cole World\",\"url\":\"http:\\/\\/t.co\\/7yAqQahMUP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7yAqQahMUP\",\"expanded_url\":\"http:\\/\\/www.dreamvillain.net\",\"display_url\":\"dreamvillain.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5723851,\"friends_count\":386,\"listed_count\":11832,\"created_at\":\"Thu Jan 15 17:08:04 +0000 2009\",\"favourites_count\":63,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2405,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/850246512\\/8ade99f611767df6960441fd09114ddf.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/850246512\\/8ade99f611767df6960441fd09114ddf.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534204016750649345\\/DuB3Z0xN_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534204016750649345\\/DuB3Z0xN_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":180396151,\"id_str\":\"180396151\",\"name\":\"Rossa Roslaina\",\"screen_name\":\"mynameisrossa\",\"location\":\"Indonesia\",\"profile_location\":null,\"description\":\"Love,Life&Music Album instagram @itsrossa. Singer,Brand Ambassador,based in Indonesia,Malaysia.cp: @gemasakti\",\"url\":\"http:\\/\\/t.co\\/ws16Ei16Rx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ws16Ei16Rx\",\"expanded_url\":\"http:\\/\\/www.pecintarossa.com\",\"display_url\":\"pecintarossa.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2373924,\"friends_count\":330,\"listed_count\":1280,\"created_at\":\"Thu Aug 19 14:50:16 +0000 2010\",\"favourites_count\":37,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":15795,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458280497685086208\\/FxRB-gev_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458280497685086208\\/FxRB-gev_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/180396151\\/1400754000\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":26347170,\"id_str\":\"26347170\",\"name\":\"Depeche Mode\",\"screen_name\":\"depechemode\",\"location\":\"Burbank, CA (band webmaster)\",\"profile_location\":null,\"description\":\"From beginnings in Basildon, Essex, to the Universe, Depeche Mode have been creating their brand of music for over 30 years.\",\"url\":\"http:\\/\\/t.co\\/1mwfKToLhZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1mwfKToLhZ\",\"expanded_url\":\"http:\\/\\/www.depechemode.com\",\"display_url\":\"depechemode.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2045997,\"friends_count\":6050,\"listed_count\":13618,\"created_at\":\"Tue Mar 24 22:52:15 +0000 2009\",\"favourites_count\":43,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":924,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/7115102\\/discography_bg_main.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/7115102\\/discography_bg_main.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458756496105279488\\/fWFW2Ra8_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458756496105279488\\/fWFW2Ra8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26347170\\/1398211035\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":15155074,\"id_str\":\"15155074\",\"name\":\"Pearl Jam\",\"screen_name\":\"PearlJam\",\"location\":\"Seattle, WA\",\"profile_location\":null,\"description\":\"Pearl Jam's Official Twitter.\\nDownload Lightning Bolt now: http:\\/\\/t.co\\/gdBG7twcVq\",\"url\":\"http:\\/\\/t.co\\/sGQjzDFfFJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sGQjzDFfFJ\",\"expanded_url\":\"http:\\/\\/www.pearljam.com\",\"display_url\":\"pearljam.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gdBG7twcVq\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/PJLightningBolt\",\"display_url\":\"smarturl.it\\/PJLightningBolt\",\"indices\":[59,81]}]}},\"protected\":false,\"followers_count\":2683093,\"friends_count\":530,\"listed_count\":18354,\"created_at\":\"Wed Jun 18 06:59:14 +0000 2008\",\"favourites_count\":254,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":2947,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/458709139665846272\\/xuqdWuDa.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/458709139665846272\\/xuqdWuDa.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/458703903924551681\\/K1kqKhYb_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/458703903924551681\\/K1kqKhYb_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/15155074\\/1398198846\",\"profile_link_color\":\"DE1D1D\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19330043,\"id_str\":\"19330043\",\"name\":\" GOAT.\",\"screen_name\":\"llcoolj\",\"location\":\"Www.rousesocial.com\",\"profile_location\":null,\"description\":\"Longevity.Versatility.Originality\",\"url\":\"http:\\/\\/t.co\\/W7gQZeWcQm\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/W7gQZeWcQm\",\"expanded_url\":\"http:\\/\\/www.tsu.co\\/LLCOOLJ\",\"display_url\":\"tsu.co\\/LLCOOLJ\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4521207,\"friends_count\":644,\"listed_count\":18216,\"created_at\":\"Thu Jan 22 07:24:15 +0000 2009\",\"favourites_count\":406,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":23186,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/671106406\\/3ba492f962b7e55859966a1997d6a3e8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/671106406\\/3ba492f962b7e55859966a1997d6a3e8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530249570865774593\\/n83MXNyJ_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530249570865774593\\/n83MXNyJ_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19330043\\/1415255844\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":31239408,\"id_str\":\"31239408\",\"name\":\"Beyonc\\u00e9 Knowles\",\"screen_name\":\"Beyonce\",\"location\":\"\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/e8ORwX0pFo\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/e8ORwX0pFo\",\"expanded_url\":\"http:\\/\\/www.beyonce.com\",\"display_url\":\"beyonce.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":13713383,\"friends_count\":8,\"listed_count\":32615,\"created_at\":\"Tue Apr 14 21:56:04 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":8,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/453644137481261056\\/fg6qGE4n_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/453644137481261056\\/fg6qGE4n_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31239408\\/1396992135\",\"profile_link_color\":\"8F8C8C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":36483808,\"id_str\":\"36483808\",\"name\":\"Daddy Yankee\",\"screen_name\":\"daddy_yankee\",\"location\":\"Worldwide\",\"profile_location\":null,\"description\":\"*EL JEFE* #DYARMY. Billboard and Grammy Latin Urban Music Award Winner. 10 years of #BarrioFino. Shop at my website\",\"url\":\"http:\\/\\/t.co\\/lwRs93BFGi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/lwRs93BFGi\",\"expanded_url\":\"http:\\/\\/daddyyankee.com\\/sabado-rebelde\",\"display_url\":\"daddyyankee.com\\/sabado-rebelde\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7599804,\"friends_count\":65,\"listed_count\":16666,\"created_at\":\"Wed Apr 29 21:15:16 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14167,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000095429189\\/27b950bbd1bda298439c3f831d02c984.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000095429189\\/27b950bbd1bda298439c3f831d02c984.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/425296240755347456\\/xTozEWF__normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/425296240755347456\\/xTozEWF__normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/36483808\\/1414797964\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":43152482,\"id_str\":\"43152482\",\"name\":\"Alejandro Sanz\",\"screen_name\":\"AlejandroSanz\",\"location\":\"\",\"profile_location\":null,\"description\":\"http:\\/\\/t.co\\/sS9G4mnnBy\",\"url\":\"http:\\/\\/t.co\\/0Tzx6wyBME\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0Tzx6wyBME\",\"expanded_url\":\"http:\\/\\/www.alejandrosanz.com\",\"display_url\":\"alejandrosanz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sS9G4mnnBy\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/ASanzOficial\",\"display_url\":\"facebook.com\\/ASanzOficial\",\"indices\":[0,22]}]}},\"protected\":false,\"followers_count\":11794569,\"friends_count\":624,\"listed_count\":32445,\"created_at\":\"Thu May 28 17:21:35 +0000 2009\",\"favourites_count\":7,\"utc_offset\":-10800,\"time_zone\":\"Greenland\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":25579,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/442414188892143616\\/UOwW0adf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/442414188892143616\\/UOwW0adf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/43152482\\/1394314761\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":79327591,\"id_str\":\"79327591\",\"name\":\"Dulce Maria\",\"screen_name\":\"DulceMaria\",\"location\":\"\",\"profile_location\":null,\"description\":\"Cantante, Autora y Actriz. Managers: @LuisLuisillo y @PedroDamianof , Management: @SideB_News Contrataciones y contacto: i.want@sidebent.com Dulcemariaoficialfb\",\"url\":\"http:\\/\\/t.co\\/htxREvd0s3\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/htxREvd0s3\",\"expanded_url\":\"http:\\/\\/www.dulcemaria.com.mx\",\"display_url\":\"dulcemaria.com.mx\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5408268,\"friends_count\":605,\"listed_count\":31434,\"created_at\":\"Sat Oct 03 00:22:58 +0000 2009\",\"favourites_count\":234,\"utc_offset\":-21600,\"time_zone\":\"Mexico City\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":15861,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"050205\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/456294798194774016\\/aiwakBQF.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/456294798194774016\\/aiwakBQF.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/538035020326531072\\/65pUW--Z_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/538035020326531072\\/65pUW--Z_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79327591\\/1416594952\",\"profile_link_color\":\"F50A15\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"0D0D0D\",\"profile_text_color\":\"706969\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16998020,\"id_str\":\"16998020\",\"name\":\"lily\",\"screen_name\":\"lilyallen\",\"location\":\"london\",\"profile_location\":null,\"description\":\"YUNGMUMMEY\",\"url\":\"http:\\/\\/t.co\\/5UzePmPwik\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5UzePmPwik\",\"expanded_url\":\"http:\\/\\/www.lilyallenmusic.com\",\"display_url\":\"lilyallenmusic.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4905666,\"friends_count\":893,\"listed_count\":27728,\"created_at\":\"Mon Oct 27 13:23:17 +0000 2008\",\"favourites_count\":89,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":11481,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000076694520\\/1f55db04087950854042a964147708c2.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000076694520\\/1f55db04087950854042a964147708c2.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531996979954716672\\/5U9b4Vz9_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531996979954716672\\/5U9b4Vz9_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16998020\\/1379456373\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":39203045,\"id_str\":\"39203045\",\"name\":\"Residente C13\\/ RC13\",\"screen_name\":\"Calle13Oficial\",\"location\":\"Puerto Rico \\/ Argentina \",\"profile_location\":null,\"description\":\"Ren\\u00e9 P\\u00e9rez Joglar http:\\/\\/t.co\\/iLsFUFLoeB\",\"url\":\"https:\\/\\/t.co\\/JhfaKwDqeF\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/JhfaKwDqeF\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/calle13oficial\",\"display_url\":\"facebook.com\\/calle13oficial\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/iLsFUFLoeB\",\"expanded_url\":\"http:\\/\\/instagram.com\\/residentecalle13\",\"display_url\":\"instagram.com\\/residentecalle\\u2026\",\"indices\":[18,40]}]}},\"protected\":false,\"followers_count\":5318666,\"friends_count\":1017,\"listed_count\":23958,\"created_at\":\"Mon May 11 06:01:58 +0000 2009\",\"favourites_count\":15,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":22170,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/435671258785533952\\/Hdt619A4.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/435671258785533952\\/Hdt619A4.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3183438195\\/375636a580be0c92ee95d3ea1af7d824_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3183438195\\/375636a580be0c92ee95d3ea1af7d824_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/39203045\\/1392707368\",\"profile_link_color\":\"146B06\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"999999\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":119509520,\"id_str\":\"119509520\",\"name\":\"Chris Brown\",\"screen_name\":\"chrisbrown\",\"location\":\"\",\"profile_location\":null,\"description\":\"Official Chris Brown Twitter #XTheAlbum available now! http:\\/\\/t.co\\/x3IKiOn11q\",\"url\":\"http:\\/\\/t.co\\/GdreIID9ez\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GdreIID9ez\",\"expanded_url\":\"http:\\/\\/www.chrisbrownworld.com\",\"display_url\":\"chrisbrownworld.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/x3IKiOn11q\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/XTheAlbum?IQid=tw\",\"display_url\":\"smarturl.it\\/XTheAlbum?IQid\\u2026\",\"indices\":[55,77]}]}},\"protected\":false,\"followers_count\":13776438,\"friends_count\":4,\"listed_count\":46368,\"created_at\":\"Wed Mar 03 21:39:14 +0000 2010\",\"favourites_count\":589,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1785,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"999999\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511907950839877632\\/ZeEHXWUI.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511907950839877632\\/ZeEHXWUI.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/497420988498198528\\/EjB-W5lb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/497420988498198528\\/EjB-W5lb_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/119509520\\/1410840561\",\"profile_link_color\":\"0A0101\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D0D8D9\",\"profile_text_color\":\"4327E6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":24775528,\"id_str\":\"24775528\",\"name\":\"Nelly_Mo \",\"screen_name\":\"Nelly_Mo\",\"location\":\"St. Louis\",\"profile_location\":null,\"description\":\"NELLY's OFFICIAL TWITTER...CEO of Nelly Inc, Derrty Ent, Apple Bottom Clothing and a St. Lunatic\",\"url\":\"http:\\/\\/t.co\\/tIOe39p7Zn\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/tIOe39p7Zn\",\"expanded_url\":\"http:\\/\\/www.nelly.net\",\"display_url\":\"nelly.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3820914,\"friends_count\":1397,\"listed_count\":10742,\"created_at\":\"Mon Mar 16 21:38:48 +0000 2009\",\"favourites_count\":12,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":8975,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090616184\\/e8a5371dfa3901be19294a1599d2d8e3.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090616184\\/e8a5371dfa3901be19294a1599d2d8e3.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/534830121237372929\\/_LG_hlcX_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/534830121237372929\\/_LG_hlcX_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24775528\\/1396172748\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":20659839,\"id_str\":\"20659839\",\"name\":\"Wyclef Jean\",\"screen_name\":\"wyclef\",\"location\":\"\",\"profile_location\":null,\"description\":\"The Official and only Wyclef Twitter Page\",\"url\":\"http:\\/\\/t.co\\/4sKDALBrHu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4sKDALBrHu\",\"expanded_url\":\"http:\\/\\/www.instagram.com\\/wyclefjean\",\"display_url\":\"instagram.com\\/wyclefjean\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3651782,\"friends_count\":109,\"listed_count\":14008,\"created_at\":\"Thu Feb 12 07:11:07 +0000 2009\",\"favourites_count\":165,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":26839,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"990000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/450627631608651776\\/BzzpwDg8.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/450627631608651776\\/BzzpwDg8.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/459606244487991298\\/3eYuCONq_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/459606244487991298\\/3eYuCONq_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20659839\\/1416847744\",\"profile_link_color\":\"990000\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":57099808,\"id_str\":\"57099808\",\"name\":\"David Bisbal\",\"screen_name\":\"davidbisbal\",\"location\":\"Almer\\u00eda, Andaluc\\u00eda, Espa\\u00f1a\",\"profile_location\":null,\"description\":\"#T\\u00fayYo http:\\/\\/t.co\\/PlkzeLYruB http:\\/\\/t.co\\/O2KUvVSkwx http:\\/\\/t.co\\/I1WB9uAO2Z\",\"url\":\"http:\\/\\/t.co\\/pBQ19jDLHL\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/pBQ19jDLHL\",\"expanded_url\":\"http:\\/\\/www.davidbisbal.com\",\"display_url\":\"davidbisbal.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PlkzeLYruB\",\"expanded_url\":\"http:\\/\\/bit.ly\\/TuyYoTourEdition\",\"display_url\":\"bit.ly\\/TuyYoTourEditi\\u2026\",\"indices\":[7,29]},{\"url\":\"http:\\/\\/t.co\\/O2KUvVSkwx\",\"expanded_url\":\"http:\\/\\/facebook.com\\/DavidBisbal\",\"display_url\":\"facebook.com\\/DavidBisbal\",\"indices\":[30,52]},{\"url\":\"http:\\/\\/t.co\\/I1WB9uAO2Z\",\"expanded_url\":\"http:\\/\\/Instagram.com\\/DavidBisbal\",\"display_url\":\"Instagram.com\\/DavidBisbal\",\"indices\":[53,75]}]}},\"protected\":false,\"followers_count\":6933923,\"friends_count\":598,\"listed_count\":18725,\"created_at\":\"Wed Jul 15 18:47:03 +0000 2009\",\"favourites_count\":1235,\"utc_offset\":3600,\"time_zone\":\"Madrid\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":13238,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"48494B\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/445902412021129216\\/qOku4NAv.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/445902412021129216\\/qOku4NAv.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530658391530565632\\/Qlv-i3p3_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530658391530565632\\/Qlv-i3p3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57099808\\/1415353692\",\"profile_link_color\":\"8F6907\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F0F0F5\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":28897926,\"id_str\":\"28897926\",\"name\":\"Ciara\",\"screen_name\":\"ciara\",\"location\":\"Making My Album....\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/21bB11F5NG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/21bB11F5NG\",\"expanded_url\":\"http:\\/\\/onlyciara.com\",\"display_url\":\"onlyciara.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6016056,\"friends_count\":34,\"listed_count\":17563,\"created_at\":\"Sat Apr 04 23:53:24 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6754,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"211B1C\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000078758829\\/7eac875d1b4d281c850f388021f5b08a.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000078758829\\/7eac875d1b4d281c850f388021f5b08a.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531939541318660096\\/WuOiG_Ry_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531939541318660096\\/WuOiG_Ry_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/28897926\\/1409267739\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23006794,\"id_str\":\"23006794\",\"name\":\"Lenny Kravitz\",\"screen_name\":\"LennyKravitz\",\"location\":\"Paris\",\"profile_location\":null,\"description\":\"New album Strut available now on Roxie Records \\/ iTunes: http:\\/\\/t.co\\/AWRHdynur4 \\/ Fall 2014 European Tour Dates @ http:\\/\\/t.co\\/7QqCkVToUe\",\"url\":\"http:\\/\\/t.co\\/FrREsleu8A\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/FrREsleu8A\",\"expanded_url\":\"http:\\/\\/www.lennykravitz.com\",\"display_url\":\"lennykravitz.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AWRHdynur4\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/strutitunes\",\"display_url\":\"smarturl.it\\/strutitunes\",\"indices\":[57,79]},{\"url\":\"http:\\/\\/t.co\\/7QqCkVToUe\",\"expanded_url\":\"http:\\/\\/LennyKravitz.com\",\"display_url\":\"LennyKravitz.com\",\"indices\":[114,136]}]}},\"protected\":false,\"followers_count\":4721252,\"friends_count\":1879,\"listed_count\":25851,\"created_at\":\"Fri Mar 06 00:51:27 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1392,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/459351819655712768\\/ZuXTP4AS.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/459351819655712768\\/ZuXTP4AS.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/480750582353760258\\/yHSbChAu_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/480750582353760258\\/yHSbChAu_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23006794\\/1417234519\",\"profile_link_color\":\"0F7195\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"92998F\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16685316,\"id_str\":\"16685316\",\"name\":\"weezer\",\"screen_name\":\"Weezer\",\"location\":\"Los Angeles\",\"profile_location\":null,\"description\":\"Everything WiIl Be Alright In The End out now http:\\/\\/t.co\\/DI3DKApClU Fan Club http:\\/\\/t.co\\/SGnAy9eMeW\",\"url\":\"http:\\/\\/t.co\\/IIJP32O92E\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IIJP32O92E\",\"expanded_url\":\"http:\\/\\/www.weezer.com\",\"display_url\":\"weezer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/DI3DKApClU\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/WeezerTheEndDA\",\"display_url\":\"smarturl.it\\/WeezerTheEndDA\",\"indices\":[46,68]},{\"url\":\"http:\\/\\/t.co\\/SGnAy9eMeW\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1uTEY7Q\",\"display_url\":\"bit.ly\\/1uTEY7Q\",\"indices\":[79,101]}]}},\"protected\":false,\"followers_count\":1459041,\"friends_count\":452,\"listed_count\":10345,\"created_at\":\"Fri Oct 10 16:33:54 +0000 2008\",\"favourites_count\":2,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4534,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EEEEEE\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/487716852332646400\\/43kSF1wb.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/487716852332646400\\/43kSF1wb.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/436202276672131072\\/s8yod4jn_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/436202276672131072\\/s8yod4jn_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16685316\\/1412659779\",\"profile_link_color\":\"FF2200\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"D4D4D4\",\"profile_text_color\":\"050505\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":24702915,\"id_str\":\"24702915\",\"name\":\"Luis Fonsi \",\"screen_name\":\"LuisFonsi\",\"location\":\"PuertoRico\\/Miami\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/5Zq36KkPxs\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5Zq36KkPxs\",\"expanded_url\":\"http:\\/\\/www.luisfonsi.com\",\"display_url\":\"luisfonsi.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6743185,\"friends_count\":387,\"listed_count\":17192,\"created_at\":\"Mon Mar 16 14:58:39 +0000 2009\",\"favourites_count\":26,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6048,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/461551143303147520\\/1oxtwghh.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/461551143303147520\\/1oxtwghh.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/433003297444614144\\/twN0XSfM_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/433003297444614144\\/twN0XSfM_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/24702915\\/1392071026\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":47288005,\"id_str\":\"47288005\",\"name\":\"JUANES\",\"screen_name\":\"juanes\",\"location\":\"\",\"profile_location\":null,\"description\":\"El nuevo \\u00e1lbum \\u2018Loco de Amor' disponible en iTunes: http:\\/\\/t.co\\/JFB2qMT2gG | DELUXE: http:\\/\\/t.co\\/F3a5z2kTzt\",\"url\":\"http:\\/\\/t.co\\/BgQt677oHi\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BgQt677oHi\",\"expanded_url\":\"http:\\/\\/www.juanes.net\",\"display_url\":\"juanes.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/JFB2qMT2gG\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1kKnjXt\",\"display_url\":\"bit.ly\\/1kKnjXt\",\"indices\":[52,74]},{\"url\":\"http:\\/\\/t.co\\/F3a5z2kTzt\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1hPDkxu\",\"display_url\":\"bit.ly\\/1hPDkxu\",\"indices\":[85,107]}]}},\"protected\":false,\"followers_count\":9807922,\"friends_count\":2083,\"listed_count\":32444,\"created_at\":\"Mon Jun 15 07:57:11 +0000 2009\",\"favourites_count\":134,\"utc_offset\":-18000,\"time_zone\":\"Bogota\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7253,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/443443681639428096\\/90O1xM-T.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/443443681639428096\\/90O1xM-T.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/499357609002926081\\/p6_KTWos_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/499357609002926081\\/p6_KTWos_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/47288005\\/1407891502\",\"profile_link_color\":\"424242\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"1A1A1A\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":22412376,\"id_str\":\"22412376\",\"name\":\"deadmau5\",\"screen_name\":\"deadmau5\",\"location\":\"9th circle of hell\",\"profile_location\":null,\"description\":\"loves EDM\",\"url\":\"http:\\/\\/t.co\\/cnNrVJOo1H\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cnNrVJOo1H\",\"expanded_url\":\"http:\\/\\/live.deadmau5.com\",\"display_url\":\"live.deadmau5.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3058188,\"friends_count\":195,\"listed_count\":15991,\"created_at\":\"Sun Mar 01 21:59:41 +0000 2009\",\"favourites_count\":28,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":24364,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"003A42\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/633097334\\/etecldyneiq7uiesf3tz.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/633097334\\/etecldyneiq7uiesf3tz.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/525674381251334144\\/d9jYSrpO_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/525674381251334144\\/d9jYSrpO_normal.png\",\"profile_link_color\":\"ABB8C2\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"ABABAB\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27911944,\"id_str\":\"27911944\",\"name\":\"Michael Bubl\\u00e9\",\"screen_name\":\"michaelbuble\",\"location\":\"Vancouver, BC\",\"profile_location\":null,\"description\":\"Download 'Christmas' http:\\/\\/t.co\\/RzvD1BnujX. Tweets Signed MB are from Michael, himself! Tweets from TOT are from Tory on Tour\",\"url\":\"http:\\/\\/t.co\\/OQ14XxX54Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OQ14XxX54Y\",\"expanded_url\":\"http:\\/\\/www.michaelbuble.com\",\"display_url\":\"michaelbuble.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RzvD1BnujX\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/MBXmasDeluxe\",\"display_url\":\"smarturl.it\\/MBXmasDeluxe\",\"indices\":[21,43]}]}},\"protected\":false,\"followers_count\":2077980,\"friends_count\":235,\"listed_count\":7116,\"created_at\":\"Tue Mar 31 17:01:38 +0000 2009\",\"favourites_count\":109,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1873,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"295EA8\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/466001812009410560\\/BxMi1tpS.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/466001812009410560\\/BxMi1tpS.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/537331634828099584\\/ONf84kC7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/537331634828099584\\/ONf84kC7_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27911944\\/1416905611\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":18220175,\"id_str\":\"18220175\",\"name\":\"Diddy\",\"screen_name\":\"iamdiddy\",\"location\":\"EVERYWHERE!!!\",\"profile_location\":null,\"description\":\"KING COMBS\\r\\n\\r\\nLISTEN TO THE #TAKETHATTAKETHAT SUPERPACK \\r\\nCLICK - http:\\/\\/t.co\\/z84kWYvQ2q\",\"url\":\"http:\\/\\/t.co\\/c3KmsZl4vA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/c3KmsZl4vA\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/Diddy\",\"display_url\":\"facebook.com\\/Diddy\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/z84kWYvQ2q\",\"expanded_url\":\"http:\\/\\/bit.ly\\/takethatsuperpack\",\"display_url\":\"bit.ly\\/takethatsuperp\\u2026\",\"indices\":[66,88]}]}},\"protected\":false,\"followers_count\":10080545,\"friends_count\":1651,\"listed_count\":34491,\"created_at\":\"Thu Dec 18 17:52:09 +0000 2008\",\"favourites_count\":104,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":27557,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"030303\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000024715541\\/09eb30b9122deb669c3c610b25ac320d.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000024715541\\/09eb30b9122deb669c3c610b25ac320d.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/476344890818052096\\/TWXRKsPo_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/476344890818052096\\/TWXRKsPo_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18220175\\/1402406227\",\"profile_link_color\":\"646666\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"181F1F\",\"profile_text_color\":\"348A8A\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":22733444,\"id_str\":\"22733444\",\"name\":\"T-Raww\",\"screen_name\":\"Tyga\",\"location\":\"KINGIN\",\"profile_location\":null,\"description\":\"business inquires: anthony@thecmsn.com\\n\\n lastkings.co \\u00a0 \\n#LastKings #TheGoldAlbum\",\"url\":\"http:\\/\\/t.co\\/S5GdD2pTc8\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/S5GdD2pTc8\",\"expanded_url\":\"http:\\/\\/tygasworld.com\",\"display_url\":\"tygasworld.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5679195,\"friends_count\":4519,\"listed_count\":13308,\"created_at\":\"Wed Mar 04 04:29:52 +0000 2009\",\"favourites_count\":18,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8631,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F0F0F0\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511293751948353537\\/GiBqOHhj.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511293751948353537\\/GiBqOHhj.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/477618791833018368\\/U_-j3MCO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/477618791833018368\\/U_-j3MCO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22733444\\/1416697612\",\"profile_link_color\":\"EB0000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":38871237,\"id_str\":\"38871237\",\"name\":\"Julieta Venegas\",\"screen_name\":\"julietav\",\"location\":\"Mexico\",\"profile_location\":null,\"description\":\"m\\u00fasica m\\u00fasicaaaaaaa\",\"url\":\"http:\\/\\/t.co\\/fDsz5MCTU0\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fDsz5MCTU0\",\"expanded_url\":\"http:\\/\\/www.julietavenegas.net\",\"display_url\":\"julietavenegas.net\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3659185,\"friends_count\":562,\"listed_count\":13653,\"created_at\":\"Sat May 09 15:32:20 +0000 2009\",\"favourites_count\":2682,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":7935,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2560409305\\/1tl273uunpnjpyp8tj82_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2560409305\\/1tl273uunpnjpyp8tj82_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/38871237\\/1402460637\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14128609,\"id_str\":\"14128609\",\"name\":\"Felipe Neto\",\"screen_name\":\"felipeneto\",\"location\":\"Rio de Janeiro\",\"profile_location\":null,\"description\":\"Cover da Kelly Key e cantor de Sertanejo Universit\\u00e1rio - Contato Prof.: comercial@parafernalha.com.br\",\"url\":\"http:\\/\\/t.co\\/53GN5v0nsW\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/53GN5v0nsW\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/felipeneto\",\"display_url\":\"youtube.com\\/felipeneto\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3136671,\"friends_count\":469,\"listed_count\":19876,\"created_at\":\"Wed Mar 12 00:17:35 +0000 2008\",\"favourites_count\":6,\"utc_offset\":-7200,\"time_zone\":\"Brasilia\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":52433,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/166858058\\/bgtwitter.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/166858058\\/bgtwitter.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/476459804794171392\\/GnorRvUf_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/476459804794171392\\/GnorRvUf_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14128609\\/1402438928\",\"profile_link_color\":\"0D60A8\",\"profile_sidebar_border_color\":\"F0F0F0\",\"profile_sidebar_fill_color\":\"F2F2F2\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":57912874,\"id_str\":\"57912874\",\"name\":\"Carlos Baute\",\"screen_name\":\"carlosbaute\",\"location\":\"\\u00dcT: 25.762257,-80.265178\",\"profile_location\":null,\"description\":\"Official Twitter page. Bienvenidos a la p\\u00e1gina oficial de Carlos Baute en Twitter .\",\"url\":\"http:\\/\\/t.co\\/YGEMEVqyp2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/YGEMEVqyp2\",\"expanded_url\":\"http:\\/\\/carlosbauteoficial.com\",\"display_url\":\"carlosbauteoficial.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2139003,\"friends_count\":722,\"listed_count\":5094,\"created_at\":\"Sat Jul 18 11:32:25 +0000 2009\",\"favourites_count\":23,\"utc_offset\":3600,\"time_zone\":\"Madrid\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":4493,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"DBE9ED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/509144312966152192\\/Rr2-nUh8.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/509144312966152192\\/Rr2-nUh8.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530075168643616768\\/EHjJq1P2_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530075168643616768\\/EHjJq1P2_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/57912874\\/1415214601\",\"profile_link_color\":\"CC3366\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"CCE9FF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":6211972,\"id_str\":\"6211972\",\"name\":\"Sara Bareilles\",\"screen_name\":\"SaraBareilles\",\"location\":\"hear.\",\"profile_location\":null,\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/UWzRxPIxzg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UWzRxPIxzg\",\"expanded_url\":\"http:\\/\\/www.sarabmusic.com\",\"display_url\":\"sarabmusic.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3132909,\"friends_count\":225,\"listed_count\":15164,\"created_at\":\"Mon May 21 23:17:07 +0000 2007\",\"favourites_count\":32,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5510,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/451498962634031105\\/vHK8Rekj.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/451498962634031105\\/vHK8Rekj.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/483666678488629248\\/tBfafhe2_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/483666678488629248\\/tBfafhe2_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6211972\\/1401733947\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"B8C9FF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19341413,\"id_str\":\"19341413\",\"name\":\"Cage The Elephant\",\"screen_name\":\"CageTheElephant\",\"location\":\"\",\"profile_location\":null,\"description\":\"New album MELOPHOBIA out NOW!!\",\"url\":\"http:\\/\\/t.co\\/kbmvKefqSO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kbmvKefqSO\",\"expanded_url\":\"http:\\/\\/www.cagetheelephant.com\",\"display_url\":\"cagetheelephant.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1009608,\"friends_count\":670,\"listed_count\":3445,\"created_at\":\"Thu Jan 22 15:01:28 +0000 2009\",\"favourites_count\":1262,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4127,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090531250\\/2fd159b2d48cd4028811a690f39b1798.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000090531250\\/2fd159b2d48cd4028811a690f39b1798.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000289017036\\/80318a2f3361997d30014ace0c5469dd_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000289017036\\/80318a2f3361997d30014ace0c5469dd_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/19341413\\/1398887632\",\"profile_link_color\":\"EDCD00\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"807070\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21705616,\"id_str\":\"21705616\",\"name\":\"Jim Jones \",\"screen_name\":\"jimjonescapo\",\"location\":\"Harlem\",\"profile_location\":null,\"description\":\"#VampireLife bookings for #JimJones bookjimjones@gmail.com info@nextofkinent.com\",\"url\":\"http:\\/\\/t.co\\/9S2nUmSo5l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/9S2nUmSo5l\",\"expanded_url\":\"http:\\/\\/www.capolife.com\",\"display_url\":\"capolife.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3543284,\"friends_count\":640,\"listed_count\":7399,\"created_at\":\"Mon Feb 23 23:10:39 +0000 2009\",\"favourites_count\":17,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":18935,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/364318203\\/vampirelifefrontcover.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/364318203\\/vampirelifefrontcover.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/481947772518932480\\/jVCTNlwI_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/481947772518932480\\/jVCTNlwI_normal.jpeg\",\"profile_link_color\":\"0A0A0A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":50751556,\"id_str\":\"50751556\",\"name\":\"Nelly Furtado\",\"screen_name\":\"NellyFurtado\",\"location\":\"ONWARDS. UPWARDS!\",\"profile_location\":null,\"description\":\"The Spirit Indestructible is available now worldwide!\\r\\nhttp:\\/\\/t.co\\/O3NJZUsrKo\",\"url\":\"http:\\/\\/t.co\\/PPPUIat0Hl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PPPUIat0Hl\",\"expanded_url\":\"http:\\/\\/www.nellyfurtado.com\",\"display_url\":\"nellyfurtado.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/O3NJZUsrKo\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/NellyTSIalbum\",\"display_url\":\"smarturl.it\\/NellyTSIalbum\",\"indices\":[55,77]}]}},\"protected\":false,\"followers_count\":3275900,\"friends_count\":4289,\"listed_count\":23835,\"created_at\":\"Thu Jun 25 20:02:18 +0000 2009\",\"favourites_count\":7,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":4279,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/800018137\\/7f2140fe6c5f798c2ae0a72eae65f7ae.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/800018137\\/7f2140fe6c5f798c2ae0a72eae65f7ae.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/513303997848240128\\/wM7bPqMt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/513303997848240128\\/wM7bPqMt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/50751556\\/1411216205\",\"profile_link_color\":\"0E3A61\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"FAEFD5\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":36008570,\"id_str\":\"36008570\",\"name\":\"Jessie J\",\"screen_name\":\"JessieJ\",\"location\":\"Here, there and everywhere...\",\"profile_location\":null,\"description\":\"I love to sing...\\r\\nInsta: isthatjessiej\",\"url\":\"http:\\/\\/t.co\\/BvolsUaHEG\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BvolsUaHEG\",\"expanded_url\":\"http:\\/\\/jessiejofficial.com\\/\",\"display_url\":\"jessiejofficial.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6731545,\"friends_count\":882,\"listed_count\":14031,\"created_at\":\"Tue Apr 28 06:34:34 +0000 2009\",\"favourites_count\":28,\"utc_offset\":0,\"time_zone\":\"London\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":17428,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"050505\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000141949220\\/z1v1rjuq.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000141949220\\/z1v1rjuq.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/538607318930587648\\/ywy_nniH_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/538607318930587648\\/ywy_nniH_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/36008570\\/1416309498\",\"profile_link_color\":\"942694\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"ADADAD\",\"profile_text_color\":\"09090A\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}],\"size\":343,\"slug\":\"music\",\"name\":\"Music\"}" } } } ] }tweepy-3.5.0/cassettes/testsuggesteduserstweets.json000066400000000000000000004265121265716604700231650ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:46 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "f3e9c12c48bc356553e188c47f79107d" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "3ab812ed1a102e9c" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "1326" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010683587969; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:46 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:46 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "12" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381004" ] }, "body": { "string": "[{\"size\":343,\"slug\":\"music\",\"name\":\"Music\"},{\"size\":79,\"slug\":\"sports\",\"name\":\"Sports\"},{\"size\":83,\"slug\":\"photography\",\"name\":\"Photography\"},{\"size\":51,\"slug\":\"twitter\",\"name\":\"Twitter\"},{\"size\":83,\"slug\":\"entertainment\",\"name\":\"Entertainment\"},{\"size\":64,\"slug\":\"funny\",\"name\":\"Funny\"},{\"size\":111,\"slug\":\"news\",\"name\":\"News\"},{\"size\":67,\"slug\":\"technology\",\"name\":\"Technology\"},{\"size\":75,\"slug\":\"fashion\",\"name\":\"Fashion\"},{\"size\":64,\"slug\":\"food-drink\",\"name\":\"Food & Drink\"},{\"size\":209,\"slug\":\"television\",\"name\":\"Television\"},{\"size\":37,\"slug\":\"family\",\"name\":\"Family\"},{\"size\":71,\"slug\":\"art-design\",\"name\":\"Art & Design\"},{\"size\":45,\"slug\":\"business\",\"name\":\"Business\"},{\"size\":46,\"slug\":\"health\",\"name\":\"Health\"},{\"size\":64,\"slug\":\"books\",\"name\":\"Books\"},{\"size\":49,\"slug\":\"science\",\"name\":\"Science\"},{\"size\":76,\"slug\":\"faith-and-religion\",\"name\":\"Faith and Religion\"},{\"size\":52,\"slug\":\"government\",\"name\":\"Government\"},{\"size\":48,\"slug\":\"social-good\",\"name\":\"Social Good\"},{\"size\":127,\"slug\":\"nba\",\"name\":\"NBA\"},{\"size\":44,\"slug\":\"travel\",\"name\":\"Travel\"},{\"size\":51,\"slug\":\"staff-picks\",\"name\":\"Staff Picks\"},{\"size\":81,\"slug\":\"mlb\",\"name\":\"MLB\"},{\"size\":98,\"slug\":\"nascar\",\"name\":\"NASCAR\"},{\"size\":62,\"slug\":\"nhl\",\"name\":\"NHL\"},{\"size\":128,\"slug\":\"pga\",\"name\":\"PGA\"},{\"size\":68,\"slug\":\"gaming\",\"name\":\"Gaming\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions/music/members.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:47 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "576dcda64c390e6e2fcb36a96fd14188" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "b1d9be0429b56d26" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "57635" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010721012536; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:47 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:47 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381007" ] }, "body": { "string": "[{\"id\":44409004,\"id_str\":\"44409004\",\"name\":\"Shakira\",\"screen_name\":\"shakira\",\"location\":\"Barranquilla\",\"profile_location\":null,\"description\":\"New album Shakira out now! \\/ El nuevo \\u00e1lbum Shakira ya disponible en iTunes http:\\/\\/t.co\\/2hjhcJE9fk \\/ CD http:\\/\\/t.co\\/HFzQPvOUyQ\",\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"expanded_url\":\"http:\\/\\/www.shakira.com\",\"display_url\":\"shakira.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2hjhcJE9fk\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraiTunes\",\"display_url\":\"smarturl.it\\/ShakiraiTunes\",\"indices\":[76,98]},{\"url\":\"http:\\/\\/t.co\\/HFzQPvOUyQ\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraAlbumCD\",\"display_url\":\"smarturl.it\\/ShakiraAlbumCD\",\"indices\":[104,126]}]}},\"protected\":false,\"followers_count\":28037003,\"friends_count\":158,\"listed_count\":103093,\"created_at\":\"Wed Jun 03 17:38:07 +0000 2009\",\"favourites_count\":73,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3242,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 18:46:32 +0000 2014\",\"id\":538765972866629632,\"id_str\":\"538765972866629632\",\"text\":\"Roberto G. Bola\\u00f1os Chespirito ..Gracias por hacer mejor con tu vida, mi infancia y la de millones de ni\\u00f1os. Te querremos siempre!! Shak\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":4235,\"favorite_count\":6086,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/44409004\\/1411802902\",\"profile_link_color\":\"99033A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C3E2FA\",\"profile_text_color\":\"080808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":79293791,\"id_str\":\"79293791\",\"name\":\"Rihanna\",\"screen_name\":\"rihanna\",\"location\":\"LA BABY!\",\"profile_location\":null,\"description\":\"Support the Clara Lionel Foundation w\\/ the Hard Rock Rihanna Tee -- http:\\/\\/t.co\\/RP1lrQKILP\",\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"expanded_url\":\"http:\\/\\/www.rihannanow.com\",\"display_url\":\"rihannanow.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RP1lrQKILP\",\"expanded_url\":\"http:\\/\\/hardrock.co\\/1mse2ne\",\"display_url\":\"hardrock.co\\/1mse2ne\",\"indices\":[68,90]}]}},\"protected\":false,\"followers_count\":38203956,\"friends_count\":1172,\"listed_count\":97597,\"created_at\":\"Fri Oct 02 21:37:33 +0000 2009\",\"favourites_count\":825,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":9457,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 17:44:44 +0000 2014\",\"id\":538750422409035776,\"id_str\":\"538750422409035776\",\"text\":\"Just posted a photo http:\\/\\/t.co\\/sV0BKTc4RG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1846,\"favorite_count\":3375,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sV0BKTc4RG\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/v_hMT4hM_v\\/\",\"display_url\":\"instagram.com\\/p\\/v_hMT4hM_v\\/\",\"indices\":[20,42]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79293791\\/1411123252\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21447363,\"id_str\":\"21447363\",\"name\":\"KATY PERRY \",\"screen_name\":\"katyperry\",\"location\":\"\",\"profile_location\":null,\"description\":\"CURRENTLY\\u2728BEAMING\\u2728ON THE PRISMATIC WORLD TOUR 2014!\",\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"expanded_url\":\"http:\\/\\/www.katyperry.com\",\"display_url\":\"katyperry.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60698303,\"friends_count\":159,\"listed_count\":143584,\"created_at\":\"Fri Feb 20 23:45:56 +0000 2009\",\"favourites_count\":1245,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6227,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 09:28:00 +0000 2014\",\"id\":538987801987915776,\"id_str\":\"538987801987915776\",\"text\":\"OMG THEE @iamtovelo joins #ThePrismaticWorldTour tonight!!! Currently one of my FAVORITE songwriters! My\\ud83d\\udc42are so pleased!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":2858,\"favorite_count\":6066,\"entities\":{\"hashtags\":[{\"text\":\"ThePrismaticWorldTour\",\"indices\":[26,48]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iamtovelo\",\"name\":\"Tove Lo\",\"id\":613718362,\"id_str\":\"613718362\",\"indices\":[9,19]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"CECFBC\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21447363\\/1401576937\",\"profile_link_color\":\"D55732\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"78C0A8\",\"profile_text_color\":\"5E412F\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14230524,\"id_str\":\"14230524\",\"name\":\"Lady Gaga\",\"screen_name\":\"ladygaga\",\"location\":\"\",\"profile_location\":null,\"description\":\"The lady herself is not just a chameleon in person, but a chameleon in music.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42925797,\"friends_count\":133668,\"listed_count\":239344,\"created_at\":\"Wed Mar 26 22:37:48 +0000 2008\",\"favourites_count\":508,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6090,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:26:08 +0000 2014\",\"id\":539108126570450945,\"id_str\":\"539108126570450945\",\"text\":\"They had to land the plane early. Face mask and cigarette on the Tarmac. Ways to stay relaxed during holiday travels. http:\\/\\/t.co\\/qJ56RkwpWM\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3590,\"favorite_count\":6027,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539108126075531264,\"id_str\":\"539108126075531264\",\"indices\":[118,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tL-_5CMAAyz36.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tL-_5CMAAyz36.jpg\",\"url\":\"http:\\/\\/t.co\\/qJ56RkwpWM\",\"display_url\":\"pic.twitter.com\\/qJ56RkwpWM\",\"expanded_url\":\"http:\\/\\/twitter.com\\/ladygaga\\/status\\/539108126570450945\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0A090A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14230524\\/1415453416\",\"profile_link_color\":\"050505\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":26565946,\"id_str\":\"26565946\",\"name\":\"Justin Timberlake \",\"screen_name\":\"jtimberlake\",\"location\":\"Memphis, TN\",\"profile_location\":null,\"description\":\"Official Twitter Account of Justin Timberlake\",\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"expanded_url\":\"http:\\/\\/www.justintimberlake.com\",\"display_url\":\"justintimberlake.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38135123,\"friends_count\":88,\"listed_count\":76213,\"created_at\":\"Wed Mar 25 19:10:50 +0000 2009\",\"favourites_count\":14,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2706,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 23:38:05 +0000 2014\",\"id\":538839342530056192,\"id_str\":\"538839342530056192\",\"text\":\"\\u201c@imSarahHarrison: Paid my respects to the GOATS @michaeljackson & @jtimberlake @ Nike Town London today. My heroes.\\\" What company! \\ud83d\\ude4f\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538837846044708864,\"in_reply_to_status_id_str\":\"538837846044708864\",\"in_reply_to_user_id\":47409455,\"in_reply_to_user_id_str\":\"47409455\",\"in_reply_to_screen_name\":\"imSarahHarrison\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":415,\"favorite_count\":1290,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"imSarahHarrison\",\"name\":\"TheSarahHarrisonShow\",\"id\":47409455,\"id_str\":\"47409455\",\"indices\":[1,17]},{\"screen_name\":\"michaeljackson\",\"name\":\"Michael Jackson\",\"id\":54387680,\"id_str\":\"54387680\",\"indices\":[49,64]},{\"screen_name\":\"jtimberlake\",\"name\":\"Justin Timberlake \",\"id\":26565946,\"id_str\":\"26565946\",\"indices\":[71,83]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26565946\\/1414544111\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":100220864,\"id_str\":\"100220864\",\"name\":\"Bruno Mars\",\"screen_name\":\"BrunoMars\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Julio!!! Get The Stretch!!!!\",\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"expanded_url\":\"http:\\/\\/www.brunomars.com\",\"display_url\":\"brunomars.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19327954,\"friends_count\":90,\"listed_count\":36425,\"created_at\":\"Tue Dec 29 13:07:04 +0000 2009\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3326,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 20:53:00 +0000 2014\",\"id\":538435412872531970,\"id_str\":\"538435412872531970\",\"text\":\"\\u201c@BrunosLadyClub: @BrunoMars What's the prize?\\u201d We'll here's the thing... I didn't really think this all the way through... Soooooooo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538433329205219328,\"in_reply_to_status_id_str\":\"538433329205219328\",\"in_reply_to_user_id\":1300277395,\"in_reply_to_user_id_str\":\"1300277395\",\"in_reply_to_screen_name\":\"BrunosLadyClub\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1410,\"favorite_count\":3322,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"BrunosLadyClub\",\"name\":\"Bruno's Ladies \",\"id\":1300277395,\"id_str\":\"1300277395\",\"indices\":[1,16]},{\"screen_name\":\"BrunoMars\",\"name\":\"Bruno Mars\",\"id\":100220864,\"id_str\":\"100220864\",\"indices\":[18,28]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F0DBB7\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/100220864\\/1415585700\",\"profile_link_color\":\"0A0104\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17919972,\"id_str\":\"17919972\",\"name\":\"Taylor Swift\",\"screen_name\":\"taylorswift13\",\"location\":\"\",\"profile_location\":null,\"description\":\"Born in 1989.\",\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"expanded_url\":\"http:\\/\\/www.taylorswift.com\",\"display_url\":\"taylorswift.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47556617,\"friends_count\":148,\"listed_count\":117989,\"created_at\":\"Sat Dec 06 10:10:54 +0000 2008\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2972,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 07:26:17 +0000 2014\",\"id\":538957168800976896,\"id_str\":\"538957168800976896\",\"text\":\"HELP @GenaGabrielle I AM CONVULSIVELY SOBBING AND CAN'T STOP \\nhttp:\\/\\/t.co\\/gT4OKXNCCN\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":4741,\"favorite_count\":11186,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"GenaGabrielle\",\"name\":\"Gena Gabrielle\",\"id\":202947448,\"id_str\":\"202947448\",\"indices\":[5,19]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gT4OKXNCCN\",\"expanded_url\":\"http:\\/\\/vimeo.com\\/112733463\",\"display_url\":\"vimeo.com\\/112733463\",\"indices\":[62,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17919972\\/1409286315\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"screen_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Music related Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5907927,\"friends_count\":152,\"listed_count\":8775,\"created_at\":\"Wed Sep 14 16:50:47 +0000 2011\",\"favourites_count\":518,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5537,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:02:49 +0000 2014\",\"id\":539147559802245122,\"id_str\":\"539147559802245122\",\"text\":\"RT @CFL: On our way out! #GreyCup http:\\/\\/t.co\\/gH57wFqLJ5\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 04:45:11 +0000 2014\",\"id\":538916627727646722,\"id_str\":\"538916627727646722\",\"text\":\"On our way out! #GreyCup http:\\/\\/t.co\\/gH57wFqLJ5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":154,\"favorite_count\":431,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[16,24]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538916620341493760,\"id_str\":\"538916620341493760\",\"indices\":[25,47],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"url\":\"http:\\/\\/t.co\\/gH57wFqLJ5\",\"display_url\":\"pic.twitter.com\\/gH57wFqLJ5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/538916627727646722\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":154,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"GreyCup\",\"indices\":[25,33]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"CFL\",\"name\":\"CFL Official Feed\",\"id\":18194219,\"id_str\":\"18194219\",\"indices\":[3,7]}],\"urls\":[],\"media\":[{\"id\":538916620341493760,\"id_str\":\"538916620341493760\",\"indices\":[34,56],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3qdz5cCQAAQ90g.jpg\",\"url\":\"http:\\/\\/t.co\\/gH57wFqLJ5\",\"display_url\":\"pic.twitter.com\\/gH57wFqLJ5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/CFL\\/status\\/538916627727646722\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}},\"source_status_id\":538916627727646722,\"source_status_id_str\":\"538916627727646722\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27260086,\"id_str\":\"27260086\",\"name\":\"Justin Bieber\",\"screen_name\":\"justinbieber\",\"location\":\"\",\"profile_location\":null,\"description\":\"Let's make the world better, together. Join my fan club @officialfahlo and add me on @shots 'justinbieber'.\",\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/justinbieber\",\"display_url\":\"youtube.com\\/justinbieber\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57288635,\"friends_count\":164322,\"listed_count\":555580,\"created_at\":\"Sat Mar 28 16:41:22 +0000 2009\",\"favourites_count\":1387,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":27918,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 18:05:23 +0000 2014\",\"id\":539118004701650944,\"id_str\":\"539118004701650944\",\"text\":\"Nice job @Meghan_Trainor. #Mistletoe :) http:\\/\\/t.co\\/XRiOkIxEXN\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":26428,\"favorite_count\":31213,\"entities\":{\"hashtags\":[{\"text\":\"Mistletoe\",\"indices\":[26,36]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Meghan_Trainor\",\"name\":\"Meghan Trainor\",\"id\":254830969,\"id_str\":\"254830969\",\"indices\":[9,24]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/XRiOkIxEXN\",\"expanded_url\":\"http:\\/\\/youtu.be\\/r4fG44OtvTE\",\"display_url\":\"youtu.be\\/r4fG44OtvTE\",\"indices\":[40,62]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27260086\\/1411311442\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":4101221,\"id_str\":\"4101221\",\"name\":\"Thalia\",\"screen_name\":\"thalia\",\"location\":\"\",\"profile_location\":null,\"description\":\"FACEBOOK: http:\\/\\/t.co\\/3ozWqxnN8b\\r\\nand INSTAGRAM: http:\\/\\/t.co\\/dSf9N5uDIp and PINTEREST: http:\\/\\/t.co\\/qnQxavU0MG and\\r\\nNEW BOOK: http:\\/\\/t.co\\/j4R7x0JsfG\",\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"expanded_url\":\"http:\\/\\/Thalia.com\",\"display_url\":\"Thalia.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3ozWqxnN8b\",\"expanded_url\":\"http:\\/\\/facebook.com\\/thalia\",\"display_url\":\"facebook.com\\/thalia\",\"indices\":[10,32]},{\"url\":\"http:\\/\\/t.co\\/dSf9N5uDIp\",\"expanded_url\":\"http:\\/\\/instagram.com\\/thalia\",\"display_url\":\"instagram.com\\/thalia\",\"indices\":[49,71]},{\"url\":\"http:\\/\\/t.co\\/qnQxavU0MG\",\"expanded_url\":\"http:\\/\\/pinterest.com\\/LadyTH\",\"display_url\":\"pinterest.com\\/LadyTH\",\"indices\":[87,109]},{\"url\":\"http:\\/\\/t.co\\/j4R7x0JsfG\",\"expanded_url\":\"http:\\/\\/facebook.com\\/chupiethebinky\",\"display_url\":\"facebook.com\\/chupiethebinky\",\"indices\":[125,147]}]}},\"protected\":false,\"followers_count\":6240957,\"friends_count\":1565,\"listed_count\":29611,\"created_at\":\"Wed Apr 11 01:07:09 +0000 2007\",\"favourites_count\":3640,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14770,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 03:51:11 +0000 2014\",\"id\":538903038782881792,\"id_str\":\"538903038782881792\",\"text\":\"#ChespiritoPorSiempre nuestro gran s\\u00faper h\\u00e9roe \\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f\\ud83d\\ude4f http:\\/\\/t.co\\/odgqzexY5n\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":558,\"favorite_count\":931,\"entities\":{\"hashtags\":[{\"text\":\"ChespiritoPorSiempre\",\"indices\":[0,21]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/odgqzexY5n\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wAmmBIK2DK\\/\",\"display_url\":\"instagram.com\\/p\\/wAmmBIK2DK\\/\",\"indices\":[52,74]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4101221\\/1410919094\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"591C78\",\"profile_text_color\":\"61ADD6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23375688,\"id_str\":\"23375688\",\"name\":\"Selena Gomez\",\"screen_name\":\"selenagomez\",\"location\":\"Los Angeles \",\"profile_location\":null,\"description\":\"Get \\u2018The Heart Wants What It Wants\\u2019 and my new collection \\u2018For You\\u2019 - http:\\/\\/t.co\\/RXvhX21okT Philippians 4:13\",\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"expanded_url\":\"http:\\/\\/www.selenagomez.com\",\"display_url\":\"selenagomez.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RXvhX21okT\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/sga1\",\"display_url\":\"smarturl.it\\/sga1\",\"indices\":[70,92]}]}},\"protected\":false,\"followers_count\":24833477,\"friends_count\":1276,\"listed_count\":136116,\"created_at\":\"Mon Mar 09 00:16:45 +0000 2009\",\"favourites_count\":22,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3602,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:23:52 +0000 2014\",\"id\":539107558121029632,\"id_str\":\"539107558121029632\",\"text\":\"Happy Sunday everyone! \\u263a\\ufe0f\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":13120,\"favorite_count\":20330,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23375688\\/1416805110\",\"profile_link_color\":\"02806B\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"CC3399\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27909036,\"id_str\":\"27909036\",\"name\":\"Jesse & Joy Oficial\",\"screen_name\":\"jesseyjoy\",\"location\":\"En el espacio sideral..de Tour\",\"profile_location\":null,\"description\":\"Instagram: @jesseyjoy Booking: ACShows - Ana Garcia: (+5255) 53372034 agarcia@westwoodent.com Contacto: mnoriega@westwoodent.com\",\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"expanded_url\":\"http:\\/\\/www.jesseyjoy.com\",\"display_url\":\"jesseyjoy.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3626307,\"friends_count\":1068,\"listed_count\":3310,\"created_at\":\"Tue Mar 31 16:48:05 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":26320,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:31:33 +0000 2014\",\"id\":539139688838467585,\"id_str\":\"539139688838467585\",\"text\":\"No hay invierno que resista tu calor, un coraz\\u00f3n #IluminaTuNavidad \\u266a \\u266a Nuevo video aqu\\u00ed: http:\\/\\/t.co\\/GB2NMr3It6 @Coppel\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":46,\"favorite_count\":59,\"entities\":{\"hashtags\":[{\"text\":\"IluminaTuNavidad\",\"indices\":[49,66]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Coppel\",\"name\":\"Coppel\",\"id\":112775424,\"id_str\":\"112775424\",\"indices\":[113,120]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GB2NMr3It6\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1t9PKQK\",\"display_url\":\"bit.ly\\/1t9PKQK\",\"indices\":[90,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27909036\\/1407189638\",\"profile_link_color\":\"88888F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F7E0D4\",\"profile_text_color\":\"0ECCC3\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":184910040,\"id_str\":\"184910040\",\"name\":\"Adele\",\"screen_name\":\"OfficialAdele\",\"location\":\"London\\/NYC\",\"profile_location\":null,\"description\":\"Official Twitter account for Adele. @XLRECORDINGS \\/ @ColumbiaRecords recording artist.\",\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"expanded_url\":\"http:\\/\\/www.adele.tv\\/\",\"display_url\":\"adele.tv\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21294438,\"friends_count\":170,\"listed_count\":29831,\"created_at\":\"Mon Aug 30 19:53:19 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":214,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Oct 30 18:08:51 +0000 2014\",\"id\":527884855192092673,\"id_str\":\"527884855192092673\",\"text\":\"Just watched Nightcrawler after months of being excited and it WAS AMAZZZING! Go and see it!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1692,\"favorite_count\":3073,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23605048,\"id_str\":\"23605048\",\"name\":\"Paulina Rubio\",\"screen_name\":\"paurubio\",\"location\":\"\",\"profile_location\":null,\"description\":\"Paulina Rubio official twitter \\/ El twitter oficial de Paulina Rubio\",\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"expanded_url\":\"http:\\/\\/www.paulinarubio.com\",\"display_url\":\"paulinarubio.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9261399,\"friends_count\":700,\"listed_count\":23164,\"created_at\":\"Tue Mar 10 15:30:11 +0000 2009\",\"favourites_count\":464,\"utc_offset\":-21600,\"time_zone\":\"Mexico City\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6216,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 23:46:14 +0000 2014\",\"id\":538479007378186240,\"id_str\":\"538479007378186240\",\"text\":\"Gracias x tantas sonrisas! Chespirito vives en cada uno de los que crecimos con tu alegr\\u00eda. Descansa en Paz.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":767,\"favorite_count\":1107,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EF508A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23605048\\/1390333595\",\"profile_link_color\":\"01A7E0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F768BE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":268414482,\"id_str\":\"268414482\",\"name\":\"Miley Ray Cyrus\",\"screen_name\":\"MileyCyrus\",\"location\":\"PLUTO \",\"profile_location\":null,\"description\":\"#FUCKINGBANGERZ\",\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/bangerz?IQid=tw\",\"display_url\":\"smarturl.it\\/bangerz?IQid=tw\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18843057,\"friends_count\":371,\"listed_count\":60263,\"created_at\":\"Fri Mar 18 18:36:02 +0000 2011\",\"favourites_count\":81,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7901,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Nov 24 23:12:39 +0000 2014\",\"id\":537021004879384576,\"id_str\":\"537021004879384576\",\"text\":\"INC(RED)IBLE: These Apps Save Lives. For 2 weeks 100% proceeds go to @RED to fight AIDS. #AppsforRED Only @AppStore http:\\/\\/t.co\\/HOl39j51qe\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5028,\"favorite_count\":8059,\"entities\":{\"hashtags\":[{\"text\":\"AppsforRED\",\"indices\":[89,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RED\",\"name\":\"(RED)\",\"id\":16423109,\"id_str\":\"16423109\",\"indices\":[69,73]},{\"screen_name\":\"AppStore\",\"name\":\"App Store \",\"id\":74594552,\"id_str\":\"74594552\",\"indices\":[106,115]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HOl39j51qe\",\"expanded_url\":\"http:\\/\\/AppStore.com\\/AppsforRED\",\"display_url\":\"AppStore.com\\/AppsforRED\",\"indices\":[116,138]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268414482\\/1412118738\",\"profile_link_color\":\"0D0101\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"FF8400\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35094637,\"id_str\":\"35094637\",\"name\":\"Alicia Keys\",\"screen_name\":\"aliciakeys\",\"location\":\"New York City\",\"profile_location\":null,\"description\":\"Passionate about my work, in love with my family and dedicated to spreading light. It's contagious!;-)\\r\\n\\r\\nhttp:\\/\\/t.co\\/QP5RXoYH12\",\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"expanded_url\":\"http:\\/\\/www.aliciakeys.com\",\"display_url\":\"aliciakeys.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/QP5RXoYH12\",\"expanded_url\":\"http:\\/\\/www.weareheremovement.com\",\"display_url\":\"weareheremovement.com\",\"indices\":[106,128]}]}},\"protected\":false,\"followers_count\":20320485,\"friends_count\":523,\"listed_count\":52372,\"created_at\":\"Sat Apr 25 00:46:24 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5138,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 20:53:30 +0000 2014\",\"id\":538797926399868928,\"id_str\":\"538797926399868928\",\"text\":\"Sending you Saturday smiles!! Big love to riccardotisci17 givenchyofficial and nicobustos love the\\u2026 http:\\/\\/t.co\\/vL2QwoneNg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":116,\"favorite_count\":339,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/vL2QwoneNg\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/v_2y1gwFjr\\/\",\"display_url\":\"instagram.com\\/p\\/v_2y1gwFjr\\/\",\"indices\":[100,122]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"150D1A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35094637\\/1412196329\",\"profile_link_color\":\"171415\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D91C26\",\"profile_text_color\":\"090A02\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":31927467,\"id_str\":\"31927467\",\"name\":\"Pitbull\",\"screen_name\":\"pitbull\",\"location\":\"Miami, FL\",\"profile_location\":null,\"description\":\"GLOBALIZATION\",\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/pitbullmusic\",\"display_url\":\"youtube.com\\/pitbullmusic\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18527262,\"friends_count\":2490,\"listed_count\":23168,\"created_at\":\"Thu Apr 16 16:03:02 +0000 2009\",\"favourites_count\":25,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6023,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 20:21:04 +0000 2014\",\"id\":538789762778165248,\"id_str\":\"538789762778165248\",\"text\":\"nos vemos ma\\u00f1ana Guadalajara http:\\/\\/t.co\\/oxe2ZVPM2y\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":307,\"favorite_count\":1156,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538789762014789633,\"id_str\":\"538789762014789633\",\"indices\":[29,51],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3oqbxWCQAEbBE6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3oqbxWCQAEbBE6.jpg\",\"url\":\"http:\\/\\/t.co\\/oxe2ZVPM2y\",\"display_url\":\"pic.twitter.com\\/oxe2ZVPM2y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pitbull\\/status\\/538789762778165248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":634,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":899,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31927467\\/1417022925\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D6D6D6\",\"profile_text_color\":\"C40808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16409683,\"id_str\":\"16409683\",\"name\":\"Britney Spears\",\"screen_name\":\"britneyspears\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"It\\u2019s Britney Bitch! #BritneyJean available now on @iTunesMusic: http:\\/\\/t.co\\/dps446FIFx\",\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"expanded_url\":\"http:\\/\\/www.britneyspears.com\",\"display_url\":\"britneyspears.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dps446FIFx\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/britneyjean?IQid=tw\",\"display_url\":\"smarturl.it\\/britneyjean?IQ\\u2026\",\"indices\":[64,86]}]}},\"protected\":false,\"followers_count\":39693192,\"friends_count\":400806,\"listed_count\":129408,\"created_at\":\"Mon Sep 22 20:47:35 +0000 2008\",\"favourites_count\":498,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3878,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 16:28:02 +0000 2014\",\"id\":538368732373204992,\"id_str\":\"538368732373204992\",\"text\":\"Happy Black Friday! Lots of stuff happening in the Britney store. LOVE the new xmas ornament! http:\\/\\/t.co\\/JuYdEKx8IT http:\\/\\/t.co\\/1ZVx4ZdDH8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1199,\"favorite_count\":1895,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/JuYdEKx8IT\",\"expanded_url\":\"http:\\/\\/britney.lk\\/store\",\"display_url\":\"britney.lk\\/store\",\"indices\":[94,116]}],\"media\":[{\"id\":538368731240747008,\"id_str\":\"538368731240747008\",\"indices\":[117,139],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3irgjfIUAA6ws_.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3irgjfIUAA6ws_.jpg\",\"url\":\"http:\\/\\/t.co\\/1ZVx4ZdDH8\",\"display_url\":\"pic.twitter.com\\/1ZVx4ZdDH8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/britneyspears\\/status\\/538368732373204992\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":404,\"h\":404,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":404,\"h\":404,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16409683\\/1397512555\",\"profile_link_color\":\"D44A71\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F4F4F4\",\"profile_text_color\":\"222222\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":220332457,\"id_str\":\"220332457\",\"name\":\"\\u304d\\u3083\\u308a\\u30fc\\u3071\\u307f\\u3085\\u3071\\u307f\\u3085\",\"screen_name\":\"pamyurin\",\"location\":\"ASOBI SYSTEM\",\"profile_location\":null,\"description\":\"\\u3075\\u3041\\u3093\\u305f\\u4eba\",\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"expanded_url\":\"http:\\/\\/s.ameblo.jp\\/kyarypamyupamyu\\/\",\"display_url\":\"s.ameblo.jp\\/kyarypamyupamy\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2577114,\"friends_count\":165,\"listed_count\":15384,\"created_at\":\"Sat Nov 27 13:30:22 +0000 2010\",\"favourites_count\":3,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11845,\"lang\":\"ja\",\"status\":{\"created_at\":\"Sun Nov 30 16:31:18 +0000 2014\",\"id\":539094328425992193,\"id_str\":\"539094328425992193\",\"text\":\"http:\\/\\/t.co\\/Jjt5899WkX\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":567,\"favorite_count\":1491,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539094323317309440,\"id_str\":\"539094323317309440\",\"indices\":[0,22],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3s_bknCAAA6KiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3s_bknCAAA6KiT.jpg\",\"url\":\"http:\\/\\/t.co\\/Jjt5899WkX\",\"display_url\":\"pic.twitter.com\\/Jjt5899WkX\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pamyurin\\/status\\/539094328425992193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":180,\"h\":178,\"resize\":\"fit\"},\"small\":{\"w\":180,\"h\":178,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":180,\"h\":178,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/220332457\\/1398672949\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21111883,\"id_str\":\"21111883\",\"name\":\"Demi Lovato\",\"screen_name\":\"ddlovato\",\"location\":\"DALLAS\\/LA\",\"profile_location\":null,\"description\":\"New album DEMI feat. Neon Lights, & my new single Really Don't Care available NOW!!! Download here - http:\\/\\/t.co\\/ydguDHMvx6 #DEMIWORLDTOUR tix on sale now!\",\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/DemiLovato\",\"display_url\":\"facebook.com\\/DemiLovato\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ydguDHMvx6\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/dla1\",\"display_url\":\"smarturl.it\\/dla1\",\"indices\":[101,123]}]}},\"protected\":false,\"followers_count\":25618459,\"friends_count\":339,\"listed_count\":106101,\"created_at\":\"Tue Feb 17 18:02:08 +0000 2009\",\"favourites_count\":10,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12365,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 16:16:12 +0000 2014\",\"id\":538728140731084800,\"id_str\":\"538728140731084800\",\"text\":\"I wanna throw a Christmas party SO BAD.... Thanks pinterest. \\ud83d\\ude12.... \\ud83c\\udf85\\ud83c\\udf84\\ud83c\\udf81\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003eEchofon\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":14398,\"favorite_count\":24101,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21111883\\/1410889387\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"B9BEB8\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:36 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "a542a6e22fde50dc6508db13f94699b6" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401033" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1326" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:36 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "12" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013639545328; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:36 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "08d551f1ecf79f81" ] }, "body": { "string": "[{\"size\":343,\"slug\":\"music\",\"name\":\"Music\"},{\"size\":79,\"slug\":\"sports\",\"name\":\"Sports\"},{\"size\":83,\"slug\":\"photography\",\"name\":\"Photography\"},{\"size\":51,\"slug\":\"twitter\",\"name\":\"Twitter\"},{\"size\":83,\"slug\":\"entertainment\",\"name\":\"Entertainment\"},{\"size\":64,\"slug\":\"funny\",\"name\":\"Funny\"},{\"size\":111,\"slug\":\"news\",\"name\":\"News\"},{\"size\":67,\"slug\":\"technology\",\"name\":\"Technology\"},{\"size\":75,\"slug\":\"fashion\",\"name\":\"Fashion\"},{\"size\":64,\"slug\":\"food-drink\",\"name\":\"Food & Drink\"},{\"size\":209,\"slug\":\"television\",\"name\":\"Television\"},{\"size\":37,\"slug\":\"family\",\"name\":\"Family\"},{\"size\":71,\"slug\":\"art-design\",\"name\":\"Art & Design\"},{\"size\":45,\"slug\":\"business\",\"name\":\"Business\"},{\"size\":46,\"slug\":\"health\",\"name\":\"Health\"},{\"size\":64,\"slug\":\"books\",\"name\":\"Books\"},{\"size\":49,\"slug\":\"science\",\"name\":\"Science\"},{\"size\":76,\"slug\":\"faith-and-religion\",\"name\":\"Faith and Religion\"},{\"size\":52,\"slug\":\"government\",\"name\":\"Government\"},{\"size\":48,\"slug\":\"social-good\",\"name\":\"Social Good\"},{\"size\":127,\"slug\":\"nba\",\"name\":\"NBA\"},{\"size\":44,\"slug\":\"travel\",\"name\":\"Travel\"},{\"size\":51,\"slug\":\"staff-picks\",\"name\":\"Staff Picks\"},{\"size\":81,\"slug\":\"mlb\",\"name\":\"MLB\"},{\"size\":98,\"slug\":\"nascar\",\"name\":\"NASCAR\"},{\"size\":62,\"slug\":\"nhl\",\"name\":\"NHL\"},{\"size\":128,\"slug\":\"pga\",\"name\":\"PGA\"},{\"size\":68,\"slug\":\"gaming\",\"name\":\"Gaming\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/suggestions/music/members.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:36 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "47bb8db64d3caed72e20274c39ea83ce" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401036" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "57219" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:36 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013673737157; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:36 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "9b397f1663d97b50" ] }, "body": { "string": "[{\"id\":44409004,\"id_str\":\"44409004\",\"name\":\"Shakira\",\"screen_name\":\"shakira\",\"location\":\"Barranquilla\",\"profile_location\":null,\"description\":\"New album Shakira out now! \\/ El nuevo \\u00e1lbum Shakira ya disponible en iTunes http:\\/\\/t.co\\/2hjhcJE9fk \\/ CD http:\\/\\/t.co\\/HFzQPvOUyQ\",\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"expanded_url\":\"http:\\/\\/www.shakira.com\",\"display_url\":\"shakira.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2hjhcJE9fk\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraiTunes\",\"display_url\":\"smarturl.it\\/ShakiraiTunes\",\"indices\":[76,98]},{\"url\":\"http:\\/\\/t.co\\/HFzQPvOUyQ\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/ShakiraAlbumCD\",\"display_url\":\"smarturl.it\\/ShakiraAlbumCD\",\"indices\":[104,126]}]}},\"protected\":false,\"followers_count\":28037186,\"friends_count\":158,\"listed_count\":103087,\"created_at\":\"Wed Jun 03 17:38:07 +0000 2009\",\"favourites_count\":73,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3241,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 18:46:32 +0000 2014\",\"id\":538765972866629632,\"id_str\":\"538765972866629632\",\"text\":\"Roberto G. Bola\\u00f1os Chespirito ..Gracias por hacer mejor con tu vida, mi infancia y la de millones de ni\\u00f1os. Te querremos siempre!! Shak\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":4482,\"favorite_count\":6402,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/509016736553648128\\/RUHaGMev.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/515764781043564544\\/Spnqqy28_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/44409004\\/1411802902\",\"profile_link_color\":\"99033A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C3E2FA\",\"profile_text_color\":\"080808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":79293791,\"id_str\":\"79293791\",\"name\":\"Rihanna\",\"screen_name\":\"rihanna\",\"location\":\"LA BABY!\",\"profile_location\":null,\"description\":\"Support the Clara Lionel Foundation w\\/ the Hard Rock Rihanna Tee -- http:\\/\\/t.co\\/RP1lrQKILP\",\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"expanded_url\":\"http:\\/\\/www.rihannanow.com\",\"display_url\":\"rihannanow.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RP1lrQKILP\",\"expanded_url\":\"http:\\/\\/hardrock.co\\/1mse2ne\",\"display_url\":\"hardrock.co\\/1mse2ne\",\"indices\":[68,90]}]}},\"protected\":false,\"followers_count\":38203141,\"friends_count\":1171,\"listed_count\":97580,\"created_at\":\"Fri Oct 02 21:37:33 +0000 2009\",\"favourites_count\":825,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":9457,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 17:44:44 +0000 2014\",\"id\":538750422409035776,\"id_str\":\"538750422409035776\",\"text\":\"Just posted a photo http:\\/\\/t.co\\/sV0BKTc4RG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1909,\"favorite_count\":3490,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/sV0BKTc4RG\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/v_hMT4hM_v\\/\",\"display_url\":\"instagram.com\\/p\\/v_hMT4hM_v\\/\",\"indices\":[20,42]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/447423178004901888\\/f8j9ZoVV.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/523351869583007744\\/-KzL6Mgi_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79293791\\/1411123252\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21447363,\"id_str\":\"21447363\",\"name\":\"KATY PERRY \",\"screen_name\":\"katyperry\",\"location\":\"\",\"profile_location\":null,\"description\":\"CURRENTLY\\u2728BEAMING\\u2728ON THE PRISMATIC WORLD TOUR 2014!\",\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/TUWZkUWWhw\",\"expanded_url\":\"http:\\/\\/www.katyperry.com\",\"display_url\":\"katyperry.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60706187,\"friends_count\":159,\"listed_count\":143574,\"created_at\":\"Fri Feb 20 23:45:56 +0000 2009\",\"favourites_count\":1246,\"utc_offset\":-32400,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6227,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 09:28:00 +0000 2014\",\"id\":538987801987915776,\"id_str\":\"538987801987915776\",\"text\":\"OMG THEE @iamtovelo joins #ThePrismaticWorldTour tonight!!! Currently one of my FAVORITE songwriters! My\\ud83d\\udc42are so pleased!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3115,\"favorite_count\":6545,\"entities\":{\"hashtags\":[{\"text\":\"ThePrismaticWorldTour\",\"indices\":[26,48]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"iamtovelo\",\"name\":\"Tove Lo\",\"id\":613718362,\"id_str\":\"613718362\",\"indices\":[9,19]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"CECFBC\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000168797027\\/kSZ-ewZo.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423542935368380416\\/ryEG2fNO_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21447363\\/1401576937\",\"profile_link_color\":\"D55732\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"78C0A8\",\"profile_text_color\":\"5E412F\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":14230524,\"id_str\":\"14230524\",\"name\":\"Lady Gaga\",\"screen_name\":\"ladygaga\",\"location\":\"\",\"profile_location\":null,\"description\":\"The lady herself is not just a chameleon in person, but a chameleon in music.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":42924500,\"friends_count\":133664,\"listed_count\":239331,\"created_at\":\"Wed Mar 26 22:37:48 +0000 2008\",\"favourites_count\":508,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6091,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 00:01:29 +0000 2014\",\"id\":539207620973051904,\"id_str\":\"539207620973051904\",\"text\":\"Back to work. I'll sleep when I'm dead. http:\\/\\/t.co\\/c9TwZAgZXt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1685,\"favorite_count\":2452,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/c9TwZAgZXt\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wCxGh3JFFn\\/\",\"display_url\":\"instagram.com\\/p\\/wCxGh3JFFn\\/\",\"indices\":[40,62]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"0A090A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/514429204939563008\\/4md0cRjw.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531075942555586560\\/xvamUQWM_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14230524\\/1415453416\",\"profile_link_color\":\"050505\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDFFCC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":26565946,\"id_str\":\"26565946\",\"name\":\"Justin Timberlake \",\"screen_name\":\"jtimberlake\",\"location\":\"Memphis, TN\",\"profile_location\":null,\"description\":\"Official Twitter Account of Justin Timberlake\",\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SRqd8jEvNZ\",\"expanded_url\":\"http:\\/\\/www.justintimberlake.com\",\"display_url\":\"justintimberlake.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":38141063,\"friends_count\":88,\"listed_count\":76206,\"created_at\":\"Wed Mar 25 19:10:50 +0000 2009\",\"favourites_count\":14,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2706,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 23:38:05 +0000 2014\",\"id\":538839342530056192,\"id_str\":\"538839342530056192\",\"text\":\"\\u201c@imSarahHarrison: Paid my respects to the GOATS @michaeljackson & @jtimberlake @ Nike Town London today. My heroes.\\\" What company! \\ud83d\\ude4f\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":538837846044708864,\"in_reply_to_status_id_str\":\"538837846044708864\",\"in_reply_to_user_id\":47409455,\"in_reply_to_user_id_str\":\"47409455\",\"in_reply_to_screen_name\":\"imSarahHarrison\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":435,\"favorite_count\":1343,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"imSarahHarrison\",\"name\":\"TheSarahHarrisonShow\",\"id\":47409455,\"id_str\":\"47409455\",\"indices\":[1,17]},{\"screen_name\":\"michaeljackson\",\"name\":\"Michael Jackson\",\"id\":54387680,\"id_str\":\"54387680\",\"indices\":[49,64]},{\"screen_name\":\"jtimberlake\",\"name\":\"Justin Timberlake \",\"id\":26565946,\"id_str\":\"26565946\",\"indices\":[71,83]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/423976765573197824\\/H8DOsOPm_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26565946\\/1414544111\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":100220864,\"id_str\":\"100220864\",\"name\":\"Bruno Mars\",\"screen_name\":\"BrunoMars\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"Julio!!! Get The Stretch!!!!\",\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hgVCE0yz7c\",\"expanded_url\":\"http:\\/\\/www.brunomars.com\",\"display_url\":\"brunomars.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":19329430,\"friends_count\":88,\"listed_count\":36424,\"created_at\":\"Tue Dec 29 13:07:04 +0000 2009\",\"favourites_count\":28,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3327,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 22:07:31 +0000 2014\",\"id\":539178940955242496,\"id_str\":\"539178940955242496\",\"text\":\"https:\\/\\/t.co\\/cdrZgnt48q \\\"YES IT IS!\\\"\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1805,\"favorite_count\":3049,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/cdrZgnt48q\",\"expanded_url\":\"https:\\/\\/m.youtube.com\\/watch?v=3sKdDyyanGk\",\"display_url\":\"m.youtube.com\\/watch?v=3sKdDy\\u2026\",\"indices\":[0,23]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"F0DBB7\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000180677345\\/HQxt1pHD.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531626153837359105\\/ZR11lw1R_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/100220864\\/1415585700\",\"profile_link_color\":\"0A0104\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"E6F6F9\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":17919972,\"id_str\":\"17919972\",\"name\":\"Taylor Swift\",\"screen_name\":\"taylorswift13\",\"location\":\"\",\"profile_location\":null,\"description\":\"Born in 1989.\",\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AjT5TRgs35\",\"expanded_url\":\"http:\\/\\/www.taylorswift.com\",\"display_url\":\"taylorswift.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":47566526,\"friends_count\":148,\"listed_count\":117977,\"created_at\":\"Sat Dec 06 10:10:54 +0000 2008\",\"favourites_count\":175,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2973,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 02:01:49 +0000 2014\",\"id\":539237903537561600,\"id_str\":\"539237903537561600\",\"text\":\"RT @LilyAldridge: London girl talk!!! #VSFashionShow #2Days \\u2764\\ufe0f @taylorswift13 @beeprinsloo http:\\/\\/t.co\\/BMYGyRxPPu\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Mon Dec 01 00:31:08 +0000 2014\",\"id\":539215083931697152,\"id_str\":\"539215083931697152\",\"text\":\"London girl talk!!! #VSFashionShow #2Days \\u2764\\ufe0f @taylorswift13 @beeprinsloo http:\\/\\/t.co\\/BMYGyRxPPu\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1042,\"favorite_count\":1641,\"entities\":{\"hashtags\":[{\"text\":\"VSFashionShow\",\"indices\":[20,34]},{\"text\":\"2Days\",\"indices\":[35,41]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"taylorswift13\",\"name\":\"Taylor Swift\",\"id\":17919972,\"id_str\":\"17919972\",\"indices\":[45,59]},{\"screen_name\":\"BeePrinsloo\",\"name\":\"Behati Prinsloo\",\"id\":110721158,\"id_str\":\"110721158\",\"indices\":[60,72]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BMYGyRxPPu\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wC0ftIP311\\/\",\"display_url\":\"instagram.com\\/p\\/wC0ftIP311\\/\",\"indices\":[73,95]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1042,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"VSFashionShow\",\"indices\":[38,52]},{\"text\":\"2Days\",\"indices\":[53,59]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"LilyAldridge\",\"name\":\"Lily Aldridge\",\"id\":575492930,\"id_str\":\"575492930\",\"indices\":[3,16]},{\"screen_name\":\"taylorswift13\",\"name\":\"Taylor Swift\",\"id\":17919972,\"id_str\":\"17919972\",\"indices\":[63,77]},{\"screen_name\":\"BeePrinsloo\",\"name\":\"Behati Prinsloo\",\"id\":110721158,\"id_str\":\"110721158\",\"indices\":[78,90]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/BMYGyRxPPu\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wC0ftIP311\\/\",\"display_url\":\"instagram.com\\/p\\/wC0ftIP311\\/\",\"indices\":[91,113]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/505200807503867904\\/osJXmYRl_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/17919972\\/1409286315\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"screen_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"profile_location\":null,\"description\":\"Music related Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5909222,\"friends_count\":152,\"listed_count\":8775,\"created_at\":\"Wed Sep 14 16:50:47 +0000 2011\",\"favourites_count\":518,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5543,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 00:33:32 +0000 2014\",\"id\":539215685378129921,\"id_str\":\"539215685378129921\",\"text\":\"RT @IGGYAZALEA: Hi world! just taking a break from the rain here in LA to see how everyone is doing. I Hope everyones thanksgiving was grea\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sun Nov 30 23:49:48 +0000 2014\",\"id\":539204681075941376,\"id_str\":\"539204681075941376\",\"text\":\"Hi world! just taking a break from the rain here in LA to see how everyone is doing. I Hope everyones thanksgiving was great :-)\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":940,\"favorite_count\":3867,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":940,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"IGGYAZALEA\",\"name\":\"IGGY AZALEA\",\"id\":153694176,\"id_str\":\"153694176\",\"indices\":[3,14]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000449287089\\/70dea90873e8a0f92fd582b4d04cfd4b_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27260086,\"id_str\":\"27260086\",\"name\":\"Justin Bieber\",\"screen_name\":\"justinbieber\",\"location\":\"\",\"profile_location\":null,\"description\":\"Let's make the world better, together. Join my fan club @officialfahlo and add me on @shots 'justinbieber'.\",\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/OkBCJEbGi2\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/justinbieber\",\"display_url\":\"youtube.com\\/justinbieber\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":57296609,\"friends_count\":164315,\"listed_count\":555575,\"created_at\":\"Sat Mar 28 16:41:22 +0000 2009\",\"favourites_count\":1387,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":27919,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 23:19:11 +0000 2014\",\"id\":539196974700830721,\"id_str\":\"539196974700830721\",\"text\":\"Bang bang @john @haileybaldwin http:\\/\\/t.co\\/VC2sw0wZ4O\",\"source\":\"\\u003ca href=\\\"http:\\/\\/shots.me\\\" rel=\\\"nofollow\\\"\\u003eShots App\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":16388,\"favorite_count\":18389,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"john\",\"name\":\"John Shahidi\",\"id\":17151344,\"id_str\":\"17151344\",\"indices\":[10,15]},{\"screen_name\":\"haileybaldwin\",\"name\":\"Hailey Baldwin\",\"id\":64090343,\"id_str\":\"64090343\",\"indices\":[16,30]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/VC2sw0wZ4O\",\"expanded_url\":\"http:\\/\\/shots.com\\/p\\/stse9dfm\",\"display_url\":\"shots.com\\/p\\/stse9dfm\",\"indices\":[32,54]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"in\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/460851381025267712\\/RU-xit8T.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/520374943272284160\\/FzNKwxes_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27260086\\/1411311442\",\"profile_link_color\":\"89C9FA\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":4101221,\"id_str\":\"4101221\",\"name\":\"Thalia\",\"screen_name\":\"thalia\",\"location\":\"\",\"profile_location\":null,\"description\":\"FACEBOOK: http:\\/\\/t.co\\/3ozWqxnN8b\\r\\nand INSTAGRAM: http:\\/\\/t.co\\/dSf9N5uDIp and PINTEREST: http:\\/\\/t.co\\/qnQxavU0MG and\\r\\nNEW BOOK: http:\\/\\/t.co\\/j4R7x0JsfG\",\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/836sw9cMGX\",\"expanded_url\":\"http:\\/\\/Thalia.com\",\"display_url\":\"Thalia.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3ozWqxnN8b\",\"expanded_url\":\"http:\\/\\/facebook.com\\/thalia\",\"display_url\":\"facebook.com\\/thalia\",\"indices\":[10,32]},{\"url\":\"http:\\/\\/t.co\\/dSf9N5uDIp\",\"expanded_url\":\"http:\\/\\/instagram.com\\/thalia\",\"display_url\":\"instagram.com\\/thalia\",\"indices\":[49,71]},{\"url\":\"http:\\/\\/t.co\\/qnQxavU0MG\",\"expanded_url\":\"http:\\/\\/pinterest.com\\/LadyTH\",\"display_url\":\"pinterest.com\\/LadyTH\",\"indices\":[87,109]},{\"url\":\"http:\\/\\/t.co\\/j4R7x0JsfG\",\"expanded_url\":\"http:\\/\\/facebook.com\\/chupiethebinky\",\"display_url\":\"facebook.com\\/chupiethebinky\",\"indices\":[125,147]}]}},\"protected\":false,\"followers_count\":6243176,\"friends_count\":1565,\"listed_count\":29609,\"created_at\":\"Wed Apr 11 01:07:09 +0000 2007\",\"favourites_count\":3640,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":14771,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 23:08:56 +0000 2014\",\"id\":539194397381107713,\"id_str\":\"539194397381107713\",\"text\":\"La vida es tan fr\\u00e1gil,que en un momento esta en tus manos y en el siguiente,cae en ese sue\\u00f1o eterno\\u2026 http:\\/\\/t.co\\/dotteQhAWt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":221,\"favorite_count\":380,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dotteQhAWt\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wCrFpJK2Lw\\/\",\"display_url\":\"instagram.com\\/p\\/wCrFpJK2Lw\\/\",\"indices\":[101,123]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/512058502072655872\\/hEmPqld5.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/490244518478753793\\/UP-8jVtS_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4101221\\/1410919094\",\"profile_link_color\":\"DD2E44\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"591C78\",\"profile_text_color\":\"61ADD6\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23375688,\"id_str\":\"23375688\",\"name\":\"Selena Gomez\",\"screen_name\":\"selenagomez\",\"location\":\"Los Angeles \",\"profile_location\":null,\"description\":\"Get \\u2018The Heart Wants What It Wants\\u2019 and my new collection \\u2018For You\\u2019 - http:\\/\\/t.co\\/RXvhX21okT Philippians 4:13\",\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/bsIURHevHT\",\"expanded_url\":\"http:\\/\\/www.selenagomez.com\",\"display_url\":\"selenagomez.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RXvhX21okT\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/sga1\",\"display_url\":\"smarturl.it\\/sga1\",\"indices\":[70,92]}]}},\"protected\":false,\"followers_count\":24836031,\"friends_count\":1277,\"listed_count\":136069,\"created_at\":\"Mon Mar 09 00:16:45 +0000 2009\",\"favourites_count\":22,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3602,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 17:23:52 +0000 2014\",\"id\":539107558121029632,\"id_str\":\"539107558121029632\",\"text\":\"Happy Sunday everyone! \\u263a\\ufe0f\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":15120,\"favorite_count\":23420,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/432562884673941506\\/EygIGZH-.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530328886744068096\\/OcFcv4dj_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23375688\\/1416805110\",\"profile_link_color\":\"02806B\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"CC3399\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":27909036,\"id_str\":\"27909036\",\"name\":\"Jesse & Joy Oficial\",\"screen_name\":\"jesseyjoy\",\"location\":\"En el espacio sideral..de Tour\",\"profile_location\":null,\"description\":\"Instagram: @jesseyjoy Booking: ACShows - Ana Garcia: (+5255) 53372034 agarcia@westwoodent.com Contacto: mnoriega@westwoodent.com\",\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/wRvpu358EP\",\"expanded_url\":\"http:\\/\\/www.jesseyjoy.com\",\"display_url\":\"jesseyjoy.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3627824,\"friends_count\":1068,\"listed_count\":3309,\"created_at\":\"Tue Mar 31 16:48:05 +0000 2009\",\"favourites_count\":3,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":26320,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:31:33 +0000 2014\",\"id\":539139688838467585,\"id_str\":\"539139688838467585\",\"text\":\"No hay invierno que resista tu calor, un coraz\\u00f3n #IluminaTuNavidad \\u266a \\u266a Nuevo video aqu\\u00ed: http:\\/\\/t.co\\/GB2NMr3It6 @Coppel\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":59,\"favorite_count\":91,\"entities\":{\"hashtags\":[{\"text\":\"IluminaTuNavidad\",\"indices\":[49,66]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Coppel\",\"name\":\"Coppel\",\"id\":112775424,\"id_str\":\"112775424\",\"indices\":[113,120]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/GB2NMr3It6\",\"expanded_url\":\"http:\\/\\/bit.ly\\/1t9PKQK\",\"display_url\":\"bit.ly\\/1t9PKQK\",\"indices\":[90,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/496413778859151361\\/QntDs1Hx.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/496410110608957441\\/O1xU76ZE_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27909036\\/1407189638\",\"profile_link_color\":\"88888F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F7E0D4\",\"profile_text_color\":\"0ECCC3\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":184910040,\"id_str\":\"184910040\",\"name\":\"Adele\",\"screen_name\":\"OfficialAdele\",\"location\":\"London\\/NYC\",\"profile_location\":null,\"description\":\"Official Twitter account for Adele. @XLRECORDINGS \\/ @ColumbiaRecords recording artist.\",\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"expanded_url\":\"http:\\/\\/www.adele.tv\\/\",\"display_url\":\"adele.tv\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":21295586,\"friends_count\":170,\"listed_count\":29829,\"created_at\":\"Mon Aug 30 19:53:19 +0000 2010\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Quito\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":214,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Oct 30 18:08:51 +0000 2014\",\"id\":527884855192092673,\"id_str\":\"527884855192092673\",\"text\":\"Just watched Nightcrawler after months of being excited and it WAS AMAZZZING! Go and see it!\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1697,\"favorite_count\":3082,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/167616538\\/bg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"profile_link_color\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":23605048,\"id_str\":\"23605048\",\"name\":\"Paulina Rubio\",\"screen_name\":\"paurubio\",\"location\":\"\",\"profile_location\":null,\"description\":\"Paulina Rubio official twitter \\/ El twitter oficial de Paulina Rubio\",\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/UAeeFGpH4m\",\"expanded_url\":\"http:\\/\\/www.paulinarubio.com\",\"display_url\":\"paulinarubio.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":9263658,\"friends_count\":700,\"listed_count\":23163,\"created_at\":\"Tue Mar 10 15:30:11 +0000 2009\",\"favourites_count\":465,\"utc_offset\":-21600,\"time_zone\":\"Mexico City\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6216,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Nov 28 23:46:14 +0000 2014\",\"id\":538479007378186240,\"id_str\":\"538479007378186240\",\"text\":\"Gracias x tantas sonrisas! Chespirito vives en cada uno de los que crecimos con tu alegr\\u00eda. Descansa en Paz.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":784,\"favorite_count\":1131,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"EF508A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172223115\\/3_jlWYKP.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/503018480099020800\\/yFOHjySN_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23605048\\/1390333595\",\"profile_link_color\":\"01A7E0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F768BE\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":268414482,\"id_str\":\"268414482\",\"name\":\"Miley Ray Cyrus\",\"screen_name\":\"MileyCyrus\",\"location\":\"PLUTO \",\"profile_location\":null,\"description\":\"#FUCKINGBANGERZ\",\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/0JoMA1kUve\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/bangerz?IQid=tw\",\"display_url\":\"smarturl.it\\/bangerz?IQid=tw\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18843581,\"friends_count\":372,\"listed_count\":60255,\"created_at\":\"Fri Mar 18 18:36:02 +0000 2011\",\"favourites_count\":81,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":7901,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Nov 24 23:12:39 +0000 2014\",\"id\":537021004879384576,\"id_str\":\"537021004879384576\",\"text\":\"INC(RED)IBLE: These Apps Save Lives. For 2 weeks 100% proceeds go to @RED to fight AIDS. #AppsforRED Only @AppStore http:\\/\\/t.co\\/HOl39j51qe\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5072,\"favorite_count\":8135,\"entities\":{\"hashtags\":[{\"text\":\"AppsforRED\",\"indices\":[89,100]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"RED\",\"name\":\"(RED)\",\"id\":16423109,\"id_str\":\"16423109\",\"indices\":[69,73]},{\"screen_name\":\"AppStore\",\"name\":\"App Store \",\"id\":74594552,\"id_str\":\"74594552\",\"indices\":[106,115]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HOl39j51qe\",\"expanded_url\":\"http:\\/\\/AppStore.com\\/AppsforRED\",\"display_url\":\"AppStore.com\\/AppsforRED\",\"indices\":[116,138]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/474222043446013953\\/q3HjRJfx.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/527640747277709312\\/lXMBojtU_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268414482\\/1412118738\",\"profile_link_color\":\"0D0101\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"000000\",\"profile_text_color\":\"FF8400\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":35094637,\"id_str\":\"35094637\",\"name\":\"Alicia Keys\",\"screen_name\":\"aliciakeys\",\"location\":\"New York City\",\"profile_location\":null,\"description\":\"Passionate about my work, in love with my family and dedicated to spreading light. It's contagious!;-)\\r\\n\\r\\nhttp:\\/\\/t.co\\/QP5RXoYH12\",\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/X29Mgazy7h\",\"expanded_url\":\"http:\\/\\/www.aliciakeys.com\",\"display_url\":\"aliciakeys.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/QP5RXoYH12\",\"expanded_url\":\"http:\\/\\/www.weareheremovement.com\",\"display_url\":\"weareheremovement.com\",\"indices\":[106,128]}]}},\"protected\":false,\"followers_count\":20322079,\"friends_count\":523,\"listed_count\":52368,\"created_at\":\"Sat Apr 25 00:46:24 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5139,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 01:56:30 +0000 2014\",\"id\":539236566821273600,\"id_str\":\"539236566821273600\",\"text\":\"Loving this magnificence by jasnine09 !! @therealswizzz approved!!!\\ud83d\\ude4c\\ud83d\\ude4c\\ud83d\\ude4c shine on!! \\ud83d\\ude18 http:\\/\\/t.co\\/4lfzEzTLfq\",\"source\":\"\\u003ca href=\\\"http:\\/\\/instagram.com\\\" rel=\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":47,\"favorite_count\":96,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"THEREALSWIZZZ\",\"name\":\" SWIZZ BEATZ\",\"id\":25027806,\"id_str\":\"25027806\",\"indices\":[41,55]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4lfzEzTLfq\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/wC-Q8YQFtb\\/\",\"display_url\":\"instagram.com\\/p\\/wC-Q8YQFtb\\/\",\"indices\":[84,106]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"150D1A\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/517414879871762433\\/G5qktqdM.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/508975448257089536\\/HMCqyPP9_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/35094637\\/1412196329\",\"profile_link_color\":\"171415\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D91C26\",\"profile_text_color\":\"090A02\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":31927467,\"id_str\":\"31927467\",\"name\":\"Pitbull\",\"screen_name\":\"pitbull\",\"location\":\"Miami, FL\",\"profile_location\":null,\"description\":\"GLOBALIZATION\",\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/xUbzGGaZFr\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/pitbullmusic\",\"display_url\":\"youtube.com\\/pitbullmusic\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":18529727,\"friends_count\":2492,\"listed_count\":23168,\"created_at\":\"Thu Apr 16 16:03:02 +0000 2009\",\"favourites_count\":25,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":6023,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 20:21:04 +0000 2014\",\"id\":538789762778165248,\"id_str\":\"538789762778165248\",\"text\":\"nos vemos ma\\u00f1ana Guadalajara http:\\/\\/t.co\\/oxe2ZVPM2y\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":317,\"favorite_count\":1189,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538789762014789633,\"id_str\":\"538789762014789633\",\"indices\":[29,51],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3oqbxWCQAEbBE6.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3oqbxWCQAEbBE6.jpg\",\"url\":\"http:\\/\\/t.co\\/oxe2ZVPM2y\",\"display_url\":\"pic.twitter.com\\/oxe2ZVPM2y\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pitbull\\/status\\/538789762778165248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":634,\"h\":950,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":509,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":899,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/537659330967773184\\/kxEdlsLE.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/492106704490754049\\/ugHZbQNF_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31927467\\/1417022925\",\"profile_link_color\":\"3B94D9\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"D6D6D6\",\"profile_text_color\":\"C40808\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":16409683,\"id_str\":\"16409683\",\"name\":\"Britney Spears\",\"screen_name\":\"britneyspears\",\"location\":\"Los Angeles, CA\",\"profile_location\":null,\"description\":\"It\\u2019s Britney Bitch! #BritneyJean available now on @iTunesMusic: http:\\/\\/t.co\\/dps446FIFx\",\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PBMqPsIRsx\",\"expanded_url\":\"http:\\/\\/www.britneyspears.com\",\"display_url\":\"britneyspears.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dps446FIFx\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/britneyjean?IQid=tw\",\"display_url\":\"smarturl.it\\/britneyjean?IQ\\u2026\",\"indices\":[64,86]}]}},\"protected\":false,\"followers_count\":39695595,\"friends_count\":400804,\"listed_count\":129402,\"created_at\":\"Mon Sep 22 20:47:35 +0000 2008\",\"favourites_count\":498,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3879,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 01:28:57 +0000 2014\",\"id\":539229632520675328,\"id_str\":\"539229632520675328\",\"text\":\"So grateful for family time this weekend. \\u2764\\ufe0f my boys! http:\\/\\/t.co\\/ripsH2PvNo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1207,\"favorite_count\":3033,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539229627957264384,\"id_str\":\"539229627957264384\",\"indices\":[54,76],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3u6fVrCQAAsIPt.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3u6fVrCQAAsIPt.jpg\",\"url\":\"http:\\/\\/t.co\\/ripsH2PvNo\",\"display_url\":\"pic.twitter.com\\/ripsH2PvNo\",\"expanded_url\":\"http:\\/\\/twitter.com\\/britneyspears\\/status\\/539229632520675328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":1024,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378800000172752091\\/DmmPCAPz.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/426108979186384896\\/J3JDXvs4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16409683\\/1397512555\",\"profile_link_color\":\"D44A71\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F4F4F4\",\"profile_text_color\":\"222222\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":220332457,\"id_str\":\"220332457\",\"name\":\"\\u304d\\u3083\\u308a\\u30fc\\u3071\\u307f\\u3085\\u3071\\u307f\\u3085\",\"screen_name\":\"pamyurin\",\"location\":\"ASOBI SYSTEM\",\"profile_location\":null,\"description\":\"\\u3075\\u3041\\u3093\\u305f\\u4eba\",\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/H7jhAUjcMw\",\"expanded_url\":\"http:\\/\\/s.ameblo.jp\\/kyarypamyupamyu\\/\",\"display_url\":\"s.ameblo.jp\\/kyarypamyupamy\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2577723,\"friends_count\":165,\"listed_count\":15385,\"created_at\":\"Sat Nov 27 13:30:22 +0000 2010\",\"favourites_count\":3,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11845,\"lang\":\"ja\",\"status\":{\"created_at\":\"Sun Nov 30 16:31:18 +0000 2014\",\"id\":539094328425992193,\"id_str\":\"539094328425992193\",\"text\":\"http:\\/\\/t.co\\/Jjt5899WkX\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":760,\"favorite_count\":2198,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539094323317309440,\"id_str\":\"539094323317309440\",\"indices\":[0,22],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3s_bknCAAA6KiT.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3s_bknCAAA6KiT.jpg\",\"url\":\"http:\\/\\/t.co\\/Jjt5899WkX\",\"display_url\":\"pic.twitter.com\\/Jjt5899WkX\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pamyurin\\/status\\/539094328425992193\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":180,\"h\":178,\"resize\":\"fit\"},\"small\":{\"w\":180,\"h\":178,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":180,\"h\":178,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531515684274962432\\/8RhH3HfV_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/220332457\\/1398672949\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":21111883,\"id_str\":\"21111883\",\"name\":\"Demi Lovato\",\"screen_name\":\"ddlovato\",\"location\":\"DALLAS\\/LA\",\"profile_location\":null,\"description\":\"New album DEMI feat. Neon Lights, & my new single Really Don't Care available NOW!!! Download here - http:\\/\\/t.co\\/ydguDHMvx6 #DEMIWORLDTOUR tix on sale now!\",\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3J82yCbTXY\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/DemiLovato\",\"display_url\":\"facebook.com\\/DemiLovato\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ydguDHMvx6\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/dla1\",\"display_url\":\"smarturl.it\\/dla1\",\"indices\":[101,123]}]}},\"protected\":false,\"followers_count\":25622268,\"friends_count\":339,\"listed_count\":106076,\"created_at\":\"Tue Feb 17 18:02:08 +0000 2009\",\"favourites_count\":10,\"utc_offset\":-25200,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":12365,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 29 16:16:12 +0000 2014\",\"id\":538728140731084800,\"id_str\":\"538728140731084800\",\"text\":\"I wanna throw a Christmas party SO BAD.... Thanks pinterest. \\ud83d\\ude12.... \\ud83c\\udf85\\ud83c\\udf84\\ud83c\\udf81\",\"source\":\"\\u003ca href=\\\"http:\\/\\/www.echofon.com\\/\\\" rel=\\\"nofollow\\\"\\u003eEchofon\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":14988,\"favorite_count\":24803,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":true,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/511933200940019712\\/CKxPa76o.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/488906749697478656\\/elgT1abh_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21111883\\/1410889387\",\"profile_link_color\":\"000000\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"B9BEB8\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}]" } } } ] }tweepy-3.5.0/cassettes/testsupportedlanguages.json000066400000000000000000000232441265716604700225640ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/help/languages.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:48 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "186e9de0d5f65f02836c52d9bc18b60c" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "471d8f2b2f291ae8" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1792" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010802209936; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:48 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:48 GMT" ], "status": [ "200 OK" ], "expires": [ "Mon, 01 Dec 2014 20:41:48 GMT" ], "x-rate-limit-remaining": [ "14" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381008" ] }, "body": { "string": "[{\"code\":\"fr\",\"name\":\"French\",\"status\":\"production\"},{\"code\":\"en\",\"name\":\"English\",\"status\":\"production\"},{\"code\":\"ar\",\"name\":\"Arabic\",\"status\":\"production\"},{\"code\":\"ja\",\"name\":\"Japanese\",\"status\":\"production\"},{\"code\":\"es\",\"name\":\"Spanish\",\"status\":\"production\"},{\"code\":\"de\",\"name\":\"German\",\"status\":\"production\"},{\"code\":\"it\",\"name\":\"Italian\",\"status\":\"production\"},{\"code\":\"id\",\"name\":\"Indonesian\",\"status\":\"production\"},{\"code\":\"pt\",\"name\":\"Portuguese\",\"status\":\"production\"},{\"code\":\"ko\",\"name\":\"Korean\",\"status\":\"production\"},{\"code\":\"tr\",\"name\":\"Turkish\",\"status\":\"production\"},{\"code\":\"ru\",\"name\":\"Russian\",\"status\":\"production\"},{\"code\":\"nl\",\"name\":\"Dutch\",\"status\":\"production\"},{\"code\":\"fil\",\"name\":\"Filipino\",\"status\":\"production\"},{\"code\":\"msa\",\"name\":\"Malay\",\"status\":\"production\"},{\"code\":\"zh-tw\",\"name\":\"Traditional Chinese\",\"status\":\"production\"},{\"code\":\"zh-cn\",\"name\":\"Simplified Chinese\",\"status\":\"production\"},{\"code\":\"hi\",\"name\":\"Hindi\",\"status\":\"production\"},{\"code\":\"no\",\"name\":\"Norwegian\",\"status\":\"production\"},{\"code\":\"sv\",\"name\":\"Swedish\",\"status\":\"production\"},{\"code\":\"fi\",\"name\":\"Finnish\",\"status\":\"production\"},{\"code\":\"da\",\"name\":\"Danish\",\"status\":\"production\"},{\"code\":\"pl\",\"name\":\"Polish\",\"status\":\"production\"},{\"code\":\"hu\",\"name\":\"Hungarian\",\"status\":\"production\"},{\"code\":\"fa\",\"name\":\"Persian\",\"status\":\"production\"},{\"code\":\"he\",\"name\":\"Hebrew\",\"status\":\"production\"},{\"code\":\"th\",\"name\":\"Thai\",\"status\":\"production\"},{\"code\":\"uk\",\"name\":\"Ukrainian\",\"status\":\"production\"},{\"code\":\"cs\",\"name\":\"Czech\",\"status\":\"production\"},{\"code\":\"ro\",\"name\":\"Romanian\",\"status\":\"production\"},{\"code\":\"en-gb\",\"name\":\"British English\",\"status\":\"production\"},{\"code\":\"vi\",\"name\":\"Vietnamese\",\"status\":\"production\"},{\"code\":\"bn\",\"name\":\"Bengali\",\"status\":\"production\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/help/languages.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:37 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "32ae1761e5fcc2277aa55634a8ba1d0a" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401037" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1792" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:37 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 02 Dec 2014 02:15:37 GMT" ], "x-rate-limit-remaining": [ "14" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013763647041; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:37 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "a5f91d2dd0ae8414" ] }, "body": { "string": "[{\"code\":\"fr\",\"name\":\"French\",\"status\":\"production\"},{\"code\":\"en\",\"name\":\"English\",\"status\":\"production\"},{\"code\":\"ar\",\"name\":\"Arabic\",\"status\":\"production\"},{\"code\":\"ja\",\"name\":\"Japanese\",\"status\":\"production\"},{\"code\":\"es\",\"name\":\"Spanish\",\"status\":\"production\"},{\"code\":\"de\",\"name\":\"German\",\"status\":\"production\"},{\"code\":\"it\",\"name\":\"Italian\",\"status\":\"production\"},{\"code\":\"id\",\"name\":\"Indonesian\",\"status\":\"production\"},{\"code\":\"pt\",\"name\":\"Portuguese\",\"status\":\"production\"},{\"code\":\"ko\",\"name\":\"Korean\",\"status\":\"production\"},{\"code\":\"tr\",\"name\":\"Turkish\",\"status\":\"production\"},{\"code\":\"ru\",\"name\":\"Russian\",\"status\":\"production\"},{\"code\":\"nl\",\"name\":\"Dutch\",\"status\":\"production\"},{\"code\":\"fil\",\"name\":\"Filipino\",\"status\":\"production\"},{\"code\":\"msa\",\"name\":\"Malay\",\"status\":\"production\"},{\"code\":\"zh-tw\",\"name\":\"Traditional Chinese\",\"status\":\"production\"},{\"code\":\"zh-cn\",\"name\":\"Simplified Chinese\",\"status\":\"production\"},{\"code\":\"hi\",\"name\":\"Hindi\",\"status\":\"production\"},{\"code\":\"no\",\"name\":\"Norwegian\",\"status\":\"production\"},{\"code\":\"sv\",\"name\":\"Swedish\",\"status\":\"production\"},{\"code\":\"fi\",\"name\":\"Finnish\",\"status\":\"production\"},{\"code\":\"da\",\"name\":\"Danish\",\"status\":\"production\"},{\"code\":\"pl\",\"name\":\"Polish\",\"status\":\"production\"},{\"code\":\"hu\",\"name\":\"Hungarian\",\"status\":\"production\"},{\"code\":\"fa\",\"name\":\"Persian\",\"status\":\"production\"},{\"code\":\"he\",\"name\":\"Hebrew\",\"status\":\"production\"},{\"code\":\"th\",\"name\":\"Thai\",\"status\":\"production\"},{\"code\":\"uk\",\"name\":\"Ukrainian\",\"status\":\"production\"},{\"code\":\"cs\",\"name\":\"Czech\",\"status\":\"production\"},{\"code\":\"ro\",\"name\":\"Romanian\",\"status\":\"production\"},{\"code\":\"en-gb\",\"name\":\"British English\",\"status\":\"production\"},{\"code\":\"vi\",\"name\":\"Vietnamese\",\"status\":\"production\"},{\"code\":\"bn\",\"name\":\"Bengali\",\"status\":\"production\"}]" } } } ] }tweepy-3.5.0/cassettes/testupdateanddestroystatus.json000066400000000000000000000744701265716604700235020ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/statuses/update.json?status=testing+208", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2f2714141c1188cdc93abe326aef67e5" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "3c5fc657d9100a2e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010836211740; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:48 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:48 GMT" ], "status": [ "200 OK" ], "content-length": [ "2213" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:48 UTC" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 20:41:48 +0000 2014\",\"id\":539157368517697536,\"id_str\":\"539157368517697536\",\"text\":\"testing 208\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/statuses/destroy/539157368517697536.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "29528e82cfce7064d568f91958dbcb7d" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "d7e0ef53e8e58bfc" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010879050228; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:48 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:48 GMT" ], "status": [ "200 OK" ], "content-length": [ "2213" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:48 UTC" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 20:41:48 +0000 2014\",\"id\":539157368517697536,\"id_str\":\"539157368517697536\",\"text\":\"testing 208\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/statuses/update.json?status=testing+1000", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "3c1130a2f01ff4fab87111dc71e03187" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "6783db044753590e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2214" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141739011199354166; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 23:28:32 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 23:28:31 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 23:28:32 UTC" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 23:28:32 +0000 2014\",\"id\":539199326787219457,\"id_str\":\"539199326787219457\",\"text\":\"testing 1000\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/statuses/destroy/539199326787219457.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "ec9f89fecbb87d920d2a1bda17ed353b" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "134768f5f9cb722e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2214" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141739011240479452; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 23:28:32 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 23:28:32 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 23:28:32 UTC" ] }, "body": { "string": "{\"created_at\":\"Sun Nov 30 23:28:32 +0000 2014\",\"id\":539199326787219457,\"id_str\":\"539199326787219457\",\"text\":\"testing 1000\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/statuses/update.json?status=testing+692", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "93dc0b3be7b9b211bfffaace7b5242b6" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "acb9dcd83478879b" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2213" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:38 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013800586036; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:38 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:38 UTC" ] }, "body": { "string": "{\"created_at\":\"Mon Dec 01 02:15:38 +0000 2014\",\"id\":539241378921062400,\"id_str\":\"539241378921062400\",\"text\":\"testing 692\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/statuses/destroy/539241378921062400.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1e16bde111a5c694b3527e1b75e23baa" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "34e917ffe9e50185" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2213" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:38 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013847085743; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:38 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:38 UTC" ] }, "body": { "string": "{\"created_at\":\"Mon Dec 01 02:15:38 +0000 2014\",\"id\":539241378921062400,\"id_str\":\"539241378921062400\",\"text\":\"testing 692\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}" } } } ] }tweepy-3.5.0/cassettes/testupdateprofile.json000066400000000000000000001365261265716604700215230ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:49 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5463cc25802366517770eeaf3d051ad6" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "c5a4f8d79d0292cd" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2848" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010919601002; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:49 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:49 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "13" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:41:49 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "be04173c15e9c6b85cda7dde0722986a" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "19799dac81f5a83a" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2899" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010961658551; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:49 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:49 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "176" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"suspended\":false,\"needs_phone_verification\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile.json?description=just+testing+things+out&location=pytopia&name=Tweepy+test+123", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "e4f2ae3df0ddce89c0f80eb11b8641ce" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "64aa87b494a26ba5" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2836" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738010998794698; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:50 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:49 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:50 UTC" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"just testing things out\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":null}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile.json?url=http%3A%2F%2Ft.co%2F3L9bWVrV0b&location=pytopia&name=Tweepy+test+123&description=A+test+account+for+testing+stuff.", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2dbb517ba8311a39856b9219db1e8282" ], "content-type": [ "application/json;charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "29d0518e2f3f9980" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2846" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738011040014896; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:50 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:41:50 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "date": [ "Sun, 30 Nov 2014 20:41:50 UTC" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417375486\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":null}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:39 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "1fa35cf47f21d65cc0a21394eb815ebe" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2848" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:38 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "13" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013882519113; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:39 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "bf7773321a8040ab" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:39 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2e4e421a37733f57c27c0b58fe7dcf7a" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401003" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2899" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:39 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "176" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740013961761780; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:39 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "7cc569dbb633951c" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"suspended\":false,\"needs_phone_verification\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile.json?name=Tweepy+test+123&location=pytopia&description=just+testing+things+out", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "c421beb4a49449e419dad33a4594a425" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "62e580b68f5706a0" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2836" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:40 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740014052829434; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:40 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:40 UTC" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"just testing things out\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":null}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile.json?name=Tweepy+test+123&description=A+test+account+for+testing+stuff.&url=http%3A%2F%2Ft.co%2F3L9bWVrV0b&location=pytopia", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "816443de4a15259dfd8d0a96ea4ae108" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "fb88625b1596c00e" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2846" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:41 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740014100367662; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:41 UTC" ], "date": [ "Mon, 01 Dec 2014 02:15:41 UTC" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":null}" } } } ] }tweepy-3.5.0/cassettes/testupdateprofilebannerimage.yaml000066400000000000000000001311351265716604700236740ustar00rootroot00000000000000interactions: - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYmFubmVyIjsg ZmlsZW5hbWU9ImV4YW1wbGVzL2Jhbm5lci5wbmciDQpDb250ZW50LVR5cGU6IGltYWdlL3BuZw0K DQqJUE5HDQoaCgAAAA1JSERSAAAE5AAAAnIEAwAAAJYAAksAAAAbUExURczMzJaWlr6+vrGxscXF xaqqqre3t5ycnKOjoyqkoHcAAA6kSURBVHic7d3LkxvHeQDw1e5yzaNgm+IewZKr5KNhJtEVTIqk j1nJSfkIVkkVHwXnYR93Lbv8b4cLTPe8+gUJO+VUfr+LBfR8g8+cr7p7eh57cQEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJzf568/2qZarr/922r1p39P ttW9+91+9fKv3/zwxArufptpaEk5G8wy3q4ebRMt/7I/NK1e/sP4+09WCbtJ8PWXXcN/pnb9I12t Vr9KNuRSbgpmGTf7XMm97etp3C0kS+5fx8HXd7HlRWLfP9LmY1HtEt9nU24JZhmhNLazlqtsQbWU 3GbQ9OLcSd8cOrL1CSk3BLOQ/1hlSu76YXj8RoeooeR+M2r7w5mTfnXY6+0050LK9WAWEktjO235 YlxRnw2a6iV3uR837s6a9HUip0rK9WCWcROPz3bScjktqV3fVi+5V5PG8x7f991ef9aecjWYZQxG ou2kaVo0w6qpltzs4J+3mwtZ37enXA1mGR/6w7Mdt1zvZ1Wzjo3Vkns/a/3pGbN+1u3z5TjnYsq1 YJYxnONvx03P5zX1X7GxWnIPs9ZzHuHNLKF6yrVgFjFaUtiO2zazwzdY6qiV3FW5+UeKo/b6hJRr wSxhvKSwHbelimodWmsl9ybRfL6RNex9MlMrp1wJZhHjXmE7aksMUoMJd+2C13xcXa1uz5b3vtvj 5KJVOeVKMEv45fjgbEeN8eTvxS+ufx/+O3ZUXcn9PLPn/nz1q+27WH7rM+Ud5v/TGi6nXAlmAdP5 1nbUGgrlsEYfVljjzKhScrG/+cvFYFH4XJO5cJb93eT7csqVYJ7e9PLAuORiP3UYf8Lqw8vQXCm5 0N8cF1vDgsmZjvJ1MuFqyuVgFjBYkUschNBPdZPsMOded82Vkgv9ze7wKRzmM50/TFJrTbkczAI2 odRepEouHLDd8ePV+GOl5KYXMTdnPcwh8ek4XUm5HMwCwnB3u02VXHdo4mXI/fhIlUsuHO1wUviT rrbPkncYP2fz/0rK5WAW0F3Pv11fpEpuerzujp/vu4/lkpuW2LNzHudu5/PfrqRcDmYJD13FFUqu n3t3M79wBtBUcvF0oavul+mtT9R1ZvPbBCopl4NZwpuu4pIld3yCoC+pV6eUXPfQQ9zh5RlLLgyN 81G6knI5mCVcdRWXLLnjAxG7+LE7fp92HytnrIc7jfuzhXCkz5F1OOVMXJQvp1wJZgkP3SMnyZK7 uHkYTr7enFZyF78fTqLCGew5kg5D4zrRVky5FswC3u6O/5suuYvLh0FFndjLPV5N6/d3xl4uVG96 aCylXA1mOZmSu7he9/+9GU+M6iV38c/9f3aLJueYy4VLpJkrGYWU68EsJldyQ931hPvuY0PJDXRT qOQiyRfjMth31bnO7CpcSsu151M+LZgn1VByYUgKi7unlVw3q0o+3tLVWHc1LF4CzXVED81D4zTl k4J5Wg0lF64nrLvPp5XcZlhV6R/v6jHe3fJpatv+ebSGH56mfFIwT6uh5ML1y/A5ltz1t/vVH79f F/cf+ptkGYUaO070wtWBXMmF9ob7K6cpnxTM02ooubvjJnE2Fkrusmv4qrT/MGu/L/x41xvFuywz JfdhWJ9l05RPCuZp1UsurHLE1d2u5H56F0rkz4X9hzraFX68uza6qZTcfpLHCSmfEswTq5fc+2kh zJ99yI9W8enS0o93Jwxh00zJ3Qy3LZulfEowT6xecuGWy1hX85LL3yYSrjKl38cQd/B4ctE/M5Eu uTAb2128+7fKaxZnKZ8SzBOrllw8j4ybJJ7w+ksuetNtkD5RjPGPSxfP4qd0ycXZ2OPTNC9LpwHz lE8I5qlVSy7cs158dDrXzcX37KRvxO13cDE4Yc2U3P7Y+NnxJQOltxLOUz4hmKdWK7m4Ptv3U6nn WDP3dsenqNP7v4vxu+FrbJI7C+Pu/4QqPyXl9mCeXK3k4ittdvGrVMllXua2LzZf3Lx+fRerrPuv 71//U3LbMCsMu8zfhJRIuT2YJ1crufh8aP9V8mn95A7iI6332d/vhtNP49iXy2T22onsq3USKbcH 8+QqJRfn9INuoeVdwUd39QPczfY+C2Nf9lWDm9lPZnqqVMrNwTy9SsnFB153/XfJkktdQ40nD6UF 2P1hi9tQKdmFs/3sJzPnLKmUm4N5euWSi2tlwxswYsndfnPxLjGKRfGEoPTgaFch209mdZLOZCC5 1pFKuTmYBZRLLs6B7gdfhpI7PDxxEzqQ9Sw4njkWe5Ruvrc71mf2Gmi/atdLLvalUm4OZgHFkutf hjpsDwtox77r/ejT0Pumo9v1QPd3h//JDsGp0TxVysmUW4NZQrHk4hnnuBI+P4ym3UQ/DFrz9dv4 oq9dMYPjZj+fdU1j/ardwLox5dZgllAsubtweCYTn+tvB99tUlV5MRjNKu+7P46Et5U6iKkM3Tem 3BrMEkolF69Vzgehyy/j7LybPM3u8N40HtvhRCt/m/g+5vJN/pWFuZQbg1lEqeTickNqEStGdCUz nfjHFZLaquvwLb/ZWV+/0e4ieRG1lHJrMIsolFy/tLAu7eEyvYs4f6r2Jpu+5LKrKTejvcXM2lJu DGYZhZKLZ5yVW2mTddmfOe5qKQz+MkkqjYNn471tMvtOp9wYzDIKxzqecVZeAdhtNz7FiGeO9fGr f29x/kQjLMzcjvc+zSydcmMwy8iXXOHkYewudQRDV9JyYhg7xPxt4mFlrRulMyszmZTbgllIvuSK Jw+JDe+H3zWfPIx+aZfdJMwMQ10/jIqoknJbMAvJllw/GVtXdpF4l1s/qWo5rmHgKzzx92GSS/eb 41lmLuWmYJaSLbnMlYeExIu1Wq88HIWRrlCem0lRdmPleKKYS7kpmKVkSy4OUtVbLhIlF8fVtr+0 u0oU7djdpEqSbyDOpdwUzFJyJdd2G8hB4h0lyTtQssKsv1CfD5MtUq8Qy6bcEsxiciUXB6n67bOJ kgvjatv93mHiV6iB/XGLOPSmXpSYTbklmMXkSi4OUrOWmXnJxXG17aa0Tdg8P4bvJ/tLvQ42m3JL MIvJHKU4SDWc1s1LLo6ru5YU+kug+QqdbhBiBnnnU24IZjmZf/14jahhiX5ecnddcNs5YX8rSX77 boNPp18M8s6n3BDMcjL/+mH1tOWsblZy8cL5fVMKgyf+pmlM0yxVTT5lJfd3JfOvv+++b3n2brZI Epd2p3tNi2t4hRpdTco6MTbmU24IZjnpf/04/9+loy6HrzHsSq6/+hDm8W3L+8PHr7KLwftM1TSl XA9mQemSC/1UZnJ18zBcz5hd8Ar9TdutGnFtY1UYx/eTkpyvcxRSrgezoHTJbVbTMhp6fJBw13+c XtYPK7uNS63Hiv3ZMWad2ai+mltI2VLw35VkycX1hnUq5PAn2u77z5tJnxZOBxrv1Dj2Qd89FGq8 4ZpVKeVqMEtKllzxCtTVtJ66I7oLn0N/0/Y8fDcH+9Wxr8xN/zaTjmn2h4VLKVeDWVKy5EI/dZ+K eDXtIh7G3Uvobxo7ke74dy+IyA12mfuP+gIrpVwNZknJktskv+28mXRqYRfhY+hvTvpTJPE1OJmu MVRU9i7LUsrVYJaUPFKFQSqeYcblr8tJpxZu+24bV6/D4b8sFmo4H83eS15KuRrMklIlF/qpzPnq sTHOhJ5PDnbX3zSeD17Fn9oXyjxezZo8MXPflHItmEWlSq5/Y33K9E+yvRp1Iaf+UY83cWcfEplE k4XeD5McyinXgllUquRejTqFmbtxTe3H/UsYtu7bfv8u/n5XfJn141A146efY9rllCvBLCr1z1+Z Xofr58de4vnoU/953fTz132pdMNfZjJ3N+ypQj/VV1g55Uowi0qUXBg57zMhoahePAZdP0z28Oak A/q8L5XpachYvN0k+SabSsrlYJby+etH3b//1x//89ddQ5j6fP96JDQPXo36zcW70IHEs4muE7kd B79eJzLo38E//BteXyffwp96EWZfYZWUy8EsZX4Quobn85Zhc/p1bXE8fEg0rtIrEv1+DqPyJn5M zOeu57scDN6VlMvBLCV7gN7MW4bN6Q3CVC55dFfpkutbt+PdpjbezPfZX7GqpVwMZinZA/Rh3jI6 fv2iQ+9loe2gWHLH+Vv578YlOrL+ZsxaysVglpI9QJvK8UuNrHEufjWPy1bRJLr81zET3ec6NtZS LgazlOwByszGBiU37zR2+aZ8FcXGbk1vX9p4/o7pwWJzNeVSMEvJHqD9vGV8/Abvm+n0l6l+korM VFFs7CaCm9LG8yF7cPWgmnIpmKVkD1Dm8A3v2/5N9gB+kgytlNz2+PlNaePZhG14NbaeciGYpWQP UP34TWdzg1Hqh5RcOHl8Vtr441xvP9rjrvj/ZZpyIZilZA/Qft4yOX6Dv6P0aPgHdX/IwBrOPS5L G3/0drjD0d9Wb0g5H8xSsgeoukjy6Ko/yre7wfenLJKEXXyX/WLil/3+/jBqaEk5G8xSZmd54erm oJpSzZ2bEP/f69H3X6YP/n0igy+6tjgT3Bw/v1wnNj54G1L7avx9U8q5YP7P+Px3+9Uf//rr+oZn dP2Pf9uv/vT1evlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD4f+9/AVKOStPdjXi8AAAAAElFTkSuQmCCDQotLVR3M2VQeS0tDQo= headers: Content-Length: ['3974'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/account/update_profile_banner.json response: body: {string: ''} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['0'] content-security-policy-report-only: ['default-src ''self''; connect-src ''self''; font-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; frame-src ''self''; img-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; media-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; object-src ''none''; script-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; style-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; report-uri https://twitter.com/i/csp_report?a=OBZG6ZTJNRSWE2LSMQ%3D%3D%3D%3D%3D%3D&ro=true;'] content-type: [text/html;charset=utf-8] date: ['Sun, 30 Nov 2014 20:41:51 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Sun, 30 Nov 2014 20:41:50 GMT'] pragma: [no-cache] server: [tsa_b] set-cookie: [lang=en, 'guest_id=v1%3A141738011087701975; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:41:51 UTC'] status: [201 Created] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [5740085bc5a7abce8cf118d0a7c829e4] x-frame-options: [SAMEORIGIN] x-transaction: [2b0b55946eca69dd] x-xss-protection: [1; mode=block] status: {code: 201, message: Created} - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYmFubmVyIjsg ZmlsZW5hbWU9ImV4YW1wbGVzL2Jhbm5lci5wbmciDQpDb250ZW50LVR5cGU6IGltYWdlL3BuZw0K DQqJUE5HDQoaCgAAAA1JSERSAAAE5AAAAnIEAwAAAJYAAksAAAAbUExURczMzJaWlr6+vrGxscXF xaqqqre3t5ycnKOjoyqkoHcAAA6kSURBVHic7d3LkxvHeQDw1e5yzaNgm+IewZKr5KNhJtEVTIqk j1nJSfkIVkkVHwXnYR93Lbv8b4cLTPe8+gUJO+VUfr+LBfR8g8+cr7p7eh57cQEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJzf568/2qZarr/922r1p39P ttW9+91+9fKv3/zwxArufptpaEk5G8wy3q4ebRMt/7I/NK1e/sP4+09WCbtJ8PWXXcN/pnb9I12t Vr9KNuRSbgpmGTf7XMm97etp3C0kS+5fx8HXd7HlRWLfP9LmY1HtEt9nU24JZhmhNLazlqtsQbWU 3GbQ9OLcSd8cOrL1CSk3BLOQ/1hlSu76YXj8RoeooeR+M2r7w5mTfnXY6+0050LK9WAWEktjO235 YlxRnw2a6iV3uR837s6a9HUip0rK9WCWcROPz3bScjktqV3fVi+5V5PG8x7f991ef9aecjWYZQxG ou2kaVo0w6qpltzs4J+3mwtZ37enXA1mGR/6w7Mdt1zvZ1Wzjo3Vkns/a/3pGbN+1u3z5TjnYsq1 YJYxnONvx03P5zX1X7GxWnIPs9ZzHuHNLKF6yrVgFjFaUtiO2zazwzdY6qiV3FW5+UeKo/b6hJRr wSxhvKSwHbelimodWmsl9ybRfL6RNex9MlMrp1wJZhHjXmE7aksMUoMJd+2C13xcXa1uz5b3vtvj 5KJVOeVKMEv45fjgbEeN8eTvxS+ufx/+O3ZUXcn9PLPn/nz1q+27WH7rM+Ud5v/TGi6nXAlmAdP5 1nbUGgrlsEYfVljjzKhScrG/+cvFYFH4XJO5cJb93eT7csqVYJ7e9PLAuORiP3UYf8Lqw8vQXCm5 0N8cF1vDgsmZjvJ1MuFqyuVgFjBYkUschNBPdZPsMOded82Vkgv9ze7wKRzmM50/TFJrTbkczAI2 odRepEouHLDd8ePV+GOl5KYXMTdnPcwh8ek4XUm5HMwCwnB3u02VXHdo4mXI/fhIlUsuHO1wUviT rrbPkncYP2fz/0rK5WAW0F3Pv11fpEpuerzujp/vu4/lkpuW2LNzHudu5/PfrqRcDmYJD13FFUqu n3t3M79wBtBUcvF0oavul+mtT9R1ZvPbBCopl4NZwpuu4pIld3yCoC+pV6eUXPfQQ9zh5RlLLgyN 81G6knI5mCVcdRWXLLnjAxG7+LE7fp92HytnrIc7jfuzhXCkz5F1OOVMXJQvp1wJZgkP3SMnyZK7 uHkYTr7enFZyF78fTqLCGew5kg5D4zrRVky5FswC3u6O/5suuYvLh0FFndjLPV5N6/d3xl4uVG96 aCylXA1mOZmSu7he9/+9GU+M6iV38c/9f3aLJueYy4VLpJkrGYWU68EsJldyQ931hPvuY0PJDXRT qOQiyRfjMth31bnO7CpcSsu151M+LZgn1VByYUgKi7unlVw3q0o+3tLVWHc1LF4CzXVED81D4zTl k4J5Wg0lF64nrLvPp5XcZlhV6R/v6jHe3fJpatv+ebSGH56mfFIwT6uh5ML1y/A5ltz1t/vVH79f F/cf+ptkGYUaO070wtWBXMmF9ob7K6cpnxTM02ooubvjJnE2Fkrusmv4qrT/MGu/L/x41xvFuywz JfdhWJ9l05RPCuZp1UsurHLE1d2u5H56F0rkz4X9hzraFX68uza6qZTcfpLHCSmfEswTq5fc+2kh zJ99yI9W8enS0o93Jwxh00zJ3Qy3LZulfEowT6xecuGWy1hX85LL3yYSrjKl38cQd/B4ctE/M5Eu uTAb2128+7fKaxZnKZ8SzBOrllw8j4ybJJ7w+ksuetNtkD5RjPGPSxfP4qd0ycXZ2OPTNC9LpwHz lE8I5qlVSy7cs158dDrXzcX37KRvxO13cDE4Yc2U3P7Y+NnxJQOltxLOUz4hmKdWK7m4Ptv3U6nn WDP3dsenqNP7v4vxu+FrbJI7C+Pu/4QqPyXl9mCeXK3k4ittdvGrVMllXua2LzZf3Lx+fRerrPuv 71//U3LbMCsMu8zfhJRIuT2YJ1crufh8aP9V8mn95A7iI6332d/vhtNP49iXy2T22onsq3USKbcH 8+QqJRfn9INuoeVdwUd39QPczfY+C2Nf9lWDm9lPZnqqVMrNwTy9SsnFB153/XfJkktdQ40nD6UF 2P1hi9tQKdmFs/3sJzPnLKmUm4N5euWSi2tlwxswYsndfnPxLjGKRfGEoPTgaFch209mdZLOZCC5 1pFKuTmYBZRLLs6B7gdfhpI7PDxxEzqQ9Sw4njkWe5Ruvrc71mf2Gmi/atdLLvalUm4OZgHFkutf hjpsDwtox77r/ejT0Pumo9v1QPd3h//JDsGp0TxVysmUW4NZQrHk4hnnuBI+P4ym3UQ/DFrz9dv4 oq9dMYPjZj+fdU1j/ardwLox5dZgllAsubtweCYTn+tvB99tUlV5MRjNKu+7P46Et5U6iKkM3Tem 3BrMEkolF69Vzgehyy/j7LybPM3u8N40HtvhRCt/m/g+5vJN/pWFuZQbg1lEqeTickNqEStGdCUz nfjHFZLaquvwLb/ZWV+/0e4ieRG1lHJrMIsolFy/tLAu7eEyvYs4f6r2Jpu+5LKrKTejvcXM2lJu DGYZhZKLZ5yVW2mTddmfOe5qKQz+MkkqjYNn471tMvtOp9wYzDIKxzqecVZeAdhtNz7FiGeO9fGr f29x/kQjLMzcjvc+zSydcmMwy8iXXOHkYewudQRDV9JyYhg7xPxt4mFlrRulMyszmZTbgllIvuSK Jw+JDe+H3zWfPIx+aZfdJMwMQ10/jIqoknJbMAvJllw/GVtXdpF4l1s/qWo5rmHgKzzx92GSS/eb 41lmLuWmYJaSLbnMlYeExIu1Wq88HIWRrlCem0lRdmPleKKYS7kpmKVkSy4OUtVbLhIlF8fVtr+0 u0oU7djdpEqSbyDOpdwUzFJyJdd2G8hB4h0lyTtQssKsv1CfD5MtUq8Qy6bcEsxiciUXB6n67bOJ kgvjatv93mHiV6iB/XGLOPSmXpSYTbklmMXkSi4OUrOWmXnJxXG17aa0Tdg8P4bvJ/tLvQ42m3JL MIvJHKU4SDWc1s1LLo6ru5YU+kug+QqdbhBiBnnnU24IZjmZf/14jahhiX5ecnddcNs5YX8rSX77 boNPp18M8s6n3BDMcjL/+mH1tOWsblZy8cL5fVMKgyf+pmlM0yxVTT5lJfd3JfOvv+++b3n2brZI Epd2p3tNi2t4hRpdTco6MTbmU24IZjnpf/04/9+loy6HrzHsSq6/+hDm8W3L+8PHr7KLwftM1TSl XA9mQemSC/1UZnJ18zBcz5hd8Ar9TdutGnFtY1UYx/eTkpyvcxRSrgezoHTJbVbTMhp6fJBw13+c XtYPK7uNS63Hiv3ZMWad2ai+mltI2VLw35VkycX1hnUq5PAn2u77z5tJnxZOBxrv1Dj2Qd89FGq8 4ZpVKeVqMEtKllzxCtTVtJ66I7oLn0N/0/Y8fDcH+9Wxr8xN/zaTjmn2h4VLKVeDWVKy5EI/dZ+K eDXtIh7G3Uvobxo7ke74dy+IyA12mfuP+gIrpVwNZknJktskv+28mXRqYRfhY+hvTvpTJPE1OJmu MVRU9i7LUsrVYJaUPFKFQSqeYcblr8tJpxZu+24bV6/D4b8sFmo4H83eS15KuRrMklIlF/qpzPnq sTHOhJ5PDnbX3zSeD17Fn9oXyjxezZo8MXPflHItmEWlSq5/Y33K9E+yvRp1Iaf+UY83cWcfEplE k4XeD5McyinXgllUquRejTqFmbtxTe3H/UsYtu7bfv8u/n5XfJn141A146efY9rllCvBLCr1z1+Z Xofr58de4vnoU/953fTz132pdMNfZjJ3N+ypQj/VV1g55Uowi0qUXBg57zMhoahePAZdP0z28Oak A/q8L5XpachYvN0k+SabSsrlYJby+etH3b//1x//89ddQ5j6fP96JDQPXo36zcW70IHEs4muE7kd B79eJzLo38E//BteXyffwp96EWZfYZWUy8EsZX4Quobn85Zhc/p1bXE8fEg0rtIrEv1+DqPyJn5M zOeu57scDN6VlMvBLCV7gN7MW4bN6Q3CVC55dFfpkutbt+PdpjbezPfZX7GqpVwMZinZA/Rh3jI6 fv2iQ+9loe2gWHLH+Vv578YlOrL+ZsxaysVglpI9QJvK8UuNrHEufjWPy1bRJLr81zET3ec6NtZS LgazlOwByszGBiU37zR2+aZ8FcXGbk1vX9p4/o7pwWJzNeVSMEvJHqD9vGV8/Abvm+n0l6l+korM VFFs7CaCm9LG8yF7cPWgmnIpmKVkD1Dm8A3v2/5N9gB+kgytlNz2+PlNaePZhG14NbaeciGYpWQP UP34TWdzg1Hqh5RcOHl8Vtr441xvP9rjrvj/ZZpyIZilZA/Qft4yOX6Dv6P0aPgHdX/IwBrOPS5L G3/0drjD0d9Wb0g5H8xSsgeoukjy6Ko/yre7wfenLJKEXXyX/WLil/3+/jBqaEk5G8xSZmd54erm oJpSzZ2bEP/f69H3X6YP/n0igy+6tjgT3Bw/v1wnNj54G1L7avx9U8q5YP7P+Px3+9Uf//rr+oZn dP2Pf9uv/vT1evlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD4f+9/AVKOStPdjXi8AAAAAElFTkSuQmCCDQotLVR3M2VQeS0tDQo= headers: Content-Length: ['3974'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Cookie: [lang=en; guest_id=v1%3A141738011087701975] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/account/update_profile_banner.json response: body: {string: ''} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['0'] content-security-policy-report-only: ['default-src ''self''; connect-src ''self''; font-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; frame-src ''self''; img-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; media-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; object-src ''none''; script-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; style-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; report-uri https://twitter.com/i/csp_report?a=OBZG6ZTJNRSWE2LSMQ%3D%3D%3D%3D%3D%3D&ro=true;'] content-type: [text/html;charset=utf-8] date: ['Sun, 30 Nov 2014 20:41:56 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Sun, 30 Nov 2014 20:41:56 GMT'] pragma: [no-cache] server: [tsa_b] status: [201 Created] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [5740085bc5a7abce8cf118d0a7c829e4] x-frame-options: [SAMEORIGIN] x-transaction: [e3608ca22287e168] x-xss-protection: [1; mode=block] status: {code: 201, message: Created} - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYmFubmVyIjsg ZmlsZW5hbWU9ImV4YW1wbGVzL2Jhbm5lci5wbmciDQpDb250ZW50LVR5cGU6IGltYWdlL3BuZw0K DQqJUE5HDQoaCgAAAA1JSERSAAAE5AAAAnIEAwAAAJYAAksAAAAbUExURczMzJaWlr6+vrGxscXF xaqqqre3t5ycnKOjoyqkoHcAAA6kSURBVHic7d3LkxvHeQDw1e5yzaNgm+IewZKr5KNhJtEVTIqk j1nJSfkIVkkVHwXnYR93Lbv8b4cLTPe8+gUJO+VUfr+LBfR8g8+cr7p7eh57cQEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJzf568/2qZarr/922r1p39P ttW9+91+9fKv3/zwxArufptpaEk5G8wy3q4ebRMt/7I/NK1e/sP4+09WCbtJ8PWXXcN/pnb9I12t Vr9KNuRSbgpmGTf7XMm97etp3C0kS+5fx8HXd7HlRWLfP9LmY1HtEt9nU24JZhmhNLazlqtsQbWU 3GbQ9OLcSd8cOrL1CSk3BLOQ/1hlSu76YXj8RoeooeR+M2r7w5mTfnXY6+0050LK9WAWEktjO235 YlxRnw2a6iV3uR837s6a9HUip0rK9WCWcROPz3bScjktqV3fVi+5V5PG8x7f991ef9aecjWYZQxG ou2kaVo0w6qpltzs4J+3mwtZ37enXA1mGR/6w7Mdt1zvZ1Wzjo3Vkns/a/3pGbN+1u3z5TjnYsq1 YJYxnONvx03P5zX1X7GxWnIPs9ZzHuHNLKF6yrVgFjFaUtiO2zazwzdY6qiV3FW5+UeKo/b6hJRr wSxhvKSwHbelimodWmsl9ybRfL6RNex9MlMrp1wJZhHjXmE7aksMUoMJd+2C13xcXa1uz5b3vtvj 5KJVOeVKMEv45fjgbEeN8eTvxS+ufx/+O3ZUXcn9PLPn/nz1q+27WH7rM+Ud5v/TGi6nXAlmAdP5 1nbUGgrlsEYfVljjzKhScrG/+cvFYFH4XJO5cJb93eT7csqVYJ7e9PLAuORiP3UYf8Lqw8vQXCm5 0N8cF1vDgsmZjvJ1MuFqyuVgFjBYkUschNBPdZPsMOded82Vkgv9ze7wKRzmM50/TFJrTbkczAI2 odRepEouHLDd8ePV+GOl5KYXMTdnPcwh8ek4XUm5HMwCwnB3u02VXHdo4mXI/fhIlUsuHO1wUviT rrbPkncYP2fz/0rK5WAW0F3Pv11fpEpuerzujp/vu4/lkpuW2LNzHudu5/PfrqRcDmYJD13FFUqu n3t3M79wBtBUcvF0oavul+mtT9R1ZvPbBCopl4NZwpuu4pIld3yCoC+pV6eUXPfQQ9zh5RlLLgyN 81G6knI5mCVcdRWXLLnjAxG7+LE7fp92HytnrIc7jfuzhXCkz5F1OOVMXJQvp1wJZgkP3SMnyZK7 uHkYTr7enFZyF78fTqLCGew5kg5D4zrRVky5FswC3u6O/5suuYvLh0FFndjLPV5N6/d3xl4uVG96 aCylXA1mOZmSu7he9/+9GU+M6iV38c/9f3aLJueYy4VLpJkrGYWU68EsJldyQ931hPvuY0PJDXRT qOQiyRfjMth31bnO7CpcSsu151M+LZgn1VByYUgKi7unlVw3q0o+3tLVWHc1LF4CzXVED81D4zTl k4J5Wg0lF64nrLvPp5XcZlhV6R/v6jHe3fJpatv+ebSGH56mfFIwT6uh5ML1y/A5ltz1t/vVH79f F/cf+ptkGYUaO070wtWBXMmF9ob7K6cpnxTM02ooubvjJnE2Fkrusmv4qrT/MGu/L/x41xvFuywz JfdhWJ9l05RPCuZp1UsurHLE1d2u5H56F0rkz4X9hzraFX68uza6qZTcfpLHCSmfEswTq5fc+2kh zJ99yI9W8enS0o93Jwxh00zJ3Qy3LZulfEowT6xecuGWy1hX85LL3yYSrjKl38cQd/B4ctE/M5Eu uTAb2128+7fKaxZnKZ8SzBOrllw8j4ybJJ7w+ksuetNtkD5RjPGPSxfP4qd0ycXZ2OPTNC9LpwHz lE8I5qlVSy7cs158dDrXzcX37KRvxO13cDE4Yc2U3P7Y+NnxJQOltxLOUz4hmKdWK7m4Ptv3U6nn WDP3dsenqNP7v4vxu+FrbJI7C+Pu/4QqPyXl9mCeXK3k4ittdvGrVMllXua2LzZf3Lx+fRerrPuv 71//U3LbMCsMu8zfhJRIuT2YJ1crufh8aP9V8mn95A7iI6332d/vhtNP49iXy2T22onsq3USKbcH 8+QqJRfn9INuoeVdwUd39QPczfY+C2Nf9lWDm9lPZnqqVMrNwTy9SsnFB153/XfJkktdQ40nD6UF 2P1hi9tQKdmFs/3sJzPnLKmUm4N5euWSi2tlwxswYsndfnPxLjGKRfGEoPTgaFch209mdZLOZCC5 1pFKuTmYBZRLLs6B7gdfhpI7PDxxEzqQ9Sw4njkWe5Ruvrc71mf2Gmi/atdLLvalUm4OZgHFkutf hjpsDwtox77r/ejT0Pumo9v1QPd3h//JDsGp0TxVysmUW4NZQrHk4hnnuBI+P4ym3UQ/DFrz9dv4 oq9dMYPjZj+fdU1j/ardwLox5dZgllAsubtweCYTn+tvB99tUlV5MRjNKu+7P46Et5U6iKkM3Tem 3BrMEkolF69Vzgehyy/j7LybPM3u8N40HtvhRCt/m/g+5vJN/pWFuZQbg1lEqeTickNqEStGdCUz nfjHFZLaquvwLb/ZWV+/0e4ieRG1lHJrMIsolFy/tLAu7eEyvYs4f6r2Jpu+5LKrKTejvcXM2lJu DGYZhZKLZ5yVW2mTddmfOe5qKQz+MkkqjYNn471tMvtOp9wYzDIKxzqecVZeAdhtNz7FiGeO9fGr f29x/kQjLMzcjvc+zSydcmMwy8iXXOHkYewudQRDV9JyYhg7xPxt4mFlrRulMyszmZTbgllIvuSK Jw+JDe+H3zWfPIx+aZfdJMwMQ10/jIqoknJbMAvJllw/GVtXdpF4l1s/qWo5rmHgKzzx92GSS/eb 41lmLuWmYJaSLbnMlYeExIu1Wq88HIWRrlCem0lRdmPleKKYS7kpmKVkSy4OUtVbLhIlF8fVtr+0 u0oU7djdpEqSbyDOpdwUzFJyJdd2G8hB4h0lyTtQssKsv1CfD5MtUq8Qy6bcEsxiciUXB6n67bOJ kgvjatv93mHiV6iB/XGLOPSmXpSYTbklmMXkSi4OUrOWmXnJxXG17aa0Tdg8P4bvJ/tLvQ42m3JL MIvJHKU4SDWc1s1LLo6ru5YU+kug+QqdbhBiBnnnU24IZjmZf/14jahhiX5ecnddcNs5YX8rSX77 boNPp18M8s6n3BDMcjL/+mH1tOWsblZy8cL5fVMKgyf+pmlM0yxVTT5lJfd3JfOvv+++b3n2brZI Epd2p3tNi2t4hRpdTco6MTbmU24IZjnpf/04/9+loy6HrzHsSq6/+hDm8W3L+8PHr7KLwftM1TSl XA9mQemSC/1UZnJ18zBcz5hd8Ar9TdutGnFtY1UYx/eTkpyvcxRSrgezoHTJbVbTMhp6fJBw13+c XtYPK7uNS63Hiv3ZMWad2ai+mltI2VLw35VkycX1hnUq5PAn2u77z5tJnxZOBxrv1Dj2Qd89FGq8 4ZpVKeVqMEtKllzxCtTVtJ66I7oLn0N/0/Y8fDcH+9Wxr8xN/zaTjmn2h4VLKVeDWVKy5EI/dZ+K eDXtIh7G3Uvobxo7ke74dy+IyA12mfuP+gIrpVwNZknJktskv+28mXRqYRfhY+hvTvpTJPE1OJmu MVRU9i7LUsrVYJaUPFKFQSqeYcblr8tJpxZu+24bV6/D4b8sFmo4H83eS15KuRrMklIlF/qpzPnq sTHOhJ5PDnbX3zSeD17Fn9oXyjxezZo8MXPflHItmEWlSq5/Y33K9E+yvRp1Iaf+UY83cWcfEplE k4XeD5McyinXgllUquRejTqFmbtxTe3H/UsYtu7bfv8u/n5XfJn141A146efY9rllCvBLCr1z1+Z Xofr58de4vnoU/953fTz132pdMNfZjJ3N+ypQj/VV1g55Uowi0qUXBg57zMhoahePAZdP0z28Oak A/q8L5XpachYvN0k+SabSsrlYJby+etH3b//1x//89ddQ5j6fP96JDQPXo36zcW70IHEs4muE7kd B79eJzLo38E//BteXyffwp96EWZfYZWUy8EsZX4Quobn85Zhc/p1bXE8fEg0rtIrEv1+DqPyJn5M zOeu57scDN6VlMvBLCV7gN7MW4bN6Q3CVC55dFfpkutbt+PdpjbezPfZX7GqpVwMZinZA/Rh3jI6 fv2iQ+9loe2gWHLH+Vv578YlOrL+ZsxaysVglpI9QJvK8UuNrHEufjWPy1bRJLr81zET3ec6NtZS LgazlOwByszGBiU37zR2+aZ8FcXGbk1vX9p4/o7pwWJzNeVSMEvJHqD9vGV8/Abvm+n0l6l+korM VFFs7CaCm9LG8yF7cPWgmnIpmKVkD1Dm8A3v2/5N9gB+kgytlNz2+PlNaePZhG14NbaeciGYpWQP UP34TWdzg1Hqh5RcOHl8Vtr441xvP9rjrvj/ZZpyIZilZA/Qft4yOX6Dv6P0aPgHdX/IwBrOPS5L G3/0drjD0d9Wb0g5H8xSsgeoukjy6Ko/yre7wfenLJKEXXyX/WLil/3+/jBqaEk5G8xSZmd54erm oJpSzZ2bEP/f69H3X6YP/n0igy+6tjgT3Bw/v1wnNj54G1L7avx9U8q5YP7P+Px3+9Uf//rr+oZn dP2Pf9uv/vT1evlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD4f+9/AVKOStPdjXi8AAAAAElFTkSuQmCCDQotLVR3M2VQeS0tDQo= headers: Content-Length: ['3974'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Cookie: [lang=en; guest_id=v1%3A141738011087701975] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/account/update_profile_banner.json response: body: {string: ''} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['0'] content-security-policy-report-only: ['default-src ''self''; connect-src ''self''; font-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; frame-src ''self''; img-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; media-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; object-src ''none''; script-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; style-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; report-uri https://twitter.com/i/csp_report?a=OBZG6ZTJNRSWE2LSMQ%3D%3D%3D%3D%3D%3D&ro=true;'] content-type: [text/html;charset=utf-8] date: ['Sun, 30 Nov 2014 20:42:02 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Sun, 30 Nov 2014 20:42:02 GMT'] pragma: [no-cache] server: [tsa_b] status: [201 Created] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [5740085bc5a7abce8cf118d0a7c829e4] x-frame-options: [SAMEORIGIN] x-transaction: [db4ae0a9df038bf7] x-xss-protection: [1; mode=block] status: {code: 201, message: Created} - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYmFubmVyIjsg ZmlsZW5hbWU9ImInZXhhbXBsZXMvYmFubmVyLnBuZyciDQpDb250ZW50LVR5cGU6IGltYWdlL3Bu Zw0KDQqJUE5HDQoaCgAAAA1JSERSAAAE5AAAAnIEAwAAAJYAAksAAAAbUExURczMzJaWlr6+vrGx scXFxaqqqre3t5ycnKOjoyqkoHcAAA6kSURBVHic7d3LkxvHeQDw1e5yzaNgm+IewZKr5KNhJtEV TIqkj1nJSfkIVkkVHwXnYR93Lbv8b4cLTPe8+gUJO+VUfr+LBfR8g8+cr7p7eh57cQEAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJzf568/2qZarr/922r1 p39PttW9+91+9fKv3/zwxArufptpaEk5G8wy3q4ebRMt/7I/NK1e/sP4+09WCbtJ8PWXXcN/pnb9 I12tVr9KNuRSbgpmGTf7XMm97etp3C0kS+5fx8HXd7HlRWLfP9LmY1HtEt9nU24JZhmhNLazlqts QbWU3GbQ9OLcSd8cOrL1CSk3BLOQ/1hlSu76YXj8RoeooeR+M2r7w5mTfnXY6+0050LK9WAWEktj O235YlxRnw2a6iV3uR837s6a9HUip0rK9WCWcROPz3bScjktqV3fVi+5V5PG8x7f991ef9aecjWY ZQxGou2kaVo0w6qpltzs4J+3mwtZ37enXA1mGR/6w7Mdt1zvZ1Wzjo3Vkns/a/3pGbN+1u3z5Tjn Ysq1YJYxnONvx03P5zX1X7GxWnIPs9ZzHuHNLKF6yrVgFjFaUtiO2zazwzdY6qiV3FW5+UeKo/b6 hJRrwSxhvKSwHbelimodWmsl9ybRfL6RNex9MlMrp1wJZhHjXmE7aksMUoMJd+2C13xcXa1uz5b3 vtvj5KJVOeVKMEv45fjgbEeN8eTvxS+ufx/+O3ZUXcn9PLPn/nz1q+27WH7rM+Ud5v/TGi6nXAlm AdP51nbUGgrlsEYfVljjzKhScrG/+cvFYFH4XJO5cJb93eT7csqVYJ7e9PLAuORiP3UYf8Lqw8vQ XCm50N8cF1vDgsmZjvJ1MuFqyuVgFjBYkUschNBPdZPsMOded82Vkgv9ze7wKRzmM50/TFJrTbkc zAI2odRepEouHLDd8ePV+GOl5KYXMTdnPcwh8ek4XUm5HMwCwnB3u02VXHdo4mXI/fhIlUsuHO1w UviTrrbPkncYP2fz/0rK5WAW0F3Pv11fpEpuerzujp/vu4/lkpuW2LNzHudu5/PfrqRcDmYJD13F FUqun3t3M79wBtBUcvF0oavul+mtT9R1ZvPbBCopl4NZwpuu4pIld3yCoC+pV6eUXPfQQ9zh5RlL LgyN81G6knI5mCVcdRWXLLnjAxG7+LE7fp92HytnrIc7jfuzhXCkz5F1OOVMXJQvp1wJZgkP3SMn yZK7uHkYTr7enFZyF78fTqLCGew5kg5D4zrRVky5FswC3u6O/5suuYvLh0FFndjLPV5N6/d3xl4u VG96aCylXA1mOZmSu7he9/+9GU+M6iV38c/9f3aLJueYy4VLpJkrGYWU68EsJldyQ931hPvuY0PJ DXRTqOQiyRfjMth31bnO7CpcSsu151M+LZgn1VByYUgKi7unlVw3q0o+3tLVWHc1LF4CzXVED81D 4zTlk4J5Wg0lF64nrLvPp5XcZlhV6R/v6jHe3fJpatv+ebSGH56mfFIwT6uh5ML1y/A5ltz1t/vV H79fF/cf+ptkGYUaO070wtWBXMmF9ob7K6cpnxTM02ooubvjJnE2Fkrusmv4qrT/MGu/L/x41xvF uywzJfdhWJ9l05RPCuZp1UsurHLE1d2u5H56F0rkz4X9hzraFX68uza6qZTcfpLHCSmfEswTq5fc +2khzJ99yI9W8enS0o93Jwxh00zJ3Qy3LZulfEowT6xecuGWy1hX85LL3yYSrjKl38cQd/B4ctE/ M5EuuTAb2128+7fKaxZnKZ8SzBOrllw8j4ybJJ7w+ksuetNtkD5RjPGPSxfP4qd0ycXZ2OPTNC9L pwHzlE8I5qlVSy7cs158dDrXzcX37KRvxO13cDE4Yc2U3P7Y+NnxJQOltxLOUz4hmKdWK7m4Ptv3 U6nnWDP3dsenqNP7v4vxu+FrbJI7C+Pu/4QqPyXl9mCeXK3k4ittdvGrVMllXua2LzZf3Lx+fRer rPuv71//U3LbMCsMu8zfhJRIuT2YJ1crufh8aP9V8mn95A7iI6332d/vhtNP49iXy2T22onsq3US KbcH8+QqJRfn9INuoeVdwUd39QPczfY+C2Nf9lWDm9lPZnqqVMrNwTy9SsnFB153/XfJkktdQ40n D6UF2P1hi9tQKdmFs/3sJzPnLKmUm4N5euWSi2tlwxswYsndfnPxLjGKRfGEoPTgaFch209mdZLO ZCC51pFKuTmYBZRLLs6B7gdfhpI7PDxxEzqQ9Sw4njkWe5Ruvrc71mf2Gmi/atdLLvalUm4OZgHF kutfhjpsDwtox77r/ejT0Pumo9v1QPd3h//JDsGp0TxVysmUW4NZQrHk4hnnuBI+P4ym3UQ/DFrz 9dv4oq9dMYPjZj+fdU1j/ardwLox5dZgllAsubtweCYTn+tvB99tUlV5MRjNKu+7P46Et5U6iKkM 3Tem3BrMEkolF69Vzgehyy/j7LybPM3u8N40HtvhRCt/m/g+5vJN/pWFuZQbg1lEqeTickNqEStG dCUznfjHFZLaquvwLb/ZWV+/0e4ieRG1lHJrMIsolFy/tLAu7eEyvYs4f6r2Jpu+5LKrKTejvcXM 2lJuDGYZhZKLZ5yVW2mTddmfOe5qKQz+MkkqjYNn471tMvtOp9wYzDIKxzqecVZeAdhtNz7FiGeO 9fGrf29x/kQjLMzcjvc+zSydcmMwy8iXXOHkYewudQRDV9JyYhg7xPxt4mFlrRulMyszmZTbgllI vuSKJw+JDe+H3zWfPIx+aZfdJMwMQ10/jIqoknJbMAvJllw/GVtXdpF4l1s/qWo5rmHgKzzx92GS S/eb41lmLuWmYJaSLbnMlYeExIu1Wq88HIWRrlCem0lRdmPleKKYS7kpmKVkSy4OUtVbLhIlF8fV tr+0u0oU7djdpEqSbyDOpdwUzFJyJdd2G8hB4h0lyTtQssKsv1CfD5MtUq8Qy6bcEsxiciUXB6n6 7bOJkgvjatv93mHiV6iB/XGLOPSmXpSYTbklmMXkSi4OUrOWmXnJxXG17aa0Tdg8P4bvJ/tLvQ42 m3JLMIvJHKU4SDWc1s1LLo6ru5YU+kug+QqdbhBiBnnnU24IZjmZf/14jahhiX5ecnddcNs5YX8r SX77boNPp18M8s6n3BDMcjL/+mH1tOWsblZy8cL5fVMKgyf+pmlM0yxVTT5lJfd3JfOvv+++b3n2 brZIEpd2p3tNi2t4hRpdTco6MTbmU24IZjnpf/04/9+loy6HrzHsSq6/+hDm8W3L+8PHr7KLwftM 1TSlXA9mQemSC/1UZnJ18zBcz5hd8Ar9TdutGnFtY1UYx/eTkpyvcxRSrgezoHTJbVbTMhp6fJBw 13+cXtYPK7uNS63Hiv3ZMWad2ai+mltI2VLw35VkycX1hnUq5PAn2u77z5tJnxZOBxrv1Dj2Qd89 FGq84ZpVKeVqMEtKllzxCtTVtJ66I7oLn0N/0/Y8fDcH+9Wxr8xN/zaTjmn2h4VLKVeDWVKy5EI/ dZ+KeDXtIh7G3Uvobxo7ke74dy+IyA12mfuP+gIrpVwNZknJktskv+28mXRqYRfhY+hvTvpTJPE1 OJmuMVRU9i7LUsrVYJaUPFKFQSqeYcblr8tJpxZu+24bV6/D4b8sFmo4H83eS15KuRrMklIlF/qp zPnqsTHOhJ5PDnbX3zSeD17Fn9oXyjxezZo8MXPflHItmEWlSq5/Y33K9E+yvRp1Iaf+UY83cWcf EplEk4XeD5McyinXgllUquRejTqFmbtxTe3H/UsYtu7bfv8u/n5XfJn141A146efY9rllCvBLCr1 z1+ZXofr58de4vnoU/953fTz132pdMNfZjJ3N+ypQj/VV1g55Uowi0qUXBg57zMhoahePAZdP0z2 8OakA/q8L5XpachYvN0k+SabSsrlYJby+etH3b//1x//89ddQ5j6fP96JDQPXo36zcW70IHEs4mu E7kdB79eJzLo38E//BteXyffwp96EWZfYZWUy8EsZX4Quobn85Zhc/p1bXE8fEg0rtIrEv1+DqPy Jn5MzOeu57scDN6VlMvBLCV7gN7MW4bN6Q3CVC55dFfpkutbt+PdpjbezPfZX7GqpVwMZinZA/Rh 3jI6fv2iQ+9loe2gWHLH+Vv578YlOrL+ZsxaysVglpI9QJvK8UuNrHEufjWPy1bRJLr81zET3ec6 NtZSLgazlOwByszGBiU37zR2+aZ8FcXGbk1vX9p4/o7pwWJzNeVSMEvJHqD9vGV8/Abvm+n0l6l+ korMVFFs7CaCm9LG8yF7cPWgmnIpmKVkD1Dm8A3v2/5N9gB+kgytlNz2+PlNaePZhG14NbaeciGY pWQPUP34TWdzg1Hqh5RcOHl8Vtr441xvP9rjrvj/ZZpyIZilZA/Qft4yOX6Dv6P0aPgHdX/IwBrO PS5LG3/0drjD0d9Wb0g5H8xSsgeoukjy6Ko/yre7wfenLJKEXXyX/WLil/3+/jBqaEk5G8xSZmd5 4ermoJpSzZ2bEP/f69H3X6YP/n0igy+6tjgT3Bw/v1wnNj54G1L7avx9U8q5YP7P+Px3+9Uf//rr +oZndP2Pf9uv/vT1evlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAD4f+9/AVKOStPdjXi8AAAAAElFTkSuQmCCDQotLVR3M2VQeS0tDQo= headers: Content-Length: ['3977'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/account/update_profile_banner.json response: body: {string: ''} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['0'] content-security-policy-report-only: ['default-src ''self''; connect-src ''self''; font-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; frame-src ''self''; img-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; media-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; object-src ''none''; script-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; style-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; report-uri https://twitter.com/i/csp_report?a=OBZG6ZTJNRSWE2LSMQ%3D%3D%3D%3D%3D%3D&ro=true;'] content-type: [text/html;charset=utf-8] date: ['Mon, 01 Dec 2014 02:15:42 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Mon, 01 Dec 2014 02:15:41 GMT'] pragma: [no-cache] server: [tsa_b] set-cookie: [lang=en, 'guest_id=v1%3A141740014177980233; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:42 UTC'] status: [201 Created] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [5dd57c03062603f2121b2e02cf85b2f7] x-frame-options: [SAMEORIGIN] x-transaction: [45f0045fd64cc410] x-xss-protection: [1; mode=block] status: {code: 201, message: Created} - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYmFubmVyIjsg ZmlsZW5hbWU9ImInZXhhbXBsZXMvYmFubmVyLnBuZyciDQpDb250ZW50LVR5cGU6IGltYWdlL3Bu Zw0KDQqJUE5HDQoaCgAAAA1JSERSAAAE5AAAAnIEAwAAAJYAAksAAAAbUExURczMzJaWlr6+vrGx scXFxaqqqre3t5ycnKOjoyqkoHcAAA6kSURBVHic7d3LkxvHeQDw1e5yzaNgm+IewZKr5KNhJtEV TIqkj1nJSfkIVkkVHwXnYR93Lbv8b4cLTPe8+gUJO+VUfr+LBfR8g8+cr7p7eh57cQEAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJzf568/2qZarr/922r1 p39PttW9+91+9fKv3/zwxArufptpaEk5G8wy3q4ebRMt/7I/NK1e/sP4+09WCbtJ8PWXXcN/pnb9 I12tVr9KNuRSbgpmGTf7XMm97etp3C0kS+5fx8HXd7HlRWLfP9LmY1HtEt9nU24JZhmhNLazlqts QbWU3GbQ9OLcSd8cOrL1CSk3BLOQ/1hlSu76YXj8RoeooeR+M2r7w5mTfnXY6+0050LK9WAWEktj O235YlxRnw2a6iV3uR837s6a9HUip0rK9WCWcROPz3bScjktqV3fVi+5V5PG8x7f991ef9aecjWY ZQxGou2kaVo0w6qpltzs4J+3mwtZ37enXA1mGR/6w7Mdt1zvZ1Wzjo3Vkns/a/3pGbN+1u3z5Tjn Ysq1YJYxnONvx03P5zX1X7GxWnIPs9ZzHuHNLKF6yrVgFjFaUtiO2zazwzdY6qiV3FW5+UeKo/b6 hJRrwSxhvKSwHbelimodWmsl9ybRfL6RNex9MlMrp1wJZhHjXmE7aksMUoMJd+2C13xcXa1uz5b3 vtvj5KJVOeVKMEv45fjgbEeN8eTvxS+ufx/+O3ZUXcn9PLPn/nz1q+27WH7rM+Ud5v/TGi6nXAlm AdP51nbUGgrlsEYfVljjzKhScrG/+cvFYFH4XJO5cJb93eT7csqVYJ7e9PLAuORiP3UYf8Lqw8vQ XCm50N8cF1vDgsmZjvJ1MuFqyuVgFjBYkUschNBPdZPsMOded82Vkgv9ze7wKRzmM50/TFJrTbkc zAI2odRepEouHLDd8ePV+GOl5KYXMTdnPcwh8ek4XUm5HMwCwnB3u02VXHdo4mXI/fhIlUsuHO1w UviTrrbPkncYP2fz/0rK5WAW0F3Pv11fpEpuerzujp/vu4/lkpuW2LNzHudu5/PfrqRcDmYJD13F FUqun3t3M79wBtBUcvF0oavul+mtT9R1ZvPbBCopl4NZwpuu4pIld3yCoC+pV6eUXPfQQ9zh5RlL LgyN81G6knI5mCVcdRWXLLnjAxG7+LE7fp92HytnrIc7jfuzhXCkz5F1OOVMXJQvp1wJZgkP3SMn yZK7uHkYTr7enFZyF78fTqLCGew5kg5D4zrRVky5FswC3u6O/5suuYvLh0FFndjLPV5N6/d3xl4u VG96aCylXA1mOZmSu7he9/+9GU+M6iV38c/9f3aLJueYy4VLpJkrGYWU68EsJldyQ931hPvuY0PJ DXRTqOQiyRfjMth31bnO7CpcSsu151M+LZgn1VByYUgKi7unlVw3q0o+3tLVWHc1LF4CzXVED81D 4zTlk4J5Wg0lF64nrLvPp5XcZlhV6R/v6jHe3fJpatv+ebSGH56mfFIwT6uh5ML1y/A5ltz1t/vV H79fF/cf+ptkGYUaO070wtWBXMmF9ob7K6cpnxTM02ooubvjJnE2Fkrusmv4qrT/MGu/L/x41xvF uywzJfdhWJ9l05RPCuZp1UsurHLE1d2u5H56F0rkz4X9hzraFX68uza6qZTcfpLHCSmfEswTq5fc +2khzJ99yI9W8enS0o93Jwxh00zJ3Qy3LZulfEowT6xecuGWy1hX85LL3yYSrjKl38cQd/B4ctE/ M5EuuTAb2128+7fKaxZnKZ8SzBOrllw8j4ybJJ7w+ksuetNtkD5RjPGPSxfP4qd0ycXZ2OPTNC9L pwHzlE8I5qlVSy7cs158dDrXzcX37KRvxO13cDE4Yc2U3P7Y+NnxJQOltxLOUz4hmKdWK7m4Ptv3 U6nnWDP3dsenqNP7v4vxu+FrbJI7C+Pu/4QqPyXl9mCeXK3k4ittdvGrVMllXua2LzZf3Lx+fRer rPuv71//U3LbMCsMu8zfhJRIuT2YJ1crufh8aP9V8mn95A7iI6332d/vhtNP49iXy2T22onsq3US KbcH8+QqJRfn9INuoeVdwUd39QPczfY+C2Nf9lWDm9lPZnqqVMrNwTy9SsnFB153/XfJkktdQ40n D6UF2P1hi9tQKdmFs/3sJzPnLKmUm4N5euWSi2tlwxswYsndfnPxLjGKRfGEoPTgaFch209mdZLO ZCC51pFKuTmYBZRLLs6B7gdfhpI7PDxxEzqQ9Sw4njkWe5Ruvrc71mf2Gmi/atdLLvalUm4OZgHF kutfhjpsDwtox77r/ejT0Pumo9v1QPd3h//JDsGp0TxVysmUW4NZQrHk4hnnuBI+P4ym3UQ/DFrz 9dv4oq9dMYPjZj+fdU1j/ardwLox5dZgllAsubtweCYTn+tvB99tUlV5MRjNKu+7P46Et5U6iKkM 3Tem3BrMEkolF69Vzgehyy/j7LybPM3u8N40HtvhRCt/m/g+5vJN/pWFuZQbg1lEqeTickNqEStG dCUznfjHFZLaquvwLb/ZWV+/0e4ieRG1lHJrMIsolFy/tLAu7eEyvYs4f6r2Jpu+5LKrKTejvcXM 2lJuDGYZhZKLZ5yVW2mTddmfOe5qKQz+MkkqjYNn471tMvtOp9wYzDIKxzqecVZeAdhtNz7FiGeO 9fGrf29x/kQjLMzcjvc+zSydcmMwy8iXXOHkYewudQRDV9JyYhg7xPxt4mFlrRulMyszmZTbgllI vuSKJw+JDe+H3zWfPIx+aZfdJMwMQ10/jIqoknJbMAvJllw/GVtXdpF4l1s/qWo5rmHgKzzx92GS S/eb41lmLuWmYJaSLbnMlYeExIu1Wq88HIWRrlCem0lRdmPleKKYS7kpmKVkSy4OUtVbLhIlF8fV tr+0u0oU7djdpEqSbyDOpdwUzFJyJdd2G8hB4h0lyTtQssKsv1CfD5MtUq8Qy6bcEsxiciUXB6n6 7bOJkgvjatv93mHiV6iB/XGLOPSmXpSYTbklmMXkSi4OUrOWmXnJxXG17aa0Tdg8P4bvJ/tLvQ42 m3JLMIvJHKU4SDWc1s1LLo6ru5YU+kug+QqdbhBiBnnnU24IZjmZf/14jahhiX5ecnddcNs5YX8r SX77boNPp18M8s6n3BDMcjL/+mH1tOWsblZy8cL5fVMKgyf+pmlM0yxVTT5lJfd3JfOvv+++b3n2 brZIEpd2p3tNi2t4hRpdTco6MTbmU24IZjnpf/04/9+loy6HrzHsSq6/+hDm8W3L+8PHr7KLwftM 1TSlXA9mQemSC/1UZnJ18zBcz5hd8Ar9TdutGnFtY1UYx/eTkpyvcxRSrgezoHTJbVbTMhp6fJBw 13+cXtYPK7uNS63Hiv3ZMWad2ai+mltI2VLw35VkycX1hnUq5PAn2u77z5tJnxZOBxrv1Dj2Qd89 FGq84ZpVKeVqMEtKllzxCtTVtJ66I7oLn0N/0/Y8fDcH+9Wxr8xN/zaTjmn2h4VLKVeDWVKy5EI/ dZ+KeDXtIh7G3Uvobxo7ke74dy+IyA12mfuP+gIrpVwNZknJktskv+28mXRqYRfhY+hvTvpTJPE1 OJmuMVRU9i7LUsrVYJaUPFKFQSqeYcblr8tJpxZu+24bV6/D4b8sFmo4H83eS15KuRrMklIlF/qp zPnqsTHOhJ5PDnbX3zSeD17Fn9oXyjxezZo8MXPflHItmEWlSq5/Y33K9E+yvRp1Iaf+UY83cWcf EplEk4XeD5McyinXgllUquRejTqFmbtxTe3H/UsYtu7bfv8u/n5XfJn141A146efY9rllCvBLCr1 z1+ZXofr58de4vnoU/953fTz132pdMNfZjJ3N+ypQj/VV1g55Uowi0qUXBg57zMhoahePAZdP0z2 8OakA/q8L5XpachYvN0k+SabSsrlYJby+etH3b//1x//89ddQ5j6fP96JDQPXo36zcW70IHEs4mu E7kdB79eJzLo38E//BteXyffwp96EWZfYZWUy8EsZX4Quobn85Zhc/p1bXE8fEg0rtIrEv1+DqPy Jn5MzOeu57scDN6VlMvBLCV7gN7MW4bN6Q3CVC55dFfpkutbt+PdpjbezPfZX7GqpVwMZinZA/Rh 3jI6fv2iQ+9loe2gWHLH+Vv578YlOrL+ZsxaysVglpI9QJvK8UuNrHEufjWPy1bRJLr81zET3ec6 NtZSLgazlOwByszGBiU37zR2+aZ8FcXGbk1vX9p4/o7pwWJzNeVSMEvJHqD9vGV8/Abvm+n0l6l+ korMVFFs7CaCm9LG8yF7cPWgmnIpmKVkD1Dm8A3v2/5N9gB+kgytlNz2+PlNaePZhG14NbaeciGY pWQPUP34TWdzg1Hqh5RcOHl8Vtr441xvP9rjrvj/ZZpyIZilZA/Qft4yOX6Dv6P0aPgHdX/IwBrO PS5LG3/0drjD0d9Wb0g5H8xSsgeoukjy6Ko/yre7wfenLJKEXXyX/WLil/3+/jBqaEk5G8xSZmd5 4ermoJpSzZ2bEP/f69H3X6YP/n0igy+6tjgT3Bw/v1wnNj54G1L7avx9U8q5YP7P+Px3+9Uf//rr +oZndP2Pf9uv/vT1evlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAD4f+9/AVKOStPdjXi8AAAAAElFTkSuQmCCDQotLVR3M2VQeS0tDQo= headers: Content-Length: ['3977'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Cookie: [lang=en; guest_id=v1%3A141740014177980233] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/account/update_profile_banner.json response: body: {string: ''} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['0'] content-security-policy-report-only: ['default-src ''self''; connect-src ''self''; font-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; frame-src ''self''; img-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; media-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; object-src ''none''; script-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; style-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; report-uri https://twitter.com/i/csp_report?a=OBZG6ZTJNRSWE2LSMQ%3D%3D%3D%3D%3D%3D&ro=true;'] content-type: [text/html;charset=utf-8] date: ['Mon, 01 Dec 2014 02:15:47 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Mon, 01 Dec 2014 02:15:47 GMT'] pragma: [no-cache] server: [tsa_b] status: [201 Created] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [5dd57c03062603f2121b2e02cf85b2f7] x-frame-options: [SAMEORIGIN] x-transaction: [9b25dfdaab487342] x-xss-protection: [1; mode=block] status: {code: 201, message: Created} - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYmFubmVyIjsg ZmlsZW5hbWU9ImInZXhhbXBsZXMvYmFubmVyLnBuZyciDQpDb250ZW50LVR5cGU6IGltYWdlL3Bu Zw0KDQqJUE5HDQoaCgAAAA1JSERSAAAE5AAAAnIEAwAAAJYAAksAAAAbUExURczMzJaWlr6+vrGx scXFxaqqqre3t5ycnKOjoyqkoHcAAA6kSURBVHic7d3LkxvHeQDw1e5yzaNgm+IewZKr5KNhJtEV TIqkj1nJSfkIVkkVHwXnYR93Lbv8b4cLTPe8+gUJO+VUfr+LBfR8g8+cr7p7eh57cQEAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJzf568/2qZarr/922r1 p39PttW9+91+9fKv3/zwxArufptpaEk5G8wy3q4ebRMt/7I/NK1e/sP4+09WCbtJ8PWXXcN/pnb9 I12tVr9KNuRSbgpmGTf7XMm97etp3C0kS+5fx8HXd7HlRWLfP9LmY1HtEt9nU24JZhmhNLazlqts QbWU3GbQ9OLcSd8cOrL1CSk3BLOQ/1hlSu76YXj8RoeooeR+M2r7w5mTfnXY6+0050LK9WAWEktj O235YlxRnw2a6iV3uR837s6a9HUip0rK9WCWcROPz3bScjktqV3fVi+5V5PG8x7f991ef9aecjWY ZQxGou2kaVo0w6qpltzs4J+3mwtZ37enXA1mGR/6w7Mdt1zvZ1Wzjo3Vkns/a/3pGbN+1u3z5Tjn Ysq1YJYxnONvx03P5zX1X7GxWnIPs9ZzHuHNLKF6yrVgFjFaUtiO2zazwzdY6qiV3FW5+UeKo/b6 hJRrwSxhvKSwHbelimodWmsl9ybRfL6RNex9MlMrp1wJZhHjXmE7aksMUoMJd+2C13xcXa1uz5b3 vtvj5KJVOeVKMEv45fjgbEeN8eTvxS+ufx/+O3ZUXcn9PLPn/nz1q+27WH7rM+Ud5v/TGi6nXAlm AdP51nbUGgrlsEYfVljjzKhScrG/+cvFYFH4XJO5cJb93eT7csqVYJ7e9PLAuORiP3UYf8Lqw8vQ XCm50N8cF1vDgsmZjvJ1MuFqyuVgFjBYkUschNBPdZPsMOded82Vkgv9ze7wKRzmM50/TFJrTbkc zAI2odRepEouHLDd8ePV+GOl5KYXMTdnPcwh8ek4XUm5HMwCwnB3u02VXHdo4mXI/fhIlUsuHO1w UviTrrbPkncYP2fz/0rK5WAW0F3Pv11fpEpuerzujp/vu4/lkpuW2LNzHudu5/PfrqRcDmYJD13F FUqun3t3M79wBtBUcvF0oavul+mtT9R1ZvPbBCopl4NZwpuu4pIld3yCoC+pV6eUXPfQQ9zh5RlL LgyN81G6knI5mCVcdRWXLLnjAxG7+LE7fp92HytnrIc7jfuzhXCkz5F1OOVMXJQvp1wJZgkP3SMn yZK7uHkYTr7enFZyF78fTqLCGew5kg5D4zrRVky5FswC3u6O/5suuYvLh0FFndjLPV5N6/d3xl4u VG96aCylXA1mOZmSu7he9/+9GU+M6iV38c/9f3aLJueYy4VLpJkrGYWU68EsJldyQ931hPvuY0PJ DXRTqOQiyRfjMth31bnO7CpcSsu151M+LZgn1VByYUgKi7unlVw3q0o+3tLVWHc1LF4CzXVED81D 4zTlk4J5Wg0lF64nrLvPp5XcZlhV6R/v6jHe3fJpatv+ebSGH56mfFIwT6uh5ML1y/A5ltz1t/vV H79fF/cf+ptkGYUaO070wtWBXMmF9ob7K6cpnxTM02ooubvjJnE2Fkrusmv4qrT/MGu/L/x41xvF uywzJfdhWJ9l05RPCuZp1UsurHLE1d2u5H56F0rkz4X9hzraFX68uza6qZTcfpLHCSmfEswTq5fc +2khzJ99yI9W8enS0o93Jwxh00zJ3Qy3LZulfEowT6xecuGWy1hX85LL3yYSrjKl38cQd/B4ctE/ M5EuuTAb2128+7fKaxZnKZ8SzBOrllw8j4ybJJ7w+ksuetNtkD5RjPGPSxfP4qd0ycXZ2OPTNC9L pwHzlE8I5qlVSy7cs158dDrXzcX37KRvxO13cDE4Yc2U3P7Y+NnxJQOltxLOUz4hmKdWK7m4Ptv3 U6nnWDP3dsenqNP7v4vxu+FrbJI7C+Pu/4QqPyXl9mCeXK3k4ittdvGrVMllXua2LzZf3Lx+fRer rPuv71//U3LbMCsMu8zfhJRIuT2YJ1crufh8aP9V8mn95A7iI6332d/vhtNP49iXy2T22onsq3US KbcH8+QqJRfn9INuoeVdwUd39QPczfY+C2Nf9lWDm9lPZnqqVMrNwTy9SsnFB153/XfJkktdQ40n D6UF2P1hi9tQKdmFs/3sJzPnLKmUm4N5euWSi2tlwxswYsndfnPxLjGKRfGEoPTgaFch209mdZLO ZCC51pFKuTmYBZRLLs6B7gdfhpI7PDxxEzqQ9Sw4njkWe5Ruvrc71mf2Gmi/atdLLvalUm4OZgHF kutfhjpsDwtox77r/ejT0Pumo9v1QPd3h//JDsGp0TxVysmUW4NZQrHk4hnnuBI+P4ym3UQ/DFrz 9dv4oq9dMYPjZj+fdU1j/ardwLox5dZgllAsubtweCYTn+tvB99tUlV5MRjNKu+7P46Et5U6iKkM 3Tem3BrMEkolF69Vzgehyy/j7LybPM3u8N40HtvhRCt/m/g+5vJN/pWFuZQbg1lEqeTickNqEStG dCUznfjHFZLaquvwLb/ZWV+/0e4ieRG1lHJrMIsolFy/tLAu7eEyvYs4f6r2Jpu+5LKrKTejvcXM 2lJuDGYZhZKLZ5yVW2mTddmfOe5qKQz+MkkqjYNn471tMvtOp9wYzDIKxzqecVZeAdhtNz7FiGeO 9fGrf29x/kQjLMzcjvc+zSydcmMwy8iXXOHkYewudQRDV9JyYhg7xPxt4mFlrRulMyszmZTbgllI vuSKJw+JDe+H3zWfPIx+aZfdJMwMQ10/jIqoknJbMAvJllw/GVtXdpF4l1s/qWo5rmHgKzzx92GS S/eb41lmLuWmYJaSLbnMlYeExIu1Wq88HIWRrlCem0lRdmPleKKYS7kpmKVkSy4OUtVbLhIlF8fV tr+0u0oU7djdpEqSbyDOpdwUzFJyJdd2G8hB4h0lyTtQssKsv1CfD5MtUq8Qy6bcEsxiciUXB6n6 7bOJkgvjatv93mHiV6iB/XGLOPSmXpSYTbklmMXkSi4OUrOWmXnJxXG17aa0Tdg8P4bvJ/tLvQ42 m3JLMIvJHKU4SDWc1s1LLo6ru5YU+kug+QqdbhBiBnnnU24IZjmZf/14jahhiX5ecnddcNs5YX8r SX77boNPp18M8s6n3BDMcjL/+mH1tOWsblZy8cL5fVMKgyf+pmlM0yxVTT5lJfd3JfOvv+++b3n2 brZIEpd2p3tNi2t4hRpdTco6MTbmU24IZjnpf/04/9+loy6HrzHsSq6/+hDm8W3L+8PHr7KLwftM 1TSlXA9mQemSC/1UZnJ18zBcz5hd8Ar9TdutGnFtY1UYx/eTkpyvcxRSrgezoHTJbVbTMhp6fJBw 13+cXtYPK7uNS63Hiv3ZMWad2ai+mltI2VLw35VkycX1hnUq5PAn2u77z5tJnxZOBxrv1Dj2Qd89 FGq84ZpVKeVqMEtKllzxCtTVtJ66I7oLn0N/0/Y8fDcH+9Wxr8xN/zaTjmn2h4VLKVeDWVKy5EI/ dZ+KeDXtIh7G3Uvobxo7ke74dy+IyA12mfuP+gIrpVwNZknJktskv+28mXRqYRfhY+hvTvpTJPE1 OJmuMVRU9i7LUsrVYJaUPFKFQSqeYcblr8tJpxZu+24bV6/D4b8sFmo4H83eS15KuRrMklIlF/qp zPnqsTHOhJ5PDnbX3zSeD17Fn9oXyjxezZo8MXPflHItmEWlSq5/Y33K9E+yvRp1Iaf+UY83cWcf EplEk4XeD5McyinXgllUquRejTqFmbtxTe3H/UsYtu7bfv8u/n5XfJn141A146efY9rllCvBLCr1 z1+ZXofr58de4vnoU/953fTz132pdMNfZjJ3N+ypQj/VV1g55Uowi0qUXBg57zMhoahePAZdP0z2 8OakA/q8L5XpachYvN0k+SabSsrlYJby+etH3b//1x//89ddQ5j6fP96JDQPXo36zcW70IHEs4mu E7kdB79eJzLo38E//BteXyffwp96EWZfYZWUy8EsZX4Quobn85Zhc/p1bXE8fEg0rtIrEv1+DqPy Jn5MzOeu57scDN6VlMvBLCV7gN7MW4bN6Q3CVC55dFfpkutbt+PdpjbezPfZX7GqpVwMZinZA/Rh 3jI6fv2iQ+9loe2gWHLH+Vv578YlOrL+ZsxaysVglpI9QJvK8UuNrHEufjWPy1bRJLr81zET3ec6 NtZSLgazlOwByszGBiU37zR2+aZ8FcXGbk1vX9p4/o7pwWJzNeVSMEvJHqD9vGV8/Abvm+n0l6l+ korMVFFs7CaCm9LG8yF7cPWgmnIpmKVkD1Dm8A3v2/5N9gB+kgytlNz2+PlNaePZhG14NbaeciGY pWQPUP34TWdzg1Hqh5RcOHl8Vtr441xvP9rjrvj/ZZpyIZilZA/Qft4yOX6Dv6P0aPgHdX/IwBrO PS5LG3/0drjD0d9Wb0g5H8xSsgeoukjy6Ko/yre7wfenLJKEXXyX/WLil/3+/jBqaEk5G8xSZmd5 4ermoJpSzZ2bEP/f69H3X6YP/n0igy+6tjgT3Bw/v1wnNj54G1L7avx9U8q5YP7P+Px3+9Uf//rr +oZndP2Pf9uv/vT1evlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAD4f+9/AVKOStPdjXi8AAAAAElFTkSuQmCCDQotLVR3M2VQeS0tDQo= headers: Content-Length: ['3977'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Cookie: [lang=en; guest_id=v1%3A141740014177980233] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/account/update_profile_banner.json response: body: {string: ''} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['0'] content-security-policy-report-only: ['default-src ''self''; connect-src ''self''; font-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; frame-src ''self''; img-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com data:; media-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; object-src ''none''; script-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; style-src ''self'' https://*.twimg.com https://ton.twitter.com https://twitter.com; report-uri https://twitter.com/i/csp_report?a=OBZG6ZTJNRSWE2LSMQ%3D%3D%3D%3D%3D%3D&ro=true;'] content-type: [text/html;charset=utf-8] date: ['Mon, 01 Dec 2014 02:15:53 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Mon, 01 Dec 2014 02:15:53 GMT'] pragma: [no-cache] server: [tsa_b] status: [201 Created] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [5dd57c03062603f2121b2e02cf85b2f7] x-frame-options: [SAMEORIGIN] x-transaction: [4055ae30e227b8c0] x-xss-protection: [1; mode=block] status: {code: 201, message: Created} version: 1 tweepy-3.5.0/cassettes/testupdateprofilecolors.json000066400000000000000000001500521265716604700227330ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:08 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "f8d3b13cd063df852258eebb2777d8f1" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "95a214c1958d2a75" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2848" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738012824579974; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:08 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:08 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "12" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:08 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "439d7e4e3e9b5bd48119cf5d5f232bc6" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "b94037a5e5fcfda8" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2899" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738012863838395; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:08 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:08 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "175" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380980" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":539,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"suspended\":false,\"needs_phone_verification\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile_colors.json?profile_link_color=000&profile_text_color=000&profile_sidebar_border_color=000&profile_sidebar_fill_color=000&profile_background_color=000", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "e191a70c593c095a" ], "content-length": [ "2808" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:42:09 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCMdpcAJKAToHaWQiJWNmNmNlZDlmZWIxZmVk%250AZDFhMjljZjFkYmEwNGEwMGIy--20496b8e01c3bb8bd9370f8f665d5bdfcebbe11a; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738012898841383; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:09 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:09 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:42:09 UTC" ], "x-connection-hash": [ "2f6d5357b5ccc0a08b7abf0900258faa" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.27056" ], "status": [ "200 OK" ], "x-mid": [ "0e64b40237868b07d833d191f18c0b3d6a480b96" ], "etag": [ "\"7750f7414abdffd980100622dd408b90\"" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"000000\",\"status\":{\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[],\"media\":[{\"source_status_id\":null,\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"id_str\":\"539138015076290560\",\"id\":539138015076290560,\"indices\":[13,35],\"type\":\"photo\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"sizes\":{\"thumb\":{\"h\":150,\"w\":150,\"resize\":\"crop\"},\"large\":{\"h\":512,\"w\":1024,\"resize\":\"fit\"},\"small\":{\"h\":170,\"w\":340,\"resize\":\"fit\"},\"medium\":{\"h\":300,\"w\":600,\"resize\":\"fit\"}}}]},\"retweet_count\":0,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"possibly_sensitive_editable\":true,\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"in_reply_to_status_id_str\":null,\"id_str\":\"539138015181160448\",\"coordinates\":null,\"geo\":null,\"id\":539138015181160448,\"truncated\":false,\"possibly_sensitive\":false,\"in_reply_to_user_id_str\":null,\"in_reply_to_user_id\":null,\"favorited\":false,\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\"},\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"statuses_count\":539,\"is_translator\":false,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile_colors.json?profile_link_color=0000FF&profile_text_color=000000&profile_sidebar_border_color=87BC44&profile_sidebar_fill_color=E0FF92&profile_background_color=FFFFFF", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "content-type": [ "application/json; charset=utf-8" ], "server": [ "tsa_b" ], "x-transaction": [ "ffd0686d8a09e83b" ], "content-length": [ "2808" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 08:42:10 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCANtcAJKAToHaWQiJWExOTdmMzllYmY1ODBj%250AYzM0ZjZlYWRhZGQwZTM0NmM1--8c1e73df6c90e40fd9c9b04ef86645f0d52fc610; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141738012979301718; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:10 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:10 GMT" ], "x-xss-protection": [ "1; mode=block" ], "pragma": [ "no-cache" ], "vary": [ "Accept-Encoding" ], "date": [ "Sun, 30 Nov 2014 20:42:10 UTC" ], "x-connection-hash": [ "62390f980647ed27b5cbbfaecb979dc6" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-runtime": [ "0.27387" ], "status": [ "200 OK" ], "x-mid": [ "711d4952f46f8d1a71f2b5fd72bec1a70994eb91" ], "etag": [ "\"dc0e0674075ef0c93bafd6c000af0c51\"" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"is_translator\":false,\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"status\":{\"possibly_sensitive\":false,\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[],\"media\":[{\"source_status_id\":null,\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"id_str\":\"539138015076290560\",\"id\":539138015076290560,\"indices\":[13,35],\"type\":\"photo\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"sizes\":{\"thumb\":{\"h\":150,\"w\":150,\"resize\":\"crop\"},\"large\":{\"h\":512,\"w\":1024,\"resize\":\"fit\"},\"small\":{\"h\":170,\"w\":340,\"resize\":\"fit\"},\"medium\":{\"h\":300,\"w\":600,\"resize\":\"fit\"}}}]},\"retweet_count\":0,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"possibly_sensitive_editable\":true,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"in_reply_to_status_id_str\":null,\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id_str\":\"539138015181160448\",\"coordinates\":null,\"geo\":null,\"id\":539138015181160448,\"in_reply_to_user_id_str\":null,\"truncated\":false,\"in_reply_to_user_id\":null,\"favorited\":false,\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\"},\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"statuses_count\":539,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:15:59 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5c17141ec2f9402f84afd51cb5477482" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2848" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:15:59 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "12" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740015975538535; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:15:59 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "f6784d21167e0ae4" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/users/show.json?screen_name=tweepytest", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:16:00 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "2ccde6e7d53cf933dec975118fbc041b" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401003" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2899" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:00 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "175" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740016070287325; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:00 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "fb7c50e62d9a5ec3" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false,\"suspended\":false,\"needs_phone_verification\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile_colors.json?profile_sidebar_fill_color=000&profile_text_color=000&profile_background_color=000&profile_link_color=000&profile_sidebar_border_color=000", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "de23bcdb9ec1dc45" ], "content-length": [ "2808" ], "etag": [ "\"af0252c3a2b257568ba41435562da377\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:02 GMT" ], "x-runtime": [ "0.20599" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:16:02 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCA8ZogNKAToHaWQiJTY4YWZkYTgyNjRkNzQ4%250AMGU3NzQzN2Q0Y2YxMDgzODc3--fd16b68fa720ae1d25a2596f977ccf5d50af6a68; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740016229714713; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:02 UTC" ], "date": [ "Mon, 01 Dec 2014 02:16:02 UTC" ], "x-connection-hash": [ "dcf5b629e18d3530ce118b73cd6cae71" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "eb417df6eaf90eee0531f81f7fb6aa6b8139f7a5" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"000000\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"000000\",\"status\":{\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[],\"media\":[{\"source_status_id\":null,\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"id_str\":\"539157461669015554\",\"id\":539157461669015554,\"indices\":[13,35],\"type\":\"photo\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"sizes\":{\"thumb\":{\"h\":150,\"w\":150,\"resize\":\"crop\"},\"large\":{\"h\":512,\"w\":1024,\"resize\":\"fit\"},\"small\":{\"h\":170,\"w\":340,\"resize\":\"fit\"},\"medium\":{\"h\":300,\"w\":600,\"resize\":\"fit\"}}}]},\"retweet_count\":0,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"possibly_sensitive\":false,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"possibly_sensitive_editable\":true,\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"in_reply_to_status_id_str\":null,\"id_str\":\"539157461698351104\",\"coordinates\":null,\"geo\":null,\"id\":539157461698351104,\"truncated\":false,\"in_reply_to_user_id_str\":null,\"in_reply_to_user_id\":null,\"favorited\":false,\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\"},\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"statuses_count\":540,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"000000\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"000000\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"is_translator\":false,\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ], "Content-Length": [ "0" ] }, "method": "POST", "uri": "https://api.twitter.com:443/1.1/account/update_profile_colors.json?profile_sidebar_fill_color=E0FF92&profile_text_color=000000&profile_background_color=FFFFFF&profile_link_color=0000FF&profile_sidebar_border_color=87BC44", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "x-content-type-options": [ "nosniff" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-transaction": [ "df010efcbfa9cfcf" ], "content-length": [ "2808" ], "etag": [ "\"0481a45fe7bf6a9e8c8623d4dac0bfc1\"" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:03 GMT" ], "x-runtime": [ "0.18298" ], "x-xss-protection": [ "1; mode=block" ], "set-cookie": [ "dnt=1; domain=.twitter.com; path=/; expires=Sat, 30-Nov-2024 14:16:03 GMT", "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT", "lang=en; path=/", "lang=en; path=/", "lang=en; path=/", "twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure", "_twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCNMcogNKAToHaWQiJTkyNGRhN2ZlNTEzNjFi%250AMDVkNjFjOTNmZDZmNmU3MDRm--02c103b59f65e7718b1789995660b9ade3488606; domain=.twitter.com; path=/; secure; HttpOnly", "guest_id=v1%3A141740016332969561; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:03 UTC" ], "date": [ "Mon, 01 Dec 2014 02:16:03 UTC" ], "x-connection-hash": [ "0c76c60ff4204bbd887e347f6d52c6ae" ], "x-access-level": [ "read-write-directmessages" ], "x-transaction-mask": [ "a6183ffa5f8ca943ff1b53b5644ef114028ecc49" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json; charset=utf-8" ], "pragma": [ "no-cache" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "vary": [ "Accept-Encoding" ], "status": [ "200 OK" ], "x-mid": [ "3d13f3fe5d655d3d184300bd63d7a1fdae4e2e49" ] }, "body": { "string": "{\"profile_sidebar_border_color\":\"87BC44\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"indices\":[0,22],\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"name\":\"Tweepy test 123\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"listed_count\":0,\"verified\":false,\"profile_background_tile\":false,\"location\":\"pytopia\",\"id\":82301637,\"profile_sidebar_fill_color\":\"E0FF92\",\"status\":{\"in_reply_to_user_id_str\":null,\"entities\":{\"urls\":[],\"hashtags\":[],\"user_mentions\":[],\"media\":[{\"source_status_id\":null,\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"id_str\":\"539157461669015554\",\"id\":539157461669015554,\"indices\":[13,35],\"type\":\"photo\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"sizes\":{\"thumb\":{\"h\":150,\"w\":150,\"resize\":\"crop\"},\"large\":{\"h\":512,\"w\":1024,\"resize\":\"fit\"},\"small\":{\"h\":170,\"w\":340,\"resize\":\"fit\"},\"medium\":{\"h\":300,\"w\":600,\"resize\":\"fit\"}}}]},\"retweet_count\":0,\"in_reply_to_status_id\":null,\"place\":null,\"in_reply_to_screen_name\":null,\"contributors\":null,\"retweeted\":false,\"source\":\"\\u003Ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id_str\":\"539157461698351104\",\"coordinates\":null,\"geo\":null,\"id\":539157461698351104,\"truncated\":false,\"in_reply_to_user_id\":null,\"possibly_sensitive_editable\":true,\"possibly_sensitive\":false,\"favorited\":false,\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"in_reply_to_status_id_str\":null},\"time_zone\":\"Central Time (US & Canada)\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"lang\":\"en\",\"id_str\":\"82301637\",\"is_translator\":false,\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"statuses_count\":540,\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"contributors_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"screen_name\":\"tweepytest\",\"utc_offset\":-21600,\"favourites_count\":1,\"follow_request_sent\":false,\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"followers_count\":10,\"profile_link_color\":\"0000FF\",\"notifications\":false,\"following\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"default_profile_image\":false,\"description\":\"A test account for testing stuff.\",\"profile_use_background_image\":false,\"profile_text_color\":\"000000\",\"friends_count\":11,\"default_profile\":false,\"geo_enabled\":true}" } } } ] }tweepy-3.5.0/cassettes/testupdatestatuswithmedia.yaml000066400000000000000000000515551265716604700232710ustar00rootroot00000000000000interactions: - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0ibWVkaWFbXSI7 IGZpbGVuYW1lPSJleGFtcGxlcy9iYW5uZXIucG5nIg0KQ29udGVudC1UeXBlOiBpbWFnZS9wbmcN Cg0KiVBORw0KGgoAAAANSUhEUgAABOQAAAJyBAMAAACWAAJLAAAAG1BMVEXMzMyWlpa+vr6xsbHF xcWqqqq3t7ecnJyjo6MqpKB3AAAOpElEQVR4nO3dy5Mbx3kA8NXucs2jYJviHsGSq+SjYSbRFUyK pI9ZyUn5CFZJFR8F52Efdy27/G+HC0z3vPoFCTvlVH6/iwX0fIPPnK+6e3oee3EBAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACc3+evP9qmWq6//dtq9ad/ T7bVvfvdfvXyr9/88MQK7n6baWhJORvMMt6uHm0TLf+yPzStXv7D+PtPVgm7SfD1l13Df6Z2/SNd rVa/SjbkUm4KZhk3+1zJve3radwtJEvuX8fB13ex5UVi3z/S5mNR7RLfZ1NuCWYZoTS2s5arbEG1 lNxm0PTi3EnfHDqy9QkpNwSzkP9YZUru+mF4/EaHqKHkfjNq+8OZk3512OvtNOdCyvVgFhJLYztt +WJcUZ8Nmuold7kfN+7OmvR1IqdKyvVglnETj8920nI5Lald31YvuVeTxvMe3/fdXn/WnnI1mGUM RqLtpGlaNMOqqZbc7OCft5sLWd+3p1wNZhkf+sOzHbdc72dVs46N1ZJ7P2v96Rmzftbt8+U452LK tWCWMZzjb8dNz+c19V+xsVpyD7PWcx7hzSyhesq1YBYxWlLYjts2s8M3WOqoldxVuflHiqP2+oSU a8EsYbyksB23pYpqHVprJfcm0Xy+kTXsfTJTK6dcCWYR415hO2pLDFKDCXftgtd8XF2tbs+W977b 4+SiVTnlSjBL+OX44GxHjfHk78Uvrn8f/jt2VF3J/Tyz5/589avtu1h+6zPlHeb/0xoup1wJZgHT +dZ21BoK5bBGH1ZY48yoUnKxv/nLxWBR+FyTuXCW/d3k+3LKlWCe3vTywLjkYj91GH/C6sPL0Fwp udDfHBdbw4LJmY7ydTLhasrlYBYwWJFLHITQT3WT7DDnXnfNlZIL/c3u8Ckc5jOdP0xSa025HMwC NqHUXqRKLhyw3fHj1fhjpeSmFzE3Zz3MIfHpOF1JuRzMAsJwd7tNlVx3aOJlyP34SJVLLhztcFL4 k662z5J3GD9n8/9KyuVgFtBdz79dX6RKbnq87o6f77uP5ZKbltizcx7nbufz366kXA5mCQ9dxRVK rp97dzO/cAbQVHLxdKGr7pfprU/UdWbz2wQqKZeDWcKbruKSJXd8gqAvqVenlFz30EPc4eUZSy4M jfNRupJyOZglXHUVlyy54wMRu/ixO36fdh8rZ6yHO437s4VwpM+RdTjlTFyUL6dcCWYJD90jJ8mS u7h5GE6+3pxWche/H06iwhnsOZIOQ+M60VZMuRbMAt7ujv+bLrmLy4dBRZ3Yyz1eTev3d8ZeLlRv emgspVwNZjmZkru4Xvf/vRlPjOold/HP/X92iybnmMuFS6SZKxmFlOvBLCZXckPd9YT77mNDyQ10 U6jkIskX4zLYd9W5zuwqXErLtedTPi2YJ9VQcmFICou7p5VcN6tKPt7S1Vh3NSxeAs11RA/NQ+M0 5ZOCeVoNJReuJ6y7z6eV3GZYVekf7+ox3t3yaWrb/nm0hh+epnxSME+roeTC9cvwOZbc9bf71R+/ Xxf3H/qbZBmFGjtO9MLVgVzJhfaG+yunKZ8UzNNqKLm74yZxNhZK7rJr+Kq0/zBrvy/8eNcbxbss MyX3YVifZdOUTwrmadVLLqxyxNXdruR+ehdK5M+F/Yc62hV+vLs2uqmU3H6SxwkpnxLME6uX3Ptp IcyffciPVvHp0tKPdycMYdNMyd0Mty2bpXxKME+sXnLhlstYV/OSy98mEq4ypd/HEHfweHLRPzOR LrkwG9tdvPu3ymsWZymfEswTq5ZcPI+MmySe8PpLLnrTbZA+UYzxj0sXz+KndMnF2djj0zQvS6cB 85RPCOapVUsu3LNefHQ6183F9+ykb8Ttd3AxOGHNlNz+2PjZ8SUDpbcSzlM+IZinViu5uD7b91Op 51gz93bHp6jT+7+L8bvha2ySOwvj7v+EKj8l5fZgnlyt5OIrbXbxq1TJZV7mti82X9y8fn0Xq6z7 r+9f/1Ny2zArDLvM34SUSLk9mCdXK7n4fGj/VfJp/eQO4iOt99nf74bTT+PYl8tk9tqJ7Kt1Eim3 B/PkKiUX5/SDbqHlXcFHd/UD3M32PgtjX/ZVg5vZT2Z6qlTKzcE8vUrJxQded/13yZJLXUONJw+l Bdj9YYvbUCnZhbP97Ccz5yyplJuDeXrlkotrZcMbMGLJ3X5z8S4xikXxhKD04GhXIdtPZnWSzmQg udaRSrk5mAWUSy7Oge4HX4aSOzw8cRM6kPUsOJ45FnuUbr63O9Zn9hpov2rXSy72pVJuDmYBxZLr X4Y6bA8LaMe+6/3o09D7pqPb9UD3d4f/yQ7BqdE8VcrJlFuDWUKx5OIZ57gSPj+Mpt1EPwxa8/Xb +KKvXTGD42Y/n3VNY/2q3cC6MeXWYJZQLLm7cHgmE5/rbwffbVJVeTEYzSrvuz+OhLeVOoipDN03 ptwazBJKJRevVc4Hocsv4+y8mzzN7vDeNB7b4UQrf5v4PubyTf6VhbmUG4NZRKnk4nJDahErRnQl M534xxWS2qrr8C2/2Vlfv9HuInkRtZRyazCLKJRcv7SwLu3hMr2LOH+q9iabvuSyqyk3o73FzNpS bgxmGYWSi2eclVtpk3XZnznuaikM/jJJKo2DZ+O9bTL7TqfcGMwyCsc6nnFWXgHYbTc+xYhnjvXx q39vcf5EIyzM3I73Ps0snXJjMMvIl1zh5GHsLnUEQ1fScmIYO8T8beJhZa0bpTMrM5mU24JZSL7k iicPiQ3vh981nzyMfmmX3STMDENdP4yKqJJyWzALyZZcPxlbV3aReJdbP6lqOa5h4Cs88fdhkkv3 m+NZZi7lpmCWki25zJWHhMSLtVqvPByFka5QnptJUXZj5XiimEu5KZilZEsuDlLVWy4SJRfH1ba/ tLtKFO3Y3aRKkm8gzqXcFMxSciXXdhvIQeIdJck7ULLCrL9Qnw+TLVKvEMum3BLMYnIlFwep+u2z iZIL42rb/d5h4leogf1xizj0pl6UmE25JZjF5EouDlKzlpl5ycVxte2mtE3YPD+G7yf7S70ONpty SzCLyRylOEg1nNbNSy6Oq7uWFPpLoPkKnW4QYgZ551NuCGY5mX/9eI2oYYl+XnJ3XXDbOWF/K0l+ +26DT6dfDPLOp9wQzHIy//ph9bTlrG5WcvHC+X1TCoMn/qZpTNMsVU0+ZSX3dyXzr7/vvm959m62 SBKXdqd7TYtreIUaXU3KOjE25lNuCGY56X/9OP/fpaMuh68x7Equv/oQ5vFty/vDx6+yi8H7TNU0 pVwPZkHpkgv9VGZydfMwXM+YXfAK/U3brRpxbWNVGMf3k5Kcr3MUUq4Hs6B0yW1W0zIaenyQcNd/ nF7WDyu7jUutx4r92TFmndmovppbSNlS8N+VZMnF9YZ1KuTwJ9ru+8+bSZ8WTgca79Q49kHfPRRq vOGaVSnlajBLSpZc8QrU1bSeuiO6C59Df9P2PHw3B/vVsa/MTf82k45p9oeFSylXg1lSsuRCP3Wf ing17SIext1L6G8aO5Hu+HcviMgNdpn7j/oCK6VcDWZJyZLbJL/tvJl0amEX4WPob076UyTxNTiZ rjFUVPYuy1LK1WCWlDxShUEqnmHG5a/LSacWbvtuG1evw+G/LBZqOB/N3kteSrkazJJSJRf6qcz5 6rExzoSeTw521980ng9exZ/aF8o8Xs2aPDFz35RyLZhFpUquf2N9yvRPsr0adSGn/lGPN3FnHxKZ RJOF3g+THMop14JZVKrkXo06hZm7cU3tx/1LGLbu237/Lv5+V3yZ9eNQNeOnn2Pa5ZQrwSwq9c9f mV6H6+fHXuL56FP/ed3089d9qXTDX2YydzfsqUI/1VdYOeVKMItKlFwYOe8zIaGoXjwGXT9M9vDm pAP6vC+V6WnIWLzdJPkmm0rK5WCW8vnrR92//9cf//PXXUOY+nz/eiQ0D16N+s3Fu9CBxLOJrhO5 HQe/Xicy6N/BP/wbXl8n38KfehFmX2GVlMvBLGV+ELqG5/OWYXP6dW1xPHxINK7SKxL9fg6j8iZ+ TMznrue7HAzelZTLwSwle4DezFuGzekNwlQueXRX6ZLrW7fj3aY23sz32V+xqqVcDGYp2QP0Yd4y On79okPvZaHtoFhyx/lb+e/GJTqy/mbMWsrFYJaSPUCbyvFLjaxxLn41j8tW0SS6/NcxE93nOjbW Ui4Gs5TsAcrMxgYlN+80dvmmfBXFxm5Nb1/aeP6O6cFiczXlUjBLyR6g/bxlfPwG75vp9JepfpKK zFRRbOwmgpvSxvMhe3D1oJpyKZilZA9Q5vAN79v+TfYAfpIMrZTc9vj5TWnj2YRteDW2nnIhmKVk D1D9+E1nc4NR6oeUXDh5fFba+ONcbz/a4674/2WaciGYpWQP0H7eMjl+g7+j9Gj4B3V/yMAazj0u Sxt/9Ha4w9HfVm9IOR/MUrIHqLpI8uiqP8q3u8H3pyyShF18l/1i4pf9/v4wamhJORvMUmZneeHq 5qCaUs2dmxD/3+vR91+mD/59IoMvurY4E9wcP79cJzY+eBtS+2r8fVPKuWD+z/j8d/vVH//66/qG Z3T9j3/br/709Xr5YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAA+H/vfwFSjkrT3Y14vAAAAABJRU5ErkJggg0KLS1UdzNlUHktLQ0K headers: Content-Length: ['3975'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/statuses/update_with_media.json?status=testing+1000 response: body: {string: '{"created_at":"Sun Nov 30 20:42:10 +0000 2014","id":539157461698351104,"id_str":"539157461698351104","text":"testing 1000 http:\/\/t.co\/tGU9ReCq1H","source":"\u003ca href=\"http:\/\/tweepy.github.com\/\" rel=\"nofollow\"\u003eTweepyTravis\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82301637,"id_str":"82301637","name":"Tweepy test 123","screen_name":"tweepytest","location":"pytopia","profile_location":null,"description":"A test account for testing stuff.","url":"http:\/\/t.co\/3L9bWVrV0b","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/3L9bWVrV0b","expanded_url":"http:\/\/foo.com","display_url":"foo.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":11,"listed_count":0,"created_at":"Wed Oct 14 07:28:20 +0000 2009","favourites_count":1,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":540,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/394345638\/test.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/394345638\/test.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1733327710\/test_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1733327710\/test_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82301637\/1417380122","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":539157461669015554,"id_str":"539157461669015554","indices":[13,35],"media_url":"http:\/\/pbs.twimg.com\/media\/B3t42tTIcAIsEPG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B3t42tTIcAIsEPG.png","url":"http:\/\/t.co\/tGU9ReCq1H","display_url":"pic.twitter.com\/tGU9ReCq1H","expanded_url":"http:\/\/twitter.com\/tweepytest\/status\/539157461698351104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":539157461669015554,"id_str":"539157461669015554","indices":[13,35],"media_url":"http:\/\/pbs.twimg.com\/media\/B3t42tTIcAIsEPG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B3t42tTIcAIsEPG.png","url":"http:\/\/t.co\/tGU9ReCq1H","display_url":"pic.twitter.com\/tGU9ReCq1H","expanded_url":"http:\/\/twitter.com\/tweepytest\/status\/539157461698351104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}'} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['3447'] content-type: [application/json;charset=utf-8] date: ['Sun, 30 Nov 2014 20:42:10 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Sun, 30 Nov 2014 20:42:10 GMT'] pragma: [no-cache] server: [tsa_b] set-cookie: [lang=en, 'guest_id=v1%3A141738013057312686; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:10 UTC'] status: [200 OK] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [fe5af9f849da7bb93448c1afe800d475] x-content-type-options: [nosniff] x-frame-options: [SAMEORIGIN] x-mediaratelimit-class: [photos] x-mediaratelimit-limit: ['3000'] x-mediaratelimit-remaining: ['2998'] x-mediaratelimit-reset: ['1417461894'] x-transaction: [16efabe203760c5b] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} - request: body: !!binary | LS1UdzNlUHkNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0ibWVkaWFbXSI7 IGZpbGVuYW1lPSJiJ2V4YW1wbGVzL2Jhbm5lci5wbmcnIg0KQ29udGVudC1UeXBlOiBpbWFnZS9w bmcNCg0KiVBORw0KGgoAAAANSUhEUgAABOQAAAJyBAMAAACWAAJLAAAAG1BMVEXMzMyWlpa+vr6x sbHFxcWqqqq3t7ecnJyjo6MqpKB3AAAOpElEQVR4nO3dy5Mbx3kA8NXucs2jYJviHsGSq+SjYSbR FUyKpI9ZyUn5CFZJFR8F52Efdy27/G+HC0z3vPoFCTvlVH6/iwX0fIPPnK+6e3oee3EBAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACc3+evP9qmWq6//dtq 9ad/T7bVvfvdfvXyr9/88MQK7n6baWhJORvMMt6uHm0TLf+yPzStXv7D+PtPVgm7SfD1l13Df6Z2 /SNdrVa/SjbkUm4KZhk3+1zJve3radwtJEvuX8fB13ex5UVi3z/S5mNR7RLfZ1NuCWYZoTS2s5ar bEG1lNxm0PTi3EnfHDqy9QkpNwSzkP9YZUru+mF4/EaHqKHkfjNq+8OZk3512OvtNOdCyvVgFhJL Yztt+WJcUZ8Nmuold7kfN+7OmvR1IqdKyvVglnETj8920nI5Lald31YvuVeTxvMe3/fdXn/WnnI1 mGUMRqLtpGlaNMOqqZbc7OCft5sLWd+3p1wNZhkf+sOzHbdc72dVs46N1ZJ7P2v96Rmzftbt8+U4 52LKtWCWMZzjb8dNz+c19V+xsVpyD7PWcx7hzSyhesq1YBYxWlLYjts2s8M3WOqoldxVuflHiqP2 +oSUa8EsYbyksB23pYpqHVprJfcm0Xy+kTXsfTJTK6dcCWYR415hO2pLDFKDCXftgtd8XF2tbs+W 977b4+SiVTnlSjBL+OX44GxHjfHk78Uvrn8f/jt2VF3J/Tyz5/589avtu1h+6zPlHeb/0xoup1wJ ZgHT+dZ21BoK5bBGH1ZY48yoUnKxv/nLxWBR+FyTuXCW/d3k+3LKlWCe3vTywLjkYj91GH/C6sPL 0FwpudDfHBdbw4LJmY7ydTLhasrlYBYwWJFLHITQT3WT7DDnXnfNlZIL/c3u8Ckc5jOdP0xSa025 HMwCNqHUXqRKLhyw3fHj1fhjpeSmFzE3Zz3MIfHpOF1JuRzMAsJwd7tNlVx3aOJlyP34SJVLLhzt cFL4k662z5J3GD9n8/9KyuVgFtBdz79dX6RKbnq87o6f77uP5ZKbltizcx7nbufz366kXA5mCQ9d xRVKrp97dzO/cAbQVHLxdKGr7pfprU/UdWbz2wQqKZeDWcKbruKSJXd8gqAvqVenlFz30EPc4eUZ Sy4MjfNRupJyOZglXHUVlyy54wMRu/ixO36fdh8rZ6yHO437s4VwpM+RdTjlTFyUL6dcCWYJD90j J8mSu7h5GE6+3pxWche/H06iwhnsOZIOQ+M60VZMuRbMAt7ujv+bLrmLy4dBRZ3Yyz1eTev3d8Ze LlRvemgspVwNZjmZkru4Xvf/vRlPjOold/HP/X92iybnmMuFS6SZKxmFlOvBLCZXckPd9YT77mND yQ10U6jkIskX4zLYd9W5zuwqXErLtedTPi2YJ9VQcmFICou7p5VcN6tKPt7S1Vh3NSxeAs11RA/N Q+M05ZOCeVoNJReuJ6y7z6eV3GZYVekf7+ox3t3yaWrb/nm0hh+epnxSME+roeTC9cvwOZbc9bf7 1R+/Xxf3H/qbZBmFGjtO9MLVgVzJhfaG+yunKZ8UzNNqKLm74yZxNhZK7rJr+Kq0/zBrvy/8eNcb xbssMyX3YVifZdOUTwrmadVLLqxyxNXdruR+ehdK5M+F/Yc62hV+vLs2uqmU3H6SxwkpnxLME6uX 3PtpIcyffciPVvHp0tKPdycMYdNMyd0Mty2bpXxKME+sXnLhlstYV/OSy98mEq4ypd/HEHfweHLR PzORLrkwG9tdvPu3ymsWZymfEswTq5ZcPI+MmySe8PpLLnrTbZA+UYzxj0sXz+KndMnF2djj0zQv S6cB85RPCOapVUsu3LNefHQ6183F9+ykb8Ttd3AxOGHNlNz+2PjZ8SUDpbcSzlM+IZinViu5uD7b 91Op51gz93bHp6jT+7+L8bvha2ySOwvj7v+EKj8l5fZgnlyt5OIrbXbxq1TJZV7mti82X9y8fn0X q6z7r+9f/1Ny2zArDLvM34SUSLk9mCdXK7n4fGj/VfJp/eQO4iOt99nf74bTT+PYl8tk9tqJ7Kt1 Eim3B/PkKiUX5/SDbqHlXcFHd/UD3M32PgtjX/ZVg5vZT2Z6qlTKzcE8vUrJxQded/13yZJLXUON Jw+lBdj9YYvbUCnZhbP97Ccz5yyplJuDeXrlkotrZcMbMGLJ3X5z8S4xikXxhKD04GhXIdtPZnWS zmQgudaRSrk5mAWUSy7Oge4HX4aSOzw8cRM6kPUsOJ45FnuUbr63O9Zn9hpov2rXSy72pVJuDmYB xZLrX4Y6bA8LaMe+6/3o09D7pqPb9UD3d4f/yQ7BqdE8VcrJlFuDWUKx5OIZ57gSPj+Mpt1EPwxa 8/Xb+KKvXTGD42Y/n3VNY/2q3cC6MeXWYJZQLLm7cHgmE5/rbwffbVJVeTEYzSrvuz+OhLeVOoip DN03ptwazBJKJRevVc4Hocsv4+y8mzzN7vDeNB7b4UQrf5v4PubyTf6VhbmUG4NZRKnk4nJDahEr RnQlM534xxWS2qrr8C2/2Vlfv9HuInkRtZRyazCLKJRcv7SwLu3hMr2LOH+q9iabvuSyqyk3o73F zNpSbgxmGYWSi2eclVtpk3XZnznuaikM/jJJKo2DZ+O9bTL7TqfcGMwyCsc6nnFWXgHYbTc+xYhn jvXxq39vcf5EIyzM3I73Ps0snXJjMMvIl1zh5GHsLnUEQ1fScmIYO8T8beJhZa0bpTMrM5mU24JZ SL7kiicPiQ3vh981nzyMfmmX3STMDENdP4yKqJJyWzALyZZcPxlbV3aReJdbP6lqOa5h4Cs88fdh kkv3m+NZZi7lpmCWki25zJWHhMSLtVqvPByFka5QnptJUXZj5XiimEu5KZilZEsuDlLVWy4SJRfH 1ba/tLtKFO3Y3aRKkm8gzqXcFMxSciXXdhvIQeIdJck7ULLCrL9Qnw+TLVKvEMum3BLMYnIlFwep +u2ziZIL42rb/d5h4leogf1xizj0pl6UmE25JZjF5EouDlKzlpl5ycVxte2mtE3YPD+G7yf7S70O NptySzCLyRylOEg1nNbNSy6Oq7uWFPpLoPkKnW4QYgZ551NuCGY5mX/9eI2oYYl+XnJ3XXDbOWF/ K0l++26DT6dfDPLOp9wQzHIy//ph9bTlrG5WcvHC+X1TCoMn/qZpTNMsVU0+ZSX3dyXzr7/vvm95 9m62SBKXdqd7TYtreIUaXU3KOjE25lNuCGY56X/9OP/fpaMuh68x7Equv/oQ5vFty/vDx6+yi8H7 TNU0pVwPZkHpkgv9VGZydfMwXM+YXfAK/U3brRpxbWNVGMf3k5Kcr3MUUq4Hs6B0yW1W0zIaenyQ cNd/nF7WDyu7jUutx4r92TFmndmovppbSNlS8N+VZMnF9YZ1KuTwJ9ru+8+bSZ8WTgca79Q49kHf PRRqvOGaVSnlajBLSpZc8QrU1bSeuiO6C59Df9P2PHw3B/vVsa/MTf82k45p9oeFSylXg1lSsuRC P3Wfing17SIext1L6G8aO5Hu+HcviMgNdpn7j/oCK6VcDWZJyZLbJL/tvJl0amEX4WPob076UyTx NTiZrjFUVPYuy1LK1WCWlDxShUEqnmHG5a/LSacWbvtuG1evw+G/LBZqOB/N3kteSrkazJJSJRf6 qcz56rExzoSeTw521980ng9exZ/aF8o8Xs2aPDFz35RyLZhFpUquf2N9yvRPsr0adSGn/lGPN3Fn HxKZRJOF3g+THMop14JZVKrkXo06hZm7cU3tx/1LGLbu237/Lv5+V3yZ9eNQNeOnn2Pa5ZQrwSwq 9c9fmV6H6+fHXuL56FP/ed3089d9qXTDX2YydzfsqUI/1VdYOeVKMItKlFwYOe8zIaGoXjwGXT9M 9vDmpAP6vC+V6WnIWLzdJPkmm0rK5WCW8vnrR92//9cf//PXXUOY+nz/eiQ0D16N+s3Fu9CBxLOJ rhO5HQe/Xicy6N/BP/wbXl8n38KfehFmX2GVlMvBLGV+ELqG5/OWYXP6dW1xPHxINK7SKxL9fg6j 8iZ+TMznrue7HAzelZTLwSwle4DezFuGzekNwlQueXRX6ZLrW7fj3aY23sz32V+xqqVcDGYp2QP0 Yd4yOn79okPvZaHtoFhyx/lb+e/GJTqy/mbMWsrFYJaSPUCbyvFLjaxxLn41j8tW0SS6/NcxE93n OjbWUi4Gs5TsAcrMxgYlN+80dvmmfBXFxm5Nb1/aeP6O6cFiczXlUjBLyR6g/bxlfPwG75vp9Jep fpKKzFRRbOwmgpvSxvMhe3D1oJpyKZilZA9Q5vAN79v+TfYAfpIMrZTc9vj5TWnj2YRteDW2nnIh mKVkD1D9+E1nc4NR6oeUXDh5fFba+ONcbz/a4674/2WaciGYpWQP0H7eMjl+g7+j9Gj4B3V/yMAa zj0uSxt/9Ha4w9HfVm9IOR/MUrIHqLpI8uiqP8q3u8H3pyyShF18l/1i4pf9/v4wamhJORvMUmZn eeHq5qCaUs2dmxD/3+vR91+mD/59IoMvurY4E9wcP79cJzY+eBtS+2r8fVPKuWD+z/j8d/vVH//6 6/qGZ3T9j3/br/709Xr5YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAA+H/vfwFSjkrT3Y14vAAAAABJRU5ErkJggg0KLS1UdzNlUHktLQ0K headers: Content-Length: ['3978'] Content-Type: [multipart/form-data; boundary=Tw3ePy] Host: [api.twitter.com] method: POST uri: https://api.twitter.com:443/1.1/statuses/update_with_media.json?status=testing+1000 response: body: {string: '{"created_at":"Mon Dec 01 02:16:04 +0000 2014","id":539241489755557888,"id_str":"539241489755557888","text":"testing 1000 http:\/\/t.co\/5wyi6Tyl0A","source":"\u003ca href=\"http:\/\/tweepy.github.com\/\" rel=\"nofollow\"\u003eTweepyTravis\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82301637,"id_str":"82301637","name":"Tweepy test 123","screen_name":"tweepytest","location":"pytopia","profile_location":null,"description":"A test account for testing stuff.","url":"http:\/\/t.co\/3L9bWVrV0b","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/3L9bWVrV0b","expanded_url":"http:\/\/foo.com","display_url":"foo.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":11,"listed_count":0,"created_at":"Wed Oct 14 07:28:20 +0000 2009","favourites_count":1,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":541,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/394345638\/test.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/394345638\/test.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1733327710\/test_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1733327710\/test_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82301637\/1417400153","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":539241489671675904,"id_str":"539241489671675904","indices":[13,35],"media_url":"http:\/\/pbs.twimg.com\/media\/B3vFRyAIYAAhjam.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B3vFRyAIYAAhjam.png","url":"http:\/\/t.co\/5wyi6Tyl0A","display_url":"pic.twitter.com\/5wyi6Tyl0A","expanded_url":"http:\/\/twitter.com\/tweepytest\/status\/539241489755557888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":539241489671675904,"id_str":"539241489671675904","indices":[13,35],"media_url":"http:\/\/pbs.twimg.com\/media\/B3vFRyAIYAAhjam.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B3vFRyAIYAAhjam.png","url":"http:\/\/t.co\/5wyi6Tyl0A","display_url":"pic.twitter.com\/5wyi6Tyl0A","expanded_url":"http:\/\/twitter.com\/tweepytest\/status\/539241489755557888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}'} headers: cache-control: ['no-cache, no-store, must-revalidate, pre-check=0, post-check=0'] content-length: ['3447'] content-type: [application/json;charset=utf-8] date: ['Mon, 01 Dec 2014 02:16:04 UTC'] expires: ['Tue, 31 Mar 1981 05:00:00 GMT'] last-modified: ['Mon, 01 Dec 2014 02:16:04 GMT'] pragma: [no-cache] server: [tsa_b] set-cookie: [lang=en, 'guest_id=v1%3A141740016440888470; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:04 UTC'] status: [200 OK] strict-transport-security: [max-age=631138519] x-access-level: [read-write-directmessages] x-connection-hash: [a119b56be71858731056de8f2c41e185] x-content-type-options: [nosniff] x-frame-options: [SAMEORIGIN] x-mediaratelimit-class: [photos] x-mediaratelimit-limit: ['3000'] x-mediaratelimit-remaining: ['2997'] x-mediaratelimit-reset: ['1417461894'] x-transaction: [7473e689cd694673] x-xss-protection: [1; mode=block] status: {code: 200, message: OK} version: 1 tweepy-3.5.0/cassettes/testusertimeline.json000066400000000000000000012341021265716604700213530ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:11 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "5ddcaa160d773aa7a74d4b50afbd48ad" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "90de5017696cc249" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "65513" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738013106043679; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:11 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:11 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "179" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381031" ] }, "body": { "string": "[{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:09:16 +0000 2014\",\"id\":535162914437890048,\"id_str\":\"535162914437890048\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DJey6s3yJO\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:08:10 +0000 2014\",\"id\":535162638578515968,\"id_str\":\"535162638578515968\",\"text\":\"testing 1000 http:\\/\\/t.co\\/KaBNMsN9y3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 15:10:06 +0000 2014\",\"id\":533638078091759616,\"id_str\":\"533638078091759616\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VfbPrXOmQG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 13:35:04 +0000 2014\",\"id\":533614161096617984,\"id_str\":\"533614161096617984\",\"text\":\"testing 1000 http:\\/\\/t.co\\/w94UErYw0G\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 20:05:12 +0000 2014\",\"id\":532625175624163328,\"id_str\":\"532625175624163328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tzKZ9823Op\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 02 17:54:47 +0000 2014\",\"id\":528968476996550658,\"id_str\":\"528968476996550658\",\"text\":\"testing 1000 http:\\/\\/t.co\\/eIaw6uflqe\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 30 19:00:40 +0000 2014\",\"id\":527897893441507328,\"id_str\":\"527897893441507328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Z6xcfiwNbI\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Oct 28 19:01:58 +0000 2014\",\"id\":527173447017713664,\"id_str\":\"527173447017713664\",\"text\":\"testing 1000 http:\\/\\/t.co\\/L5f2BasSkB\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Oct 25 04:32:25 +0000 2014\",\"id\":525867453255925761,\"id_str\":\"525867453255925761\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Cdqddk0LVj\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 23 23:14:46 +0000 2014\",\"id\":525425125781696512,\"id_str\":\"525425125781696512\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DfBljRX0jg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Oct 22 01:37:08 +0000 2014\",\"id\":524736177669038080,\"id_str\":\"524736177669038080\",\"text\":\"testing 1000 http:\\/\\/t.co\\/j1OoDHzPi2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Oct 12 14:03:55 +0000 2014\",\"id\":521300231275573248,\"id_str\":\"521300231275573248\",\"text\":\"testing 1000 http:\\/\\/t.co\\/knm02MhHgF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Oct 10 19:01:44 +0000 2014\",\"id\":520650406158823424,\"id_str\":\"520650406158823424\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Joo3ArWQDt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 09 10:17:28 +0000 2014\",\"id\":520156080920203264,\"id_str\":\"520156080920203264\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wjYfw7uiV8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 02 23:00:33 +0000 2014\",\"id\":517811404171014145,\"id_str\":\"517811404171014145\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9NqbF1Ypqp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Sep 20 00:06:16 +0000 2014\",\"id\":513116899798839296,\"id_str\":\"513116899798839296\",\"text\":\"testing 1000 http:\\/\\/t.co\\/yc6WGlcF3d\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":513116899618480128,\"id_str\":\"513116899618480128\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"url\":\"http:\\/\\/t.co\\/yc6WGlcF3d\",\"display_url\":\"pic.twitter.com\\/yc6WGlcF3d\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513116899798839296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":513116899618480128,\"id_str\":\"513116899618480128\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bx71GgICYAAFCo3.png\",\"url\":\"http:\\/\\/t.co\\/yc6WGlcF3d\",\"display_url\":\"pic.twitter.com\\/yc6WGlcF3d\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/513116899798839296\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:11 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "314c81f453ef7fcacd4ac689885610af" ], "x-rate-limit-limit": [ "180" ], "server": [ "tsa_b" ], "x-transaction": [ "032e1f5014c347c7" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "81963" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738013159174179; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:11 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:11 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "178" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417381031" ] }, "body": { "string": "[{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":289,\"favorite_count\":392,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 25 22:02:11 +0000 2014\",\"id\":537365660850876418,\"id_str\":\"537365660850876418\",\"text\":\"RT @vine: Never miss a Vine from your favorite Viners. Tap the star to favorite their accounts & be notified when they post. http:\\/\\/t.co\\/EP\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 16:05:28 +0000 2014\",\"id\":537275889411977217,\"id_str\":\"537275889411977217\",\"text\":\"Never miss a Vine from your favorite Viners. Tap the star to favorite their accounts & be notified when they post. http:\\/\\/t.co\\/EPAHSN69JP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":586671909,\"id_str\":\"586671909\",\"name\":\"Vine\",\"screen_name\":\"vine\",\"location\":\"\",\"profile_location\":null,\"description\":\"The best way to create and share short, looping videos. Free for iPhone, Android and Windows Phone. For support, tweet @VineHelp.\",\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"expanded_url\":\"http:\\/\\/vine.co\",\"display_url\":\"vine.co\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11712740,\"friends_count\":43,\"listed_count\":6640,\"created_at\":\"Mon May 21 14:34:36 +0000 2012\",\"favourites_count\":694,\"utc_offset\":-14400,\"time_zone\":\"Atlantic Time (Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":677,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F1F1EC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586671909\\/1408551006\",\"profile_link_color\":\"00BF8F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":282,\"favorite_count\":741,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":282,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vine\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[3,8]}],\"urls\":[],\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":537275889411977217,\"source_status_id_str\":\"537275889411977217\"}]},\"extended_entities\":{\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":537275889411977217,\"source_status_id_str\":\"537275889411977217\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 25 17:07:59 +0000 2014\",\"id\":537291621323128832,\"id_str\":\"537291621323128832\",\"text\":\"RT @TwitterAds: Introducing Twitter Offers, a new way for merchants to connect with customers and grow business through Twitter https:\\/\\/t.c\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 17:02:44 +0000 2014\",\"id\":537290298498379776,\"id_str\":\"537290298498379776\",\"text\":\"Introducing Twitter Offers, a new way for merchants to connect with customers and grow business through Twitter https:\\/\\/t.co\\/bYS05v258E\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":357750891,\"id_str\":\"357750891\",\"name\":\"Twitter Advertising\",\"screen_name\":\"TwitterAds\",\"location\":\"San Francisco, CA \",\"profile_location\":null,\"description\":\"Your source for Twitter Ads product updates, tips, success stories and support. Need help? http:\\/\\/t.co\\/8vxlEFmaE5\",\"url\":\"http:\\/\\/t.co\\/44ez09dJjJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/44ez09dJjJ\",\"expanded_url\":\"http:\\/\\/advertising.twitter.com\",\"display_url\":\"advertising.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8vxlEFmaE5\",\"expanded_url\":\"http:\\/\\/ow.ly\\/kshRw\",\"display_url\":\"ow.ly\\/kshRw\",\"indices\":[91,113]}]}},\"protected\":false,\"followers_count\":449850,\"friends_count\":75,\"listed_count\":2562,\"created_at\":\"Thu Aug 18 21:08:15 +0000 2011\",\"favourites_count\":507,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3818,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531882230440677376\\/HGgK3TBY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531882230440677376\\/HGgK3TBY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/357750891\\/1396959666\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":268,\"favorite_count\":285,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYS05v258E\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/introducing-twitter-offers\",\"display_url\":\"blog.twitter.com\\/2014\\/introduci\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":268,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterAds\",\"name\":\"Twitter Advertising\",\"id\":357750891,\"id_str\":\"357750891\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYS05v258E\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/introducing-twitter-offers\",\"display_url\":\"blog.twitter.com\\/2014\\/introduci\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 24 21:10:59 +0000 2014\",\"id\":536990385831047169,\"id_str\":\"536990385831047169\",\"text\":\"Via @Guardian, see how one journalist is using @Vine to raise awareness about the Ebola crisis in Sierra Leone: http:\\/\\/t.co\\/uAeHSfE6dy\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":252,\"favorite_count\":439,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[4,13]},{\"screen_name\":\"vine\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[47,52]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uAeHSfE6dy\",\"expanded_url\":\"http:\\/\\/www.theguardian.com\\/media\\/2014\\/nov\\/23\\/vine-comedy-clips-journalistic-tool-alex-thomson\",\"display_url\":\"theguardian.com\\/media\\/2014\\/nov\\u2026\",\"indices\":[112,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Nov 20 19:57:39 +0000 2014\",\"id\":535522377879146496,\"id_str\":\"535522377879146496\",\"text\":\"Starting today, we're rolling out the ability for you to share Tweets via Direct Messages: https:\\/\\/t.co\\/zRFhYTfKDP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1162,\"favorite_count\":896,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zRFhYTfKDP\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/share-a-tweet-through-direct-messages\",\"display_url\":\"blog.twitter.com\\/2014\\/share-a-t\\u2026\",\"indices\":[91,114]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 18:08:19 +0000 2014\",\"id\":535132476218150912,\"id_str\":\"535132476218150912\",\"text\":\"Giving #thanks in 140 characters: what are you grateful for? https:\\/\\/t.co\\/PyJnA1P41n\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":301,\"favorite_count\":464,\"entities\":{\"hashtags\":[{\"text\":\"thanks\",\"indices\":[7,14]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PyJnA1P41n\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/giving-thanks-in-140-characters\",\"display_url\":\"blog.twitter.com\\/2014\\/giving-th\\u2026\",\"indices\":[61,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 17:06:35 +0000 2014\",\"id\":535116943477313536,\"id_str\":\"535116943477313536\",\"text\":\"Move over, Cyber Monday, for \\u201cTwitter Wednesday\\u201d - biggest day for conversation around deals, sales (@mainstr): http:\\/\\/t.co\\/4Xp4r9EeFE\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":226,\"favorite_count\":384,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MainStr\",\"name\":\"MainStreet\",\"id\":15767621,\"id_str\":\"15767621\",\"indices\":[101,109]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4Xp4r9EeFE\",\"expanded_url\":\"http:\\/\\/www.mainstreet.com\\/article\\/twitter-wednesday-joins-black-friday-and-cyber-monday-for-bargains\\/page\\/2\",\"display_url\":\"mainstreet.com\\/article\\/twitte\\u2026\",\"indices\":[114,136]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 22:33:24 +0000 2014\",\"id\":534836800276410370,\"id_str\":\"534836800276410370\",\"text\":\"RT @twitterforgood: Find out what our offices around the globe did to support local organizations on #FridayforGood: https:\\/\\/t.co\\/h3sFVFJGMg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 18 22:30:03 +0000 2014\",\"id\":534835958710272003,\"id_str\":\"534835958710272003\",\"text\":\"Find out what our offices around the globe did to support local organizations on #FridayforGood: https:\\/\\/t.co\\/h3sFVFJGMg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1884191208,\"id_str\":\"1884191208\",\"name\":\"Twitter for Good\",\"screen_name\":\"twitterforgood\",\"location\":\"\",\"profile_location\":null,\"description\":\"Highlighting our social good initiatives in San Francisco, and around the world.\",\"url\":\"https:\\/\\/t.co\\/3IiN18On01\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3IiN18On01\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/twitter-for-good\",\"display_url\":\"blog.twitter.com\\/twitter-for-go\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5812,\"friends_count\":22,\"listed_count\":89,\"created_at\":\"Thu Sep 19 19:58:52 +0000 2013\",\"favourites_count\":214,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":217,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000545566440\\/b311670ee00df2c1ba62900a50b73e93_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000545566440\\/b311670ee00df2c1ba62900a50b73e93_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1884191208\\/1399586556\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":154,\"favorite_count\":224,\"entities\":{\"hashtags\":[{\"text\":\"FridayforGood\",\"indices\":[81,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h3sFVFJGMg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/lending-a-helping-hand-on-fridayforgood-november\",\"display_url\":\"blog.twitter.com\\/2014\\/lending-a\\u2026\",\"indices\":[97,120]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":154,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FridayforGood\",\"indices\":[101,115]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitterforgood\",\"name\":\"Twitter for Good\",\"id\":1884191208,\"id_str\":\"1884191208\",\"indices\":[3,18]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h3sFVFJGMg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/lending-a-helping-hand-on-fridayforgood-november\",\"display_url\":\"blog.twitter.com\\/2014\\/lending-a\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 19:16:14 +0000 2014\",\"id\":534787182938976256,\"id_str\":\"534787182938976256\",\"text\":\"All the world's a stage on #LoveTheatre day. Celebrate tomorrow with @TwitterUK and 300 theaters & organizations: https:\\/\\/t.co\\/rUmbrpd98g\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":295,\"favorite_count\":360,\"entities\":{\"hashtags\":[{\"text\":\"LoveTheatre\",\"indices\":[27,39]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterUK\",\"name\":\"Twitter UK\",\"id\":277761722,\"id_str\":\"277761722\",\"indices\":[69,79]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rUmbrpd98g\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/en-gb\\/2014\\/roll-up-for-lovetheatre-day-on-twitter\",\"display_url\":\"blog.twitter.com\\/en-gb\\/2014\\/rol\\u2026\",\"indices\":[118,141]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 18:15:56 +0000 2014\",\"id\":534772008198742017,\"id_str\":\"534772008198742017\",\"text\":\"RT @TwitterEng: We're rolling out the ability to search for every Tweet ever published. Learn about how we built this https:\\/\\/t.co\\/KhbgVHZt\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 18 17:40:30 +0000 2014\",\"id\":534763087757189120,\"id_str\":\"534763087757189120\",\"text\":\"We're rolling out the ability to search for every Tweet ever published. Learn about how we built this https:\\/\\/t.co\\/KhbgVHZtYE #TwitterSearch\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641775,\"friends_count\":0,\"listed_count\":3474,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1418,\"favorite_count\":1054,\"entities\":{\"hashtags\":[{\"text\":\"TwitterSearch\",\"indices\":[126,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhbgVHZtYE\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/building-a-complete-tweet-index\",\"display_url\":\"blog.twitter.com\\/2014\\/building-\\u2026\",\"indices\":[102,125]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1418,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"TwitterSearch\",\"indices\":[139,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhbgVHZtYE\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/building-a-complete-tweet-index\",\"display_url\":\"blog.twitter.com\\/2014\\/building-\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 17 18:16:56 +0000 2014\",\"id\":534409871592943616,\"id_str\":\"534409871592943616\",\"text\":\"Correction: it\\u2019s @SethRogen & @evandgoldberg doing Twitter Q&A Tuesday Nov 18, 4pm PT. Send your questions using #TheInterviewMovie.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":155,\"favorite_count\":282,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[121,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[17,27]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[34,48]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 17 17:20:06 +0000 2014\",\"id\":534395568269688832,\"id_str\":\"534395568269688832\",\"text\":\"Hey, @SethRogen & @EvanGoldberg are doing Twitter Q&A from our HQ Tuesday Nov 18, 4pm PT. Send your questions using #TheInterviewMovie.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":135,\"favorite_count\":267,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[124,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[5,15]},{\"screen_name\":\"evangoldberg\",\"name\":\"Evan Goldberg\",\"id\":17544053,\"id_str\":\"17544053\",\"indices\":[22,35]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Nov 13 15:01:21 +0000 2014\",\"id\":532911097175498752,\"id_str\":\"532911097175498752\",\"text\":\"The @WhiteHouse just debuted new #ItsOnUs PSA w\\/ Twitter video tool. Watch this important message here: https:\\/\\/t.co\\/k8XAk4Cp2n\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":459,\"favorite_count\":464,\"entities\":{\"hashtags\":[{\"text\":\"ItsOnUs\",\"indices\":[33,41]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[4,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k8XAk4Cp2n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/532908216019984384\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[104,127]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 19:07:23 +0000 2014\",\"id\":532610627382951936,\"id_str\":\"532610627382951936\",\"text\":\"Here are some insights into product improvements we\\u2019re bringing to Twitter in the coming months: https:\\/\\/t.co\\/Svds9V8UBW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":585,\"favorite_count\":659,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Svds9V8UBW\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/coming-soon-to-twitter\",\"display_url\":\"blog.twitter.com\\/2014\\/coming-so\\u2026\",\"indices\":[97,120]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 14:46:32 +0000 2014\",\"id\":532544981131481091,\"id_str\":\"532544981131481091\",\"text\":\"Wow! @ESA_Rosetta Tweets \\u2018farewell\\u2018 photo from space of @Philae2014 heading towards its historic #CometLanding http:\\/\\/t.co\\/AYRLHrpXVy\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":673,\"favorite_count\":777,\"entities\":{\"hashtags\":[{\"text\":\"CometLanding\",\"indices\":[97,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ESA_Rosetta\",\"name\":\"ESA Rosetta Mission\",\"id\":253536357,\"id_str\":\"253536357\",\"indices\":[5,17]},{\"screen_name\":\"Philae2014\",\"name\":\"Philae Lander\",\"id\":208442526,\"id_str\":\"208442526\",\"indices\":[56,67]}],\"urls\":[],\"media\":[{\"id\":532544980720443392,\"id_str\":\"532544980720443392\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"url\":\"http:\\/\\/t.co\\/AYRLHrpXVy\",\"display_url\":\"pic.twitter.com\\/AYRLHrpXVy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532544981131481091\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":556,\"h\":559,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":556,\"h\":559,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532544980720443392,\"id_str\":\"532544980720443392\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"url\":\"http:\\/\\/t.co\\/AYRLHrpXVy\",\"display_url\":\"pic.twitter.com\\/AYRLHrpXVy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532544981131481091\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":556,\"h\":559,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":556,\"h\":559,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 11 19:32:29 +0000 2014\",\"id\":532254554071769089,\"id_str\":\"532254554071769089\",\"text\":\"RT @TwitterSports: Our #NFL recap of week 10 takes your favorite sport, then turns it up to 11. https:\\/\\/t.co\\/NXjC8vQhyq http:\\/\\/t.co\\/PaFGlZI\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 11 19:25:30 +0000 2014\",\"id\":532252796225986560,\"id_str\":\"532252796225986560\",\"text\":\"Our #NFL recap of week 10 takes your favorite sport, then turns it up to 11. https:\\/\\/t.co\\/NXjC8vQhyq http:\\/\\/t.co\\/PaFGlZIWcQ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4248281,\"friends_count\":263,\"listed_count\":6486,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2138,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":216,\"favorite_count\":301,\"entities\":{\"hashtags\":[{\"text\":\"NFL\",\"indices\":[4,8]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NXjC8vQhyq\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/the-nfl-on-twitter-week-10\",\"display_url\":\"blog.twitter.com\\/2014\\/the-nfl-o\\u2026\",\"indices\":[77,100]}],\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[101,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[101,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":216,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"NFL\",\"indices\":[23,27]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterSports\",\"name\":\"Twitter Sports\",\"id\":300392950,\"id_str\":\"300392950\",\"indices\":[3,17]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NXjC8vQhyq\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/the-nfl-on-twitter-week-10\",\"display_url\":\"blog.twitter.com\\/2014\\/the-nfl-o\\u2026\",\"indices\":[96,119]}],\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":532252796225986560,\"source_status_id_str\":\"532252796225986560\"}]},\"extended_entities\":{\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":532252796225986560,\"source_status_id_str\":\"532252796225986560\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 11 18:57:48 +0000 2014\",\"id\":532245825997398016,\"id_str\":\"532245825997398016\",\"text\":\"Last night @Jeopardy featured a category called Twitter Feeds. We'll take \\\"Best Category Ever\\\" for $500, Alex. http:\\/\\/t.co\\/RJ8OMh0vIW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":406,\"favorite_count\":676,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jeopardy\",\"name\":\"Jeopardy!\",\"id\":52554306,\"id_str\":\"52554306\",\"indices\":[11,20]}],\"urls\":[],\"media\":[{\"id\":532245825355673601,\"id_str\":\"532245825355673601\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"url\":\"http:\\/\\/t.co\\/RJ8OMh0vIW\",\"display_url\":\"pic.twitter.com\\/RJ8OMh0vIW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532245825997398016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":394,\"h\":419,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":394,\"h\":419,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532245825355673601,\"id_str\":\"532245825355673601\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"url\":\"http:\\/\\/t.co\\/RJ8OMh0vIW\",\"display_url\":\"pic.twitter.com\\/RJ8OMh0vIW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532245825997398016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":394,\"h\":419,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":394,\"h\":419,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 05 18:42:24 +0000 2014\",\"id\":530067625791868928,\"id_str\":\"530067625791868928\",\"text\":\"It just got easier to Tweet on http:\\/\\/t.co\\/SlNTFacp9A. You can now compose new Tweets at the top of your home timeline.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1162,\"favorite_count\":1179,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlNTFacp9A\",\"expanded_url\":\"http:\\/\\/Twitter.com\",\"display_url\":\"Twitter.com\",\"indices\":[31,53]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 04 15:47:00 +0000 2014\",\"id\":529661094508236800,\"id_str\":\"529661094508236800\",\"text\":\"RT @gov: #Election2014: keeping you informed on the midterms https:\\/\\/t.co\\/gzUv5lbvQC\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 04 14:35:26 +0000 2014\",\"id\":529643085022502912,\"id_str\":\"529643085022502912\",\"text\":\"#Election2014: keeping you informed on the midterms https:\\/\\/t.co\\/gzUv5lbvQC\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":748852,\"friends_count\":3,\"listed_count\":3343,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":190,\"favorite_count\":291,\"entities\":{\"hashtags\":[{\"text\":\"Election2014\",\"indices\":[0,13]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gzUv5lbvQC\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/election2014-keeping-you-informed-on-the-midterms\",\"display_url\":\"blog.twitter.com\\/2014\\/election2\\u2026\",\"indices\":[52,75]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":190,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Election2014\",\"indices\":[9,22]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gov\",\"name\":\"Twitter Government\",\"id\":222953824,\"id_str\":\"222953824\",\"indices\":[3,7]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gzUv5lbvQC\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/election2014-keeping-you-informed-on-the-midterms\",\"display_url\":\"blog.twitter.com\\/2014\\/election2\\u2026\",\"indices\":[61,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 01 22:53:33 +0000 2014\",\"id\":528681275725328384,\"id_str\":\"528681275725328384\",\"text\":\"RT @TwitterMovies: Check out the Twitter Q&A with @JimCarrey and @Jeff_Daniels here: https:\\/\\/t.co\\/0eRh8nBeOX #DumbTo\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33620563,\"friends_count\":101,\"listed_count\":86770,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 01 22:29:39 +0000 2014\",\"id\":528675264327581696,\"id_str\":\"528675264327581696\",\"text\":\"Check out the Twitter Q&A with @JimCarrey and @Jeff_Daniels here: https:\\/\\/t.co\\/0eRh8nBeOX #DumbTo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":436266454,\"id_str\":\"436266454\",\"name\":\"Twitter Movies\",\"screen_name\":\"TwitterMovies\",\"location\":\"\",\"profile_location\":null,\"description\":\"News, trailers, and fun facts from the silver screen.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2316694,\"friends_count\":179,\"listed_count\":2869,\"created_at\":\"Wed Dec 14 00:18:42 +0000 2011\",\"favourites_count\":124,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1874,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/436266454\\/1347404339\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":216,\"favorite_count\":384,\"entities\":{\"hashtags\":[{\"text\":\"DumbTo\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JimCarrey\",\"name\":\"Jim Carrey\",\"id\":52551600,\"id_str\":\"52551600\",\"indices\":[35,45]},{\"screen_name\":\"Jeff_Daniels\",\"name\":\"Jeff Daniels\",\"id\":506652594,\"id_str\":\"506652594\",\"indices\":[50,63]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0eRh8nBeOX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/528654634693320704\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[70,93]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":216,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"DumbTo\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterMovies\",\"name\":\"Twitter Movies\",\"id\":436266454,\"id_str\":\"436266454\",\"indices\":[3,17]},{\"screen_name\":\"JimCarrey\",\"name\":\"Jim Carrey\",\"id\":52551600,\"id_str\":\"52551600\",\"indices\":[54,64]},{\"screen_name\":\"Jeff_Daniels\",\"name\":\"Jeff Daniels\",\"id\":506652594,\"id_str\":\"506652594\",\"indices\":[69,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0eRh8nBeOX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/528654634693320704\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[89,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:16:05 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "3bcb247784681a6d03a18730956bad7c" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401065" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "65513" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:05 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "179" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740016532124568; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:05 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "136d7ae40c29d04b" ] }, "body": { "string": "[{\"created_at\":\"Mon Dec 01 02:16:04 +0000 2014\",\"id\":539241489755557888,\"id_str\":\"539241489755557888\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5wyi6Tyl0A\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 30 19:24:54 +0000 2014\",\"id\":539138015181160448,\"id_str\":\"539138015181160448\",\"text\":\"testing 1000 http:\\/\\/t.co\\/AYksz2oIC5\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":539138015076290560,\"id_str\":\"539138015076290560\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3tnKxGIEAAkMeT.png\",\"url\":\"http:\\/\\/t.co\\/AYksz2oIC5\",\"display_url\":\"pic.twitter.com\\/AYksz2oIC5\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539138015181160448\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 29 12:24:19 +0000 2014\",\"id\":538669787388596225,\"id_str\":\"538669787388596225\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VRnep3xgr4\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":538669787350851584,\"id_str\":\"538669787350851584\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3m9UU5IYAAU5e7.png\",\"url\":\"http:\\/\\/t.co\\/VRnep3xgr4\",\"display_url\":\"pic.twitter.com\\/VRnep3xgr4\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/538669787388596225\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:09:16 +0000 2014\",\"id\":535162914437890048,\"id_str\":\"535162914437890048\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DJey6s3yJO\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162914341392384,\"id_str\":\"535162914341392384\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21H1c5IEAAzjPf.png\",\"url\":\"http:\\/\\/t.co\\/DJey6s3yJO\",\"display_url\":\"pic.twitter.com\\/DJey6s3yJO\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162914437890048\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 20:08:10 +0000 2014\",\"id\":535162638578515968,\"id_str\":\"535162638578515968\",\"text\":\"testing 1000 http:\\/\\/t.co\\/KaBNMsN9y3\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":535162638414921730,\"id_str\":\"535162638414921730\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B21HlY_IQAIc6px.png\",\"url\":\"http:\\/\\/t.co\\/KaBNMsN9y3\",\"display_url\":\"pic.twitter.com\\/KaBNMsN9y3\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/535162638578515968\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 15:10:06 +0000 2014\",\"id\":533638078091759616,\"id_str\":\"533638078091759616\",\"text\":\"testing 1000 http:\\/\\/t.co\\/VfbPrXOmQG\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533638077986926593,\"id_str\":\"533638077986926593\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fdAS0IcAEnzcp.png\",\"url\":\"http:\\/\\/t.co\\/VfbPrXOmQG\",\"display_url\":\"pic.twitter.com\\/VfbPrXOmQG\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533638078091759616\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 15 13:35:04 +0000 2014\",\"id\":533614161096617984,\"id_str\":\"533614161096617984\",\"text\":\"testing 1000 http:\\/\\/t.co\\/w94UErYw0G\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":533614160962408448,\"id_str\":\"533614160962408448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2fHQI9IUAAHDKM.png\",\"url\":\"http:\\/\\/t.co\\/w94UErYw0G\",\"display_url\":\"pic.twitter.com\\/w94UErYw0G\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/533614161096617984\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 20:05:12 +0000 2014\",\"id\":532625175624163328,\"id_str\":\"532625175624163328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tzKZ9823Op\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532625175468974080,\"id_str\":\"532625175468974080\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2RDxm5CIAAAQL6.png\",\"url\":\"http:\\/\\/t.co\\/tzKZ9823Op\",\"display_url\":\"pic.twitter.com\\/tzKZ9823Op\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/532625175624163328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Nov 02 17:54:47 +0000 2014\",\"id\":528968476996550658,\"id_str\":\"528968476996550658\",\"text\":\"testing 1000 http:\\/\\/t.co\\/eIaw6uflqe\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":528968476887506944,\"id_str\":\"528968476887506944\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1dGBvJCYAALmw8.png\",\"url\":\"http:\\/\\/t.co\\/eIaw6uflqe\",\"display_url\":\"pic.twitter.com\\/eIaw6uflqe\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/528968476996550658\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 30 19:00:40 +0000 2014\",\"id\":527897893441507328,\"id_str\":\"527897893441507328\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Z6xcfiwNbI\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527897893210816512,\"id_str\":\"527897893210816512\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1N4VkKCAAA3T5W.png\",\"url\":\"http:\\/\\/t.co\\/Z6xcfiwNbI\",\"display_url\":\"pic.twitter.com\\/Z6xcfiwNbI\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527897893441507328\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Oct 28 19:01:58 +0000 2014\",\"id\":527173447017713664,\"id_str\":\"527173447017713664\",\"text\":\"testing 1000 http:\\/\\/t.co\\/L5f2BasSkB\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":527173446917033985,\"id_str\":\"527173446917033985\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B1DldPaCEAEk_aJ.png\",\"url\":\"http:\\/\\/t.co\\/L5f2BasSkB\",\"display_url\":\"pic.twitter.com\\/L5f2BasSkB\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/527173447017713664\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Oct 25 04:32:25 +0000 2014\",\"id\":525867453255925761,\"id_str\":\"525867453255925761\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Cdqddk0LVj\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525867452823920641,\"id_str\":\"525867452823920641\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0xBqYSCYAEulrq.png\",\"url\":\"http:\\/\\/t.co\\/Cdqddk0LVj\",\"display_url\":\"pic.twitter.com\\/Cdqddk0LVj\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525867453255925761\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 23 23:14:46 +0000 2014\",\"id\":525425125781696512,\"id_str\":\"525425125781696512\",\"text\":\"testing 1000 http:\\/\\/t.co\\/DfBljRX0jg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":525425125651677185,\"id_str\":\"525425125651677185\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0qvXjKIgAEuypM.png\",\"url\":\"http:\\/\\/t.co\\/DfBljRX0jg\",\"display_url\":\"pic.twitter.com\\/DfBljRX0jg\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/525425125781696512\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Oct 22 01:37:08 +0000 2014\",\"id\":524736177669038080,\"id_str\":\"524736177669038080\",\"text\":\"testing 1000 http:\\/\\/t.co\\/j1OoDHzPi2\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":524736177471897601,\"id_str\":\"524736177471897601\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B0g8xfMCQAEPkd3.png\",\"url\":\"http:\\/\\/t.co\\/j1OoDHzPi2\",\"display_url\":\"pic.twitter.com\\/j1OoDHzPi2\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/524736177669038080\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Oct 12 14:03:55 +0000 2014\",\"id\":521300231275573248,\"id_str\":\"521300231275573248\",\"text\":\"testing 1000 http:\\/\\/t.co\\/knm02MhHgF\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":521300230944206848,\"id_str\":\"521300230944206848\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BzwHzE7CMAAGu5M.png\",\"url\":\"http:\\/\\/t.co\\/knm02MhHgF\",\"display_url\":\"pic.twitter.com\\/knm02MhHgF\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/521300231275573248\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Oct 10 19:01:44 +0000 2014\",\"id\":520650406158823424,\"id_str\":\"520650406158823424\",\"text\":\"testing 1000 http:\\/\\/t.co\\/Joo3ArWQDt\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520650405982650368,\"id_str\":\"520650405982650368\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzm4ySTCQAA76BP.png\",\"url\":\"http:\\/\\/t.co\\/Joo3ArWQDt\",\"display_url\":\"pic.twitter.com\\/Joo3ArWQDt\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520650406158823424\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 09 10:17:28 +0000 2014\",\"id\":520156080920203264,\"id_str\":\"520156080920203264\",\"text\":\"testing 1000 http:\\/\\/t.co\\/wjYfw7uiV8\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":520156080798568448,\"id_str\":\"520156080798568448\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/Bzf3MxfCEAAxKcV.png\",\"url\":\"http:\\/\\/t.co\\/wjYfw7uiV8\",\"display_url\":\"pic.twitter.com\\/wjYfw7uiV8\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/520156080920203264\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Oct 02 23:00:33 +0000 2014\",\"id\":517811404171014145,\"id_str\":\"517811404171014145\",\"text\":\"testing 1000 http:\\/\\/t.co\\/9NqbF1Ypqp\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":517811403986460673,\"id_str\":\"517811403986460673\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/By-iuntCYAEGlEC.png\",\"url\":\"http:\\/\\/t.co\\/9NqbF1Ypqp\",\"display_url\":\"pic.twitter.com\\/9NqbF1Ypqp\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/517811404171014145\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/statuses/user_timeline.json?id=twitter", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:16:06 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "be179b9196c399c02d7b04a71f4736a6" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401065" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "81963" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:06 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "180" ], "x-rate-limit-remaining": [ "178" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740016610594270; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:06 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "7a6523007bd95cfb" ] }, "body": { "string": "[{\"created_at\":\"Wed Nov 26 16:29:15 +0000 2014\",\"id\":537644262628663296,\"id_str\":\"537644262628663296\",\"text\":\"We love a good bird reference. Cast your vote to help the @WhiteHouse select the National Thanksgiving Turkey: https:\\/\\/t.co\\/wMP98fpiEw\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":290,\"favorite_count\":398,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[58,69]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/wMP98fpiEw\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/537617841928015872\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[111,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 25 22:02:11 +0000 2014\",\"id\":537365660850876418,\"id_str\":\"537365660850876418\",\"text\":\"RT @vine: Never miss a Vine from your favorite Viners. Tap the star to favorite their accounts & be notified when they post. http:\\/\\/t.co\\/EP\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 16:05:28 +0000 2014\",\"id\":537275889411977217,\"id_str\":\"537275889411977217\",\"text\":\"Never miss a Vine from your favorite Viners. Tap the star to favorite their accounts & be notified when they post. http:\\/\\/t.co\\/EPAHSN69JP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=12\\\" rel=\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":586671909,\"id_str\":\"586671909\",\"name\":\"Vine\",\"screen_name\":\"vine\",\"location\":\"\",\"profile_location\":null,\"description\":\"The best way to create and share short, looping videos. Free for iPhone, Android and Windows Phone. For support, tweet @VineHelp.\",\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"expanded_url\":\"http:\\/\\/vine.co\",\"display_url\":\"vine.co\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":11715121,\"friends_count\":43,\"listed_count\":6641,\"created_at\":\"Mon May 21 14:34:36 +0000 2012\",\"favourites_count\":694,\"utc_offset\":-14400,\"time_zone\":\"Atlantic Time (Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":677,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"F1F1EC\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/586671909\\/1408551006\",\"profile_link_color\":\"00BF8F\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":284,\"favorite_count\":750,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[119,141],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":284,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"vine\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[3,8]}],\"urls\":[],\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":537275889411977217,\"source_status_id_str\":\"537275889411977217\"}]},\"extended_entities\":{\"media\":[{\"id\":537275889068048384,\"id_str\":\"537275889068048384\",\"indices\":[143,144],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3TJkxJIgAAEUDr.png\",\"url\":\"http:\\/\\/t.co\\/EPAHSN69JP\",\"display_url\":\"pic.twitter.com\\/EPAHSN69JP\",\"expanded_url\":\"http:\\/\\/twitter.com\\/vine\\/status\\/537275889411977217\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":537275889411977217,\"source_status_id_str\":\"537275889411977217\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 25 17:07:59 +0000 2014\",\"id\":537291621323128832,\"id_str\":\"537291621323128832\",\"text\":\"RT @TwitterAds: Introducing Twitter Offers, a new way for merchants to connect with customers and grow business through Twitter https:\\/\\/t.c\\u2026\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 25 17:02:44 +0000 2014\",\"id\":537290298498379776,\"id_str\":\"537290298498379776\",\"text\":\"Introducing Twitter Offers, a new way for merchants to connect with customers and grow business through Twitter https:\\/\\/t.co\\/bYS05v258E\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":357750891,\"id_str\":\"357750891\",\"name\":\"Twitter Advertising\",\"screen_name\":\"TwitterAds\",\"location\":\"San Francisco, CA \",\"profile_location\":null,\"description\":\"Your source for Twitter Ads product updates, tips, success stories and support. Need help? http:\\/\\/t.co\\/8vxlEFmaE5\",\"url\":\"http:\\/\\/t.co\\/44ez09dJjJ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/44ez09dJjJ\",\"expanded_url\":\"http:\\/\\/advertising.twitter.com\",\"display_url\":\"advertising.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/8vxlEFmaE5\",\"expanded_url\":\"http:\\/\\/ow.ly\\/kshRw\",\"display_url\":\"ow.ly\\/kshRw\",\"indices\":[91,113]}]}},\"protected\":false,\"followers_count\":449927,\"friends_count\":75,\"listed_count\":2560,\"created_at\":\"Thu Aug 18 21:08:15 +0000 2011\",\"favourites_count\":507,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3818,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531882230440677376\\/HGgK3TBY_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531882230440677376\\/HGgK3TBY_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/357750891\\/1396959666\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":269,\"favorite_count\":288,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYS05v258E\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/introducing-twitter-offers\",\"display_url\":\"blog.twitter.com\\/2014\\/introduci\\u2026\",\"indices\":[112,135]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":269,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterAds\",\"name\":\"Twitter Advertising\",\"id\":357750891,\"id_str\":\"357750891\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/bYS05v258E\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/introducing-twitter-offers\",\"display_url\":\"blog.twitter.com\\/2014\\/introduci\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 24 21:10:59 +0000 2014\",\"id\":536990385831047169,\"id_str\":\"536990385831047169\",\"text\":\"Via @Guardian, see how one journalist is using @Vine to raise awareness about the Ebola crisis in Sierra Leone: http:\\/\\/t.co\\/uAeHSfE6dy\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":252,\"favorite_count\":440,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"guardian\",\"name\":\"The Guardian\",\"id\":87818409,\"id_str\":\"87818409\",\"indices\":[4,13]},{\"screen_name\":\"vine\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[47,52]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uAeHSfE6dy\",\"expanded_url\":\"http:\\/\\/www.theguardian.com\\/media\\/2014\\/nov\\/23\\/vine-comedy-clips-journalistic-tool-alex-thomson\",\"display_url\":\"theguardian.com\\/media\\/2014\\/nov\\u2026\",\"indices\":[112,134]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Nov 20 19:57:39 +0000 2014\",\"id\":535522377879146496,\"id_str\":\"535522377879146496\",\"text\":\"Starting today, we're rolling out the ability for you to share Tweets via Direct Messages: https:\\/\\/t.co\\/zRFhYTfKDP\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1162,\"favorite_count\":898,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/zRFhYTfKDP\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/share-a-tweet-through-direct-messages\",\"display_url\":\"blog.twitter.com\\/2014\\/share-a-t\\u2026\",\"indices\":[91,114]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 18:08:19 +0000 2014\",\"id\":535132476218150912,\"id_str\":\"535132476218150912\",\"text\":\"Giving #thanks in 140 characters: what are you grateful for? https:\\/\\/t.co\\/PyJnA1P41n\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":301,\"favorite_count\":464,\"entities\":{\"hashtags\":[{\"text\":\"thanks\",\"indices\":[7,14]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/PyJnA1P41n\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/giving-thanks-in-140-characters\",\"display_url\":\"blog.twitter.com\\/2014\\/giving-th\\u2026\",\"indices\":[61,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 19 17:06:35 +0000 2014\",\"id\":535116943477313536,\"id_str\":\"535116943477313536\",\"text\":\"Move over, Cyber Monday, for \\u201cTwitter Wednesday\\u201d - biggest day for conversation around deals, sales (@mainstr): http:\\/\\/t.co\\/4Xp4r9EeFE\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":226,\"favorite_count\":384,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"MainStr\",\"name\":\"MainStreet\",\"id\":15767621,\"id_str\":\"15767621\",\"indices\":[101,109]}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4Xp4r9EeFE\",\"expanded_url\":\"http:\\/\\/www.mainstreet.com\\/article\\/twitter-wednesday-joins-black-friday-and-cyber-monday-for-bargains\\/page\\/2\",\"display_url\":\"mainstreet.com\\/article\\/twitte\\u2026\",\"indices\":[114,136]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 22:33:24 +0000 2014\",\"id\":534836800276410370,\"id_str\":\"534836800276410370\",\"text\":\"RT @twitterforgood: Find out what our offices around the globe did to support local organizations on #FridayforGood: https:\\/\\/t.co\\/h3sFVFJGMg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 18 22:30:03 +0000 2014\",\"id\":534835958710272003,\"id_str\":\"534835958710272003\",\"text\":\"Find out what our offices around the globe did to support local organizations on #FridayforGood: https:\\/\\/t.co\\/h3sFVFJGMg\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1884191208,\"id_str\":\"1884191208\",\"name\":\"Twitter for Good\",\"screen_name\":\"twitterforgood\",\"location\":\"\",\"profile_location\":null,\"description\":\"Highlighting our social good initiatives in San Francisco, and around the world.\",\"url\":\"https:\\/\\/t.co\\/3IiN18On01\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/3IiN18On01\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/twitter-for-good\",\"display_url\":\"blog.twitter.com\\/twitter-for-go\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":5819,\"friends_count\":22,\"listed_count\":89,\"created_at\":\"Thu Sep 19 19:58:52 +0000 2013\",\"favourites_count\":214,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":217,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/378800000545566440\\/b311670ee00df2c1ba62900a50b73e93_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/378800000545566440\\/b311670ee00df2c1ba62900a50b73e93_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1884191208\\/1399586556\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":154,\"favorite_count\":225,\"entities\":{\"hashtags\":[{\"text\":\"FridayforGood\",\"indices\":[81,95]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h3sFVFJGMg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/lending-a-helping-hand-on-fridayforgood-november\",\"display_url\":\"blog.twitter.com\\/2014\\/lending-a\\u2026\",\"indices\":[97,120]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":154,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"FridayforGood\",\"indices\":[101,115]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"twitterforgood\",\"name\":\"Twitter for Good\",\"id\":1884191208,\"id_str\":\"1884191208\",\"indices\":[3,18]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/h3sFVFJGMg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/lending-a-helping-hand-on-fridayforgood-november\",\"display_url\":\"blog.twitter.com\\/2014\\/lending-a\\u2026\",\"indices\":[117,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 19:16:14 +0000 2014\",\"id\":534787182938976256,\"id_str\":\"534787182938976256\",\"text\":\"All the world's a stage on #LoveTheatre day. Celebrate tomorrow with @TwitterUK and 300 theaters & organizations: https:\\/\\/t.co\\/rUmbrpd98g\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":295,\"favorite_count\":361,\"entities\":{\"hashtags\":[{\"text\":\"LoveTheatre\",\"indices\":[27,39]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterUK\",\"name\":\"Twitter UK\",\"id\":277761722,\"id_str\":\"277761722\",\"indices\":[69,79]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rUmbrpd98g\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/en-gb\\/2014\\/roll-up-for-lovetheatre-day-on-twitter\",\"display_url\":\"blog.twitter.com\\/en-gb\\/2014\\/rol\\u2026\",\"indices\":[118,141]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 18 18:15:56 +0000 2014\",\"id\":534772008198742017,\"id_str\":\"534772008198742017\",\"text\":\"RT @TwitterEng: We're rolling out the ability to search for every Tweet ever published. Learn about how we built this https:\\/\\/t.co\\/KhbgVHZt\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 18 17:40:30 +0000 2014\",\"id\":534763087757189120,\"id_str\":\"534763087757189120\",\"text\":\"We're rolling out the ability to search for every Tweet ever published. Learn about how we built this https:\\/\\/t.co\\/KhbgVHZtYE #TwitterSearch\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gJvsjUZJ3O\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":641907,\"friends_count\":0,\"listed_count\":3473,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":248,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6844292\\/1396958504\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1419,\"favorite_count\":1054,\"entities\":{\"hashtags\":[{\"text\":\"TwitterSearch\",\"indices\":[126,140]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhbgVHZtYE\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/building-a-complete-tweet-index\",\"display_url\":\"blog.twitter.com\\/2014\\/building-\\u2026\",\"indices\":[102,125]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":1419,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"TwitterSearch\",\"indices\":[139,140]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/KhbgVHZtYE\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/building-a-complete-tweet-index\",\"display_url\":\"blog.twitter.com\\/2014\\/building-\\u2026\",\"indices\":[139,140]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 17 18:16:56 +0000 2014\",\"id\":534409871592943616,\"id_str\":\"534409871592943616\",\"text\":\"Correction: it\\u2019s @SethRogen & @evandgoldberg doing Twitter Q&A Tuesday Nov 18, 4pm PT. Send your questions using #TheInterviewMovie.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":155,\"favorite_count\":282,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[121,139]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[17,27]},{\"screen_name\":\"evandgoldberg\",\"name\":\"Evan Goldberg\",\"id\":158639291,\"id_str\":\"158639291\",\"indices\":[34,48]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Nov 17 17:20:06 +0000 2014\",\"id\":534395568269688832,\"id_str\":\"534395568269688832\",\"text\":\"Hey, @SethRogen & @EvanGoldberg are doing Twitter Q&A from our HQ Tuesday Nov 18, 4pm PT. Send your questions using #TheInterviewMovie.\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":135,\"favorite_count\":267,\"entities\":{\"hashtags\":[{\"text\":\"TheInterviewMovie\",\"indices\":[124,142]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Sethrogen\",\"name\":\"Seth Rogen\",\"id\":443215941,\"id_str\":\"443215941\",\"indices\":[5,15]},{\"screen_name\":\"evangoldberg\",\"name\":\"Evan Goldberg\",\"id\":17544053,\"id_str\":\"17544053\",\"indices\":[22,35]}],\"urls\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Thu Nov 13 15:01:21 +0000 2014\",\"id\":532911097175498752,\"id_str\":\"532911097175498752\",\"text\":\"The @WhiteHouse just debuted new #ItsOnUs PSA w\\/ Twitter video tool. Watch this important message here: https:\\/\\/t.co\\/k8XAk4Cp2n\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":459,\"favorite_count\":464,\"entities\":{\"hashtags\":[{\"text\":\"ItsOnUs\",\"indices\":[33,41]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"WhiteHouse\",\"name\":\"The White House\",\"id\":30313925,\"id_str\":\"30313925\",\"indices\":[4,15]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/k8XAk4Cp2n\",\"expanded_url\":\"https:\\/\\/twitter.com\\/WhiteHouse\\/status\\/532908216019984384\",\"display_url\":\"twitter.com\\/WhiteHouse\\/sta\\u2026\",\"indices\":[104,127]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 19:07:23 +0000 2014\",\"id\":532610627382951936,\"id_str\":\"532610627382951936\",\"text\":\"Here are some insights into product improvements we\\u2019re bringing to Twitter in the coming months: https:\\/\\/t.co\\/Svds9V8UBW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":585,\"favorite_count\":659,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Svds9V8UBW\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/coming-soon-to-twitter\",\"display_url\":\"blog.twitter.com\\/2014\\/coming-so\\u2026\",\"indices\":[97,120]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 12 14:46:32 +0000 2014\",\"id\":532544981131481091,\"id_str\":\"532544981131481091\",\"text\":\"Wow! @ESA_Rosetta Tweets \\u2018farewell\\u2018 photo from space of @Philae2014 heading towards its historic #CometLanding http:\\/\\/t.co\\/AYRLHrpXVy\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":673,\"favorite_count\":778,\"entities\":{\"hashtags\":[{\"text\":\"CometLanding\",\"indices\":[97,110]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"ESA_Rosetta\",\"name\":\"ESA Rosetta Mission\",\"id\":253536357,\"id_str\":\"253536357\",\"indices\":[5,17]},{\"screen_name\":\"Philae2014\",\"name\":\"Philae Lander\",\"id\":208442526,\"id_str\":\"208442526\",\"indices\":[56,67]}],\"urls\":[],\"media\":[{\"id\":532544980720443392,\"id_str\":\"532544980720443392\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"url\":\"http:\\/\\/t.co\\/AYRLHrpXVy\",\"display_url\":\"pic.twitter.com\\/AYRLHrpXVy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532544981131481091\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":556,\"h\":559,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":556,\"h\":559,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532544980720443392,\"id_str\":\"532544980720443392\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2P61qLCYAAtZkE.png\",\"url\":\"http:\\/\\/t.co\\/AYRLHrpXVy\",\"display_url\":\"pic.twitter.com\\/AYRLHrpXVy\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532544981131481091\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":341,\"resize\":\"fit\"},\"medium\":{\"w\":556,\"h\":559,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":556,\"h\":559,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 11 19:32:29 +0000 2014\",\"id\":532254554071769089,\"id_str\":\"532254554071769089\",\"text\":\"RT @TwitterSports: Our #NFL recap of week 10 takes your favorite sport, then turns it up to 11. https:\\/\\/t.co\\/NXjC8vQhyq http:\\/\\/t.co\\/PaFGlZI\\u2026\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 11 19:25:30 +0000 2014\",\"id\":532252796225986560,\"id_str\":\"532252796225986560\",\"text\":\"Our #NFL recap of week 10 takes your favorite sport, then turns it up to 11. https:\\/\\/t.co\\/NXjC8vQhyq http:\\/\\/t.co\\/PaFGlZIWcQ\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"profile_location\":null,\"description\":\"Sports related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4246361,\"friends_count\":263,\"listed_count\":6488,\"created_at\":\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":62,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2139,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1396972348\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":216,\"favorite_count\":304,\"entities\":{\"hashtags\":[{\"text\":\"NFL\",\"indices\":[4,8]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NXjC8vQhyq\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/the-nfl-on-twitter-week-10\",\"display_url\":\"blog.twitter.com\\/2014\\/the-nfl-o\\u2026\",\"indices\":[77,100]}],\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[101,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[101,123],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":216,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"NFL\",\"indices\":[23,27]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterSports\",\"name\":\"Twitter Sports\",\"id\":300392950,\"id_str\":\"300392950\",\"indices\":[3,17]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NXjC8vQhyq\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/the-nfl-on-twitter-week-10\",\"display_url\":\"blog.twitter.com\\/2014\\/the-nfl-o\\u2026\",\"indices\":[96,119]}],\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":532252796225986560,\"source_status_id_str\":\"532252796225986560\"}]},\"extended_entities\":{\"media\":[{\"id\":532252795076747264,\"id_str\":\"532252795076747264\",\"indices\":[139,140],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LxGN1CIAAqB7h.png\",\"url\":\"http:\\/\\/t.co\\/PaFGlZIWcQ\",\"display_url\":\"pic.twitter.com\\/PaFGlZIWcQ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/TwitterSports\\/status\\/532252796225986560\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":800,\"h\":400,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}},\"source_status_id\":532252796225986560,\"source_status_id_str\":\"532252796225986560\"}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 11 18:57:48 +0000 2014\",\"id\":532245825997398016,\"id_str\":\"532245825997398016\",\"text\":\"Last night @Jeopardy featured a category called Twitter Feeds. We'll take \\\"Best Category Ever\\\" for $500, Alex. http:\\/\\/t.co\\/RJ8OMh0vIW\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":407,\"favorite_count\":676,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"Jeopardy\",\"name\":\"Jeopardy!\",\"id\":52554306,\"id_str\":\"52554306\",\"indices\":[11,20]}],\"urls\":[],\"media\":[{\"id\":532245825355673601,\"id_str\":\"532245825355673601\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"url\":\"http:\\/\\/t.co\\/RJ8OMh0vIW\",\"display_url\":\"pic.twitter.com\\/RJ8OMh0vIW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532245825997398016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":394,\"h\":419,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":394,\"h\":419,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":532245825355673601,\"id_str\":\"532245825355673601\",\"indices\":[111,133],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B2LqwhmCcAEy-Gp.png\",\"url\":\"http:\\/\\/t.co\\/RJ8OMh0vIW\",\"display_url\":\"pic.twitter.com\\/RJ8OMh0vIW\",\"expanded_url\":\"http:\\/\\/twitter.com\\/twitter\\/status\\/532245825997398016\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":394,\"h\":419,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":360,\"resize\":\"fit\"},\"large\":{\"w\":394,\"h\":419,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Nov 05 18:42:24 +0000 2014\",\"id\":530067625791868928,\"id_str\":\"530067625791868928\",\"text\":\"It just got easier to Tweet on http:\\/\\/t.co\\/SlNTFacp9A. You can now compose new Tweets at the top of your home timeline.\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\\" rel=\\\"nofollow\\\"\\u003eTwitter Web Client\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1162,\"favorite_count\":1180,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/SlNTFacp9A\",\"expanded_url\":\"http:\\/\\/Twitter.com\",\"display_url\":\"Twitter.com\",\"indices\":[31,53]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Nov 04 15:47:00 +0000 2014\",\"id\":529661094508236800,\"id_str\":\"529661094508236800\",\"text\":\"RT @gov: #Election2014: keeping you informed on the midterms https:\\/\\/t.co\\/gzUv5lbvQC\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Nov 04 14:35:26 +0000 2014\",\"id\":529643085022502912,\"id_str\":\"529643085022502912\",\"text\":\"#Election2014: keeping you informed on the midterms https:\\/\\/t.co\\/gzUv5lbvQC\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"profile_location\":null,\"description\":\"Updates from the Twitter Government & Politics team, tracking creative & effective uses of Twitter for civic engagement. RTs & examples\\u2260political endorsements.\",\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gsq7JK76IN\",\"expanded_url\":\"http:\\/\\/gov.twitter.com\",\"display_url\":\"gov.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":749008,\"friends_count\":3,\"listed_count\":3343,\"created_at\":\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":19,\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1178,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/531872382793707520\\/renUd2dR_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1408990539\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":190,\"favorite_count\":291,\"entities\":{\"hashtags\":[{\"text\":\"Election2014\",\"indices\":[0,13]}],\"symbols\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gzUv5lbvQC\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/election2014-keeping-you-informed-on-the-midterms\",\"display_url\":\"blog.twitter.com\\/2014\\/election2\\u2026\",\"indices\":[52,75]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":190,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"Election2014\",\"indices\":[9,22]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"gov\",\"name\":\"Twitter Government\",\"id\":222953824,\"id_str\":\"222953824\",\"indices\":[3,7]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/gzUv5lbvQC\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2014\\/election2014-keeping-you-informed-on-the-midterms\",\"display_url\":\"blog.twitter.com\\/2014\\/election2\\u2026\",\"indices\":[61,84]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Nov 01 22:53:33 +0000 2014\",\"id\":528681275725328384,\"id_str\":\"528681275725328384\",\"text\":\"RT @TwitterMovies: Check out the Twitter Q&A with @JimCarrey and @Jeff_Daniels here: https:\\/\\/t.co\\/0eRh8nBeOX #DumbTo\",\"source\":\"\\u003ca href=\\\"https:\\/\\/about.twitter.com\\/products\\/tweetdeck\\\" rel=\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"profile_location\":null,\"description\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33621117,\"friends_count\":101,\"listed_count\":86772,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":21,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1845,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/530553072594874368\\/7f9QErOD_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"226699\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Sat Nov 01 22:29:39 +0000 2014\",\"id\":528675264327581696,\"id_str\":\"528675264327581696\",\"text\":\"Check out the Twitter Q&A with @JimCarrey and @Jeff_Daniels here: https:\\/\\/t.co\\/0eRh8nBeOX #DumbTo\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":436266454,\"id_str\":\"436266454\",\"name\":\"Twitter Movies\",\"screen_name\":\"TwitterMovies\",\"location\":\"\",\"profile_location\":null,\"description\":\"News, trailers, and fun facts from the silver screen.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2317159,\"friends_count\":180,\"listed_count\":2870,\"created_at\":\"Wed Dec 14 00:18:42 +0000 2011\",\"favourites_count\":124,\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":1874,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/533938350\\/twitter_movies_bkg.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/3782455568\\/fd405c11cd9ca7f29aa158fc4ac5f0a1_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/436266454\\/1347404339\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":216,\"favorite_count\":384,\"entities\":{\"hashtags\":[{\"text\":\"DumbTo\",\"indices\":[94,101]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"JimCarrey\",\"name\":\"Jim Carrey\",\"id\":52551600,\"id_str\":\"52551600\",\"indices\":[35,45]},{\"screen_name\":\"Jeff_Daniels\",\"name\":\"Jeff Daniels\",\"id\":506652594,\"id_str\":\"506652594\",\"indices\":[50,63]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0eRh8nBeOX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/528654634693320704\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[70,93]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":216,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"DumbTo\",\"indices\":[113,120]}],\"symbols\":[],\"user_mentions\":[{\"screen_name\":\"TwitterMovies\",\"name\":\"Twitter Movies\",\"id\":436266454,\"id_str\":\"436266454\",\"indices\":[3,17]},{\"screen_name\":\"JimCarrey\",\"name\":\"Jim Carrey\",\"id\":52551600,\"id_str\":\"52551600\",\"indices\":[54,64]},{\"screen_name\":\"Jeff_Daniels\",\"name\":\"Jeff Daniels\",\"id\":506652594,\"id_str\":\"506652594\",\"indices\":[69,82]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/0eRh8nBeOX\",\"expanded_url\":\"https:\\/\\/twitter.com\\/TwitterMovies\\/timelines\\/528654634693320704\",\"display_url\":\"twitter.com\\/TwitterMovies\\/\\u2026\",\"indices\":[89,112]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]" } } } ] }tweepy-3.5.0/cassettes/testverifycredentials.json000066400000000000000000001020601265716604700223640ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:12 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "20ad734d9d80aa2269790cc6392359ad" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "6ed8a8fdec335685" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2848" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738013225532923; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:12 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:12 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "11" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json?include_entities=True", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:12 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6476088134c2f866fd6c9f97f65c1bad" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "d0a122d04af12188" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "2848" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738013268928331; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:12 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:12 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "10" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Nov 30 20:42:10 +0000 2014\",\"id\":539157461698351104,\"id_str\":\"539157461698351104\",\"text\":\"testing 1000 http:\\/\\/t.co\\/tGU9ReCq1H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539157461669015554,\"id_str\":\"539157461669015554\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3t42tTIcAIsEPG.png\",\"url\":\"http:\\/\\/t.co\\/tGU9ReCq1H\",\"display_url\":\"pic.twitter.com\\/tGU9ReCq1H\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539157461698351104\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json?skip_status=True", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Sun, 30 Nov 2014 20:42:13 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "8bf2d13540183a6199f17c80574de3ff" ], "x-rate-limit-limit": [ "15" ], "server": [ "tsa_b" ], "x-transaction": [ "6ea7b3baf1f441a3" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "content-length": [ "1590" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141738013309380877; Domain=.twitter.com; Path=/; Expires=Tue, 29-Nov-2016 20:42:13 UTC" ], "last-modified": [ "Sun, 30 Nov 2014 20:42:13 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "content-type": [ "application/json;charset=utf-8" ], "x-rate-limit-remaining": [ "9" ], "pragma": [ "no-cache" ], "x-xss-protection": [ "1; mode=block" ], "x-rate-limit-reset": [ "1417380989" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":540,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417380122\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:16:07 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "fa3280bbba8f6ded2ef05afc2df15847" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2848" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:07 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "11" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740016701301565; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:07 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "5cadae9cec6edd09" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 02:16:04 +0000 2014\",\"id\":539241489755557888,\"id_str\":\"539241489755557888\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5wyi6Tyl0A\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json?include_entities=True", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:16:09 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "9402f034102b783ebf018ed98f879bf5" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "2848" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:09 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "10" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740016951359083; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:09 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "38f368202b877df6" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Dec 01 02:16:04 +0000 2014\",\"id\":539241489755557888,\"id_str\":\"539241489755557888\",\"text\":\"testing 1000 http:\\/\\/t.co\\/5wyi6Tyl0A\",\"source\":\"\\u003ca href=\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id\":539241489671675904,\"id_str\":\"539241489671675904\",\"indices\":[13,35],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/B3vFRyAIYAAhjam.png\",\"url\":\"http:\\/\\/t.co\\/5wyi6Tyl0A\",\"display_url\":\"pic.twitter.com\\/5wyi6Tyl0A\",\"expanded_url\":\"http:\\/\\/twitter.com\\/tweepytest\\/status\\/539241489755557888\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":170,\"resize\":\"fit\"},\"large\":{\"w\":1024,\"h\":512,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":300,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } }, { "request": { "headers": { "Host": [ "api.twitter.com" ] }, "method": "GET", "uri": "https://api.twitter.com:443/1.1/account/verify_credentials.json?skip_status=True", "body": null }, "response": { "status": { "code": 200, "message": "OK" }, "headers": { "date": [ "Mon, 01 Dec 2014 02:16:09 UTC" ], "x-content-type-options": [ "nosniff" ], "x-connection-hash": [ "6731a7b9c45d5efb13e5b2e876c6f586" ], "cache-control": [ "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" ], "server": [ "tsa_b" ], "x-rate-limit-reset": [ "1417401014" ], "x-access-level": [ "read-write-directmessages" ], "x-frame-options": [ "SAMEORIGIN" ], "strict-transport-security": [ "max-age=631138519" ], "content-type": [ "application/json;charset=utf-8" ], "content-length": [ "1590" ], "pragma": [ "no-cache" ], "last-modified": [ "Mon, 01 Dec 2014 02:16:09 GMT" ], "status": [ "200 OK" ], "expires": [ "Tue, 31 Mar 1981 05:00:00 GMT" ], "x-rate-limit-limit": [ "15" ], "x-rate-limit-remaining": [ "9" ], "set-cookie": [ "lang=en", "guest_id=v1%3A141740016989528181; Domain=.twitter.com; Path=/; Expires=Wed, 30-Nov-2016 02:16:09 UTC" ], "x-xss-protection": [ "1; mode=block" ], "x-transaction": [ "7b3f7c2643b7b463" ] }, "body": { "string": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"profile_location\":null,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":10,\"friends_count\":11,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-21600,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":541,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1417400153\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}" } } } ] }tweepy-3.5.0/docs/000077500000000000000000000000001265716604700140025ustar00rootroot00000000000000tweepy-3.5.0/docs/.gitignore000066400000000000000000000000071265716604700157670ustar00rootroot00000000000000_build tweepy-3.5.0/docs/Makefile000066400000000000000000000065331265716604700154510ustar00rootroot00000000000000# Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " changes to make an overview of all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: -rm -rf $(BUILDDIR)/* html: mkdir -p $(BUILDDIR)/html $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: mkdir -p $(BUILDDIR)/dirhtml $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." pickle: mkdir -p $(BUILDDIR)/pickle $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: mkdir -p $(BUILDDIR)/json $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: mkdir -p $(BUILDDIR)/htmlhelp $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: mkdir -p $(BUILDDIR)/qthelp $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/tweepy.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/tweepy.qhc" latex: mkdir -p $(BUILDDIR)/latex $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \ "run these through (pdf)latex." changes: mkdir -p $(BUILDDIR)/changes $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: mkdir -p $(BUILDDIR)/linkcheck $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: mkdir -p $(BUILDDIR)/doctest $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt." tweepy-3.5.0/docs/api.rst000066400000000000000000000661371265716604700153220ustar00rootroot00000000000000.. _api_reference: .. include:: parameters.rst API Reference ============= This page contains some basic documentation for the Tweepy module. :mod:`tweepy.api` --- Twitter API wrapper ========================================= .. class:: API([auth_handler=None], [host='api.twitter.com'], [search_host='search.twitter.com'], [cache=None], [api_root='/1'], [search_root=''], [retry_count=0], [retry_delay=0], [retry_errors=None], [timeout=60], [parser=ModelParser], [compression=False], [wait_on_rate_limit=False], [wait_on_rate_limit_notify=False], [proxy=None]) This class provides a wrapper for the API as provided by Twitter. The functions provided in this class are listed below. :param auth_handler: authentication handler to be used :param host: general API host :param search_host: search API host :param cache: cache backend to use :param api_root: general API path root :param search_root: search API path root :param retry_count: default number of retries to attempt when error occurs :param retry_delay: number of seconds to wait between retries :param retry_errors: which HTTP status codes to retry :param timeout: The maximum amount of time to wait for a response from Twitter :param parser: The object to use for parsing the response from Twitter :param compression: Whether or not to use GZIP compression for requests :param wait_on_rate_limit: Whether or not to automatically wait for rate limits to replenish :param wait_on_rate_limit_notify: Whether or not to print a notification when Tweepy is waiting for rate limits to replenish :param proxy: The full url to an HTTPS proxy to use for connecting to Twitter. Timeline methods ---------------- .. method:: API.home_timeline([since_id], [max_id], [count], [page]) Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends. This is the equivalent of /timeline/home on the Web. :param since_id: |since_id| :param max_id: |max_id| :param count: |count| :param page: |page| :rtype: list of :class:`Status` objects .. method:: API.statuses_lookup(id, [include_entities], [trim_user], [map]) Returns full Tweet objects for up to 100 tweets per request, specified by the `id` parameter. :param id: A list of Tweet IDs to lookup, up to 100 :param include_entities: A boolean indicating whether or not to include [entities](https://dev.twitter.com/docs/entities) in the returned tweets. Defaults to False. :param trim_user: A boolean indicating if user IDs should be provided, instead of full user information. Defaults to False. :param map: A boolean indicating whether or not to include tweets that cannot be shown, but with a value of None. Defaults to False. :rtype: list of :class:`Status` objects .. method:: API.user_timeline([id/user_id/screen_name], [since_id], [max_id], [count], [page]) Returns the 20 most recent statuses posted from the authenticating user or the user specified. It's also possible to request another user's timeline via the id parameter. :param id: |uid| :param user_id: |user_id| :param screen_name: |screen_name| :param since_id: |since_id| :param max_id: |max_id| :param count: |count| :param page: |page| :rtype: list of :class:`Status` objects .. method:: API.retweets_of_me([since_id], [max_id], [count], [page]) Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. :param since_id: |since_id| :param max_id: |max_id| :param count: |count| :param page: |page| :rtype: list of :class:`Status` objects Status methods -------------- .. method:: API.get_status(id) Returns a single status specified by the ID parameter. :param id: |sid| :rtype: :class:`Status` object .. method:: API.update_status(status, [in_reply_to_status_id], [lat], [long], [source], [place_id]) Update the authenticated user's status. Statuses that are duplicates or too long will be silently ignored. :param status: The text of your status update. :param in_reply_to_status_id: The ID of an existing status that the update is in reply to. :param lat: The location's latitude that this tweet refers to. :param long: The location's longitude that this tweet refers to. :param source: Source of the update. Only supported by Identi.ca. Twitter ignores this parameter. :param place_id: Twitter ID of location which is listed in the Tweet if geolocation is enabled for the user. :rtype: :class:`Status` object .. method:: API.update_with_media(filename, [status], [in_reply_to_status_id], [lat], [long], [source], [place_id], [file]) Update the authenticated user's status. Statuses that are duplicates or too long will be silently ignored. :param filename: The filename of the image to upload. This will automatically be opened unless `file` is specified :param status: The text of your status update. :param in_reply_to_status_id: The ID of an existing status that the update is in reply to. :param lat: The location's latitude that this tweet refers to. :param long: The location's longitude that this tweet refers to. :param source: Source of the update. Only supported by Identi.ca. Twitter ignores this parameter. :param place_id: Twitter ID of location which is listed in the Tweet if geolocation is enabled for the user. :param file: A file object, which will be used instead of opening `filename`. `filename` is still required, for MIME type detection and to use as a form field in the POST data :rtype: :class:`Status` object .. method:: API.destroy_status(id) Destroy the status specified by the id parameter. The authenticated user must be the author of the status to destroy. :param id: |sid| :rtype: :class:`Status` object .. method:: API.retweet(id) Retweets a tweet. Requires the id of the tweet you are retweeting. :param id: |sid| :rtype: :class:`Status` object .. method:: API.retweets(id[,count]) Returns up to 100 of the first retweets of the given tweet. :param id: |sid| :param count: Specifies the number of retweets to retrieve. :rtype: list of :class:`Status` objects User methods ------------ .. method:: API.get_user(id/user_id/screen_name) Returns information about the specified user. :param id: |uid| :param user_id: |user_id| :param screen_name: |screen_name| :rtype: :class:`User` object .. method:: API.me() Returns the authenticated user's information. :rtype: :class:`User` object .. method::API.friends([id/user_id/screen_name], [cursor], [skip_status], [include_user_entities]) Returns an user's friends ordered in which they were added 100 at a time. If no user is specified it defaults to the authenticated user. :param id: |uid| :param user_id: |user_id| :param screen_name: |screen_name| :param cursor: |cursor| :param skip_status: |skip_status| :param include_user_entities: |include_user_entities| :rtype: list of :class:`User` objects .. method:: API.followers([id/screen_name/user_id], [cursor]) Returns an user's followers ordered in which they were added 100 at a time. If no user is specified by id/screen name, it defaults to the authenticated user. :param id: |uid| :param user_id: |user_id| :param screen_name: |screen_name| :param cursor: |cursor| :rtype: list of :class:`User` objects .. method:: API.search_users(q, [per_page], [page]) Run a search for users similar to Find People button on Twitter.com; the same results returned by people search on Twitter.com will be returned by using this API (about being listed in the People Search). It is only possible to retrieve the first 1000 matches from this API. :param q: The query to run against people search. :param per_page: Specifies the number of statuses to retrieve. May not be greater than 20. :param page: |page| :rtype: list of :class:`User` objects Direct Message Methods ---------------------- .. method:: API.direct_messages([since_id], [max_id], [count], [page], [full_text]) Returns direct messages sent to the authenticating user. :param since_id: |since_id| :param max_id: |max_id| :param count: |count| :param page: |page| :param full_text: |full_text| :rtype: list of :class:`DirectMessage` objects .. method:: API.get_direct_message([id], [full_text]) Returns a specific direct message. :param id: |id| :param full_text: |full_text| :rtype: :class:`DirectMessage` object .. method:: API.sent_direct_messages([since_id], [max_id], [count], [page], [full_text]) Returns direct messages sent by the authenticating user. :param since_id: |since_id| :param max_id: |max_id| :param count: |count| :param page: |page| :param full_text: |full_text| :rtype: list of :class:`DirectMessage` objects .. method:: API.send_direct_message(user/screen_name/user_id, text) Sends a new direct message to the specified user from the authenticating user. :param user: The ID or screen name of the recipient user. :param screen_name: screen name of the recipient user :param user_id: user id of the recipient user :rtype: :class:`DirectMessage` object .. method:: API.destroy_direct_message(id) Destroy a direct message. Authenticating user must be the recipient of the direct message. :param id: The ID of the direct message to destroy. :rtype: :class:`DirectMessage` object Friendship Methods ------------------ .. method:: API.create_friendship(id/screen_name/user_id[,follow]) Create a new friendship with the specified user (aka follow). :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :param follow: Enable notifications for the target user in addition to becoming friends. :rtype: :class:`User` object .. method:: API.destroy_friendship(id/screen_name/user_id) Destroy a friendship with the specified user (aka unfollow). :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :rtype: :class:`User` object .. method:: API.exists_friendship(user_a, user_b) Checks if a friendship exists between two users. Will return True if user_a follows user_b, otherwise False. :param user_a: The ID or screen_name of the subject user. :param user_b: The ID or screen_name of the user to test for following. :rtype: True/False .. method:: API.show_friendship(source_id/source_screen_name, target_id/target_screen_name) Returns detailed information about the relationship between two users. :param source_id: The user_id of the subject user. :param source_screen_name: The screen_name of the subject user. :param target_id: The user_id of the target user. :param target_screen_name: The screen_name of the target user. :rtype: :class:`Friendship` object .. method:: API.friends_ids(id/screen_name/user_id[,cursor]) Returns an array containing the IDs of users being followed by the specified user. :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :param cursor: |cursor| :rtype: list of Integers .. method:: API.followers_ids(id/screen_name/user_id) Returns an array containing the IDs of users following the specified user. :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :param cursor: |cursor| :rtype: list of Integers Account Methods --------------- .. method:: API.verify_credentials() Verify the supplied user credentials are valid. :rtype: :class:`User` object if credentials are valid, otherwise False .. method:: API.rate_limit_status() Returns the remaining number of API requests available to the requesting user before the API limit is reached for the current hour. Calls to rate_limit_status do not count against the rate limit. If authentication credentials are provided, the rate limit status for the authenticating user is returned. Otherwise, the rate limit status for the requester's IP address is returned. :rtype: :class:`JSON` object .. method:: API.set_delivery_device(device) Sets which device Twitter delivers updates to for the authenticating user. Sending "none" as the device parameter will disable SMS updates. :param device: Must be one of: sms, none :rtype: :class:`User` object .. method:: API.update_profile_colors([profile_background_color], [profile_text_color], [profile_link_color], [profile_sidebar_fill_color], [profile_sidebar_border_color]) Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com. :param profile_background_color: :param profile_text_color: :param profile_link_color: :param profile_sidebar_fill_color: :param profile_sidebar_border_color: :rtype: :class:`User` object .. method:: API.update_profile_image(filename) Update the authenticating user's profile image. Valid formats: GIF, JPG, or PNG :param filename: local path to image file to upload. Not a remote URL! :rtype: :class:`User` object .. method:: API.update_profile_background_image(filename) Update authenticating user's background image. Valid formats: GIF, JPG, or PNG :param filename: local path to image file to upload. Not a remote URL! :rtype: :class:`User` object .. method:: API.update_profile([name], [url], [location], [description]) Sets values that users are able to set under the "Account" tab of their settings page. :param name: Maximum of 20 characters :param url: Maximum of 100 characters. Will be prepended with "http://" if not present :param location: Maximum of 30 characters :param description: Maximum of 160 characters :rtype: :class:`User` object Favorite Methods ---------------- .. method:: API.favorites([id], [page]) Returns the favorite statuses for the authenticating user or user specified by the ID parameter. :param id: The ID or screen name of the user to request favorites :param page: |page| :rtype: list of :class:`Status` objects .. method:: API.create_favorite(id) Favorites the status specified in the ID parameter as the authenticating user. :param id: |sid| :rtype: :class:`Status` object .. method:: API.destroy_favorite(id) Un-favorites the status specified in the ID parameter as the authenticating user. :param id: |sid| :rtype: :class:`Status` object Block Methods ------------- .. method:: API.create_block(id/screen_name/user_id) Blocks the user specified in the ID parameter as the authenticating user. Destroys a friendship to the blocked user if it exists. :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :rtype: :class:`User` object .. method:: API.destroy_block(id/screen_name/user_id) Un-blocks the user specified in the ID parameter for the authenticating user. :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :rtype: :class:`User` object .. method:: API.blocks([page]) Returns an array of user objects that the authenticating user is blocking. :param page: |page| :rtype: list of :class:`User` objects .. method:: API.blocks_ids() Returns an array of numeric user ids the authenticating user is blocking. :rtype: list of Integers Spam Reporting Methods ---------------------- .. method:: API.report_spam([id/user_id/screen_name]) The user specified in the id is blocked by the authenticated user and reported as a spammer. :param id: |uid| :param screen_name: |screen_name| :param user_id: |user_id| :rtype: :class:`User` object Saved Searches Methods ---------------------- .. method:: API.saved_searches() Returns the authenticated user's saved search queries. :rtype: list of :class:`SavedSearch` objects .. method:: API.get_saved_search(id) Retrieve the data for a saved search owned by the authenticating user specified by the given id. :param id: The id of the saved search to be retrieved. :rtype: :class:`SavedSearch` object .. method:: API.create_saved_search(query) Creates a saved search for the authenticated user. :param query: The query of the search the user would like to save. :rtype: :class:`SavedSearch` object .. method:: API.destroy_saved_search(id) Destroys a saved search for the authenticated user. The search specified by id must be owned by the authenticating user. :param id: The id of the saved search to be deleted. :rtype: :class:`SavedSearch` object Help Methods ------------ .. method:: API.search(q[,lang],[locale],[rpp],[page],[since_id],[geocode],[show_user]) Returns tweets that match a specified query. :param q: the search query string :param lang: Restricts tweets to the given language, given by an ISO 639-1 code. :param locale: Specify the language of the query you are sending. This is intended for language-specific clients and the default should work in the majority of cases. :param rpp: The number of tweets to return per page, up to a max of 100. :param page: The page number (starting at 1) to return, up to a max of roughly 1500 results (based on rpp * page. :param since_id: |since_id| :param geocode: Returns tweets by users located within a given radius of the given latitude/longitude. The location is preferentially taking from the Geotagging API, but will fall back to their Twitter profile. The parameter value is specified by "latitide,longitude,radius", where radius units must be specified as either "mi" (miles) or "km" (kilometers). Note that you cannot use the near operator via the API to geocode arbitrary locations; however you can use this geocode parameter to search near geocodes directly. :param show_user: When true, prepends ":" to the beginning of the tweet. This is useful for readers that do not display Atom's author field. The default is false. :rtype: list of :class:`SearchResult` objects List Methods ------------ .. method:: API.create_list(name, [mode], [description]) Creates a new list for the authenticated user. Accounts are limited to 20 lists. :param name: The name of the new list. :param mode: |list_mode| :param description: The description of the list you are creating. :rtype: :class:`List` object .. method:: API.destroy_list(slug) Deletes the specified list. Must be owned by the authenticated user. :param slug: |slug| :rtype: :class:`List` object .. method:: API.update_list(slug, [name], [mode], [description]) Updates the specified list. Note: this current throws a 500. Twitter is looking into the issue. :param slug: |slug| :param name: What you'd like to change the lists name to. :param mode: |list_mode| :param description: What you'd like to change the list description to. :rtype: :class:`List` object .. method:: API.lists([cursor]) List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user who's lists are being returned. :param cursor: |cursor| :rtype: list of :class:`List` objects .. method:: API.lists_memberships([cursor]) List the lists the specified user has been added to. :param cursor: |cursor| :rtype: list of :class:`List` objects .. method:: API.lists_subscriptions([cursor]) List the lists the specified user follows. :param cursor: |cursor| :rtype: list of :class:`List` objects .. method:: API.list_timeline(owner, slug, [since_id], [max_id], [per_page], [page]) Show tweet timeline for members of the specified list. :param owner: |list_owner| :param slug: |slug| :param since_id: |since_id| :param max_id: |max_id| :param per_page: Number of results per a page :param page: |page| :rtype: list of :class:`Status` objects .. method:: API.get_list(owner, slug) Show the specified list. Private lists will only be shown if the authenticated user owns the specified list. :param owner: |list_owner| :param slug: |slug| :rtype: :class:`List` object .. method:: API.add_list_member(slug, id) Add a member to a list. The authenticated user must own the list to be able to add members to it. Lists are limited to having 500 members. :param slug: |slug| :param id: the ID of the user to add as a member :rtype: :class:`List` object .. method:: API.remove_list_member(slug, id) Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list. :param slug: |slug| :param id: the ID of the user to remove as a member :rtype: :class:`List` object .. method:: API.list_members(owner, slug, cursor) Returns the members of the specified list. :param owner: |list_owner| :param slug: |slug| :param cursor: |cursor| :rtype: list of :class:`User` objects .. method:: API.is_list_member(owner, slug, id) Check if a user is a member of the specified list. :param owner: |list_owner| :param slug: |slug| :param id: the ID of the user to check :rtype: :class:`User` object if user is a member of list, otherwise False. .. method:: API.subscribe_list(owner, slug) Make the authenticated user follow the specified list. :param owner: |list_owner| :param slug: |slug| :rtype: :class:`List` object .. method:: API.unsubscribe_list(owner, slug) Unsubscribes the authenticated user form the specified list. :param owner: |list_owner| :param slug: |slug| :rtype: :class:`List` object .. method:: API.list_subscribers(owner, slug, [cursor]) Returns the subscribers of the specified list. :param owner: |list_owner| :param slug: |slug| :param cursor: |cursor| :rtype: list of :class:`User` objects .. method:: API.is_subscribed_list(owner, slug, id) Check if the specified user is a subscriber of the specified list. :param owner: |list_owner| :param slug: |slug| :param id: the ID of the user to check :rtype: :class:`User` object if user is subscribed to the list, otherwise False. Trends Methods -------------------- .. method:: API.trends_available() Returns the locations that Twitter has trending topic information for. The response is an array of "locations" that encode the location's WOEID (a Yahoo! Where On Earth ID) and some other human-readable information such as a canonical name and country the location belongs in. :rtype: :class:`JSON` object .. method:: API.trends_place(id, [exclude]) Returns the top 10 trending topics for a specific WOEID, if trending information is available for it. The response is an array of “trend†objects that encode the name of the trending topic, the query parameter that can be used to search for the topic on Twitter Search, and the Twitter Search URL. This information is cached for 5 minutes. Requesting more frequently than that will not return any more data, and will count against your rate limit usage. :param id: The Yahoo! Where On Earth ID of the location to return trending information for. Global information is available by using 1 as the WOEID. :param exclude: Setting this equal to hashtags will remove all hashtags from the trends list. :rtype: :class:`JSON` object .. method:: API.trends_closest(lat, long) Returns the locations that Twitter has trending topic information for, closest to a specified location. The response is an array of “locations†that encode the location’s WOEID and some other human-readable information such as a canonical name and country the location belongs in. A WOEID is a Yahoo! Where On Earth ID. :param lat: If provided with a long parameter the available trend locations will be sorted by distance, nearest to furthest, to the co-ordinate pair. The valid ranges for longitude is -180.0 to +180.0 (West is negative, East is positive) inclusive. :param long: If provided with a lat parameter the available trend locations will be sorted by distance, nearest to furthest, to the co-ordinate pair. The valid ranges for longitude is -180.0 to +180.0 (West is negative, East is positive) inclusive. :rtype: :class:`JSON` object Geo Methods ----------- .. method:: API.reverse_geocode([lat], [long], [accuracy], [granularity], [max_results]) Given a latitude and longitude, looks for places (cities and neighbourhoods) whose IDs can be specified in a call to :func:`update_status` to appear as the name of the location. This call provides a detailed response about the location in question; the :func:`nearby_places` function should be preferred for getting a list of places nearby without great detail. :param lat: The location's latitude. :param long: The location's longitude. :param accuracy: Specify the "region" in which to search, such as a number (then this is a radius in meters, but it can also take a string that is suffixed with ft to specify feet). If this is not passed in, then it is assumed to be 0m :param granularity: Assumed to be `neighborhood' by default; can also be `city'. :param max_results: A hint as to the maximum number of results to return. This is only a guideline, which may not be adhered to. .. method:: API.reverse_geocode([lat], [long], [ip], [accuracy], [granularity], [max_results]) Given a latitude and longitude, looks for nearby places (cities and neighbourhoods) whose IDs can be specified in a call to :func:`update_status` to appear as the name of the location. This call provides a detailed response about the location in question; the :func:`nearby_places` function should be preferred for getting a list of places nearby without great detail. :param lat: The location's latitude. :param long: The location's longitude. :param ip: The location's IP address. Twitter will attempt to geolocate using the IP address. :param accuracy: Specify the "region" in which to search, such as a number (then this is a radius in meters, but it can also take a string that is suffixed with ft to specify feet). If this is not passed in, then it is assumed to be 0m :param granularity: Assumed to be `neighborhood' by default; can also be `city'. :param max_results: A hint as to the maximum number of results to return. This is only a guideline, which may not be adhered to. .. method:: API.geo_id(id) Given *id* of a place, provide more details about that place. :param id: Valid Twitter ID of a location. :mod:`tweepy.error` --- Exceptions ================================== The exceptions are available in the ``tweepy`` module directly, which means ``tweepy.error`` itself does not need to be imported. For example, ``tweepy.error.TweepError`` is available as ``tweepy.TweepError``. .. exception:: TweepError The main exception Tweepy uses. Is raised for a number of things. When a ``TweepError`` is raised due to an error Twitter responded with, the error code (`as described in the API documentation `_) can be accessed at ``TweepError.message[0]['code']``. Note, however, that ``TweepError``\ s also may be raised with other things as message (for example plain error reason strings). .. exception:: RateLimitError Is raised when an API method fails due to hitting Twitter's rate limit. Makes for easy handling of the rate limit specifically. Inherits from :exc:`TweepError`, so ``except TweepError`` will catch a ``RateLimitError`` too. tweepy-3.5.0/docs/auth_tutorial.rst000066400000000000000000000102411265716604700174160ustar00rootroot00000000000000.. _auth_tutorial: *********************** Authentication Tutorial *********************** Introduction ============ Tweepy supports oauth authentication. Authentication is handled by the tweepy.AuthHandler class. OAuth Authentication ==================== Tweepy tries to make OAuth as painless as possible for you. To begin the process we need to register our client application with Twitter. Create a new application and once you are done you should have your consumer token and secret. Keep these two handy, you'll need them. The next step is creating an OAuthHandler instance. Into this we pass our consumer token and secret which was given to us in the previous paragraph:: auth = tweepy.OAuthHandler(consumer_token, consumer_secret) If you have a web application and are using a callback URL that needs to be supplied dynamically you would pass it in like so:: auth = tweepy.OAuthHandler(consumer_token, consumer_secret, callback_url) If the callback URL will not be changing, it is best to just configure it statically on twitter.com when setting up your application's profile. Unlike basic auth, we must do the OAuth "dance" before we can start using the API. We must complete the following steps: #. Get a request token from twitter #. Redirect user to twitter.com to authorize our application #. If using a callback, twitter will redirect the user to us. Otherwise the user must manually supply us with the verifier code. #. Exchange the authorized request token for an access token. So let's fetch our request token to begin the dance:: try: redirect_url = auth.get_authorization_url() except tweepy.TweepError: print 'Error! Failed to get request token.' This call requests the token from twitter and returns to us the authorization URL where the user must be redirect to authorize us. Now if this is a desktop application we can just hang onto our OAuthHandler instance until the user returns back. In a web application we will be using a callback request. So we must store the request token in the session since we will need it inside the callback URL request. Here is a pseudo example of storing the request token in a session:: session.set('request_token', auth.request_token) So now we can redirect the user to the URL returned to us earlier from the get_authorization_url() method. If this is a desktop application (or any application not using callbacks) we must query the user for the "verifier code" that twitter will supply them after they authorize us. Inside a web application this verifier value will be supplied in the callback request from twitter as a GET query parameter in the URL. .. code-block :: python # Example using callback (web app) verifier = request.GET.get('oauth_verifier') # Example w/o callback (desktop) verifier = raw_input('Verifier:') The final step is exchanging the request token for an access token. The access token is the "key" for opening the Twitter API treasure box. To fetch this token we do the following:: # Let's say this is a web app, so we need to re-build the auth handler # first... auth = tweepy.OAuthHandler(consumer_key, consumer_secret) token = session.get('request_token') session.delete('request_token') auth.request_token = token try: auth.get_access_token(verifier) except tweepy.TweepError: print 'Error! Failed to get access token.' It is a good idea to save the access token for later use. You do not need to re-fetch it each time. Twitter currently does not expire the tokens, so the only time it would ever go invalid is if the user revokes our application access. To store the access token depends on your application. Basically you need to store 2 string values: key and secret:: auth.access_token auth.access_token_secret You can throw these into a database, file, or where ever you store your data. To re-build an OAuthHandler from this stored access token you would do this:: auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(key, secret) So now that we have our OAuthHandler equipped with an access token, we are ready for business:: api = tweepy.API(auth) api.update_status('tweepy + oauth!') tweepy-3.5.0/docs/code_snippet.rst000066400000000000000000000040461265716604700172140ustar00rootroot00000000000000.. _code_snippet: ************* Code Snippets ************* Introduction ============ Here are some code snippets to help you out with using Tweepy. Feel free to contribute your own snippets or improve the ones here! OAuth ===== .. code-block :: python auth = tweepy.OAuthHandler("consumer_key", "consumer_secret") # Redirect user to Twitter to authorize redirect_user(auth.get_authorization_url()) # Get access token auth.get_access_token("verifier_value") # Construct the API instance api = tweepy.API(auth) Pagination ========== .. code-block :: python # Iterate through all of the authenticated user's friends for friend in tweepy.Cursor(api.friends).items(): # Process the friend here process_friend(friend) # Iterate through the first 200 statuses in the friends timeline for status in tweepy.Cursor(api.friends_timeline).items(200): # Process the status here process_status(status) FollowAll ========= This snippet will follow every follower of the authenticated user. .. code-block :: python for follower in tweepy.Cursor(api.followers).items(): follower.follow() Handling the rate limit using cursors ===================================== Since cursors raise ``RateLimitError``\ s in their ``next()`` method, handling them can be done by wrapping the cursor in an iterator. Running this snippet will print all users you follow that themselves follow less than 300 people total - to exclude obvious spambots, for example - and will wait for 15 minutes each time it hits the rate limit. .. code-block :: python # In this example, the handler is time.sleep(15 * 60), # but you can of course handle it in any way you want. def limit_handled(cursor): while True: try: yield cursor.next() except tweepy.RateLimitError: time.sleep(15 * 60) for follower in limit_handled(tweepy.Cursor(api.followers).items()): if follower.friends_count < 300: print follower.screen_name tweepy-3.5.0/docs/conf.py000066400000000000000000000144261265716604700153100ustar00rootroot00000000000000# -*- coding: utf-8 -*- # # tweepy documentation build configuration file, created by # sphinx-quickstart on Sun Dec 6 11:13:52 2009. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.append(os.path.abspath('.')) sys.path.append(os.path.abspath('..')) # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc'] # Add any paths that contain templates here, relative to this directory. #templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8' # The master toctree document. master_doc = 'index' # General information about the project. project = u'tweepy' copyright = u'2009, Joshua Roesslein' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. sys.path.insert(0, '..') from tweepy import __version__ version = __version__ # The full version, including alpha/beta/rc tags. release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of documents that shouldn't be included in the build. #unused_docs = [] # List of directories, relative to source directory, that shouldn't be searched # for source files. exclude_trees = ['_build'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. Major themes that come with # Sphinx are currently 'default' and 'sphinxdoc'. html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". #html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. html_use_modindex = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = '' # Output file base name for HTML help builder. htmlhelp_basename = 'tweepydoc' # -- Options for LaTeX output -------------------------------------------------- # The paper size ('letter' or 'a4'). #latex_paper_size = 'letter' # The font size ('10pt', '11pt' or '12pt'). #latex_font_size = '10pt' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'tweepy.tex', u'tweepy Documentation', u'Joshua Roesslein', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # Additional stuff for the LaTeX preamble. #latex_preamble = '' # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_use_modindex = True tweepy-3.5.0/docs/cursor_tutorial.rst000066400000000000000000000052431265716604700200000ustar00rootroot00000000000000.. _cursor_tutorial: *************** Cursor Tutorial *************** This tutorial describes details on pagination with Cursor objects. Introduction ============ We use pagination a lot in Twitter API development. Iterating through timelines, user lists, direct messages, etc. In order to perform pagination we must supply a page/cursor parameter with each of our requests. The problem here is this requires a lot of boiler plate code just to manage the pagination loop. To help make pagination easier and require less code Tweepy has the Cursor object. Old way vs Cursor way --------------------- First let's demonstrate iterating the statues in the authenticated user's timeline. Here is how we would do it the "old way" before Cursor object was introduced:: page = 1 while True: statuses = api.user_timeline(page=page) if statuses: for status in statuses: # process status here process_status(status) else: # All done break page += 1 # next page As you can see we must manage the "page" parameter manually in our pagination loop. Now here is the version of the code using Cursor object:: for status in tweepy.Cursor(api.user_timeline).items(): # process status here process_status(status) Now that looks much better! Cursor handles all the pagination work for us behind the scene so our code can now focus entirely on processing the results. Passing parameters into the API method -------------------------------------- What if you need to pass in parameters to the API method? .. code-block :: python api.user_timeline(id="twitter") Since we pass Cursor the callable, we can not pass the parameters directly into the method. Instead we pass the parameters into the Cursor constructor method:: tweepy.Cursor(api.user_timeline, id="twitter") Now Cursor will pass the parameter into the method for us when ever it makes a request. Items or Pages -------------- So far we have just demonstrated pagination iterating per an item. What if instead you want to process per a page of results? You would use the pages() method:: for page in tweepy.Cursor(api.user_timeline).pages(): # page is a list of statuses process_page(page) Limits ------ What if you only want n items or pages returned? You pass into the items() or pages() methods the limit you want to impose. .. code-block :: python # Only iterate through the first 200 statuses for status in tweepy.Cursor(api.user_timeline).items(200): process_status(status) # Only iterate through the first 3 pages for page in tweepy.Cursor(api.user_timeline).pages(3): process_page(page) tweepy-3.5.0/docs/getting_started.rst000066400000000000000000000032421265716604700177240ustar00rootroot00000000000000.. _getting_started: *************** Getting started *************** Introduction ============ If you are new to Tweepy, this is the place to begin. The goal of this tutorial is to get you set-up and rolling with Tweepy. We won't go into too much detail here, just some important basics. Hello Tweepy ============ .. code-block :: python import tweepy auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth) public_tweets = api.home_timeline() for tweet in public_tweets: print tweet.text This example will download your home timeline tweets and print each one of their texts to the console. Twitter requires all requests to use OAuth for authentication. The :ref:`auth_tutorial` goes into more details about authentication. API === The API class provides access to the entire twitter RESTful API methods. Each method can accept various parameters and return responses. For more information about these methods please refer to :ref:`API Reference `. Models ====== When we invoke an API method most of the time returned back to us will be a Tweepy model class instance. This will contain the data returned from Twitter which we can then use inside our application. For example the following code returns to us an User model:: # Get the User object for twitter... user = api.get_user('twitter') Models contain the data and some helper methods which we can then use:: print user.screen_name print user.followers_count for friend in user.friends(): print friend.screen_name For more information about models please see ModelsReference. tweepy-3.5.0/docs/index.rst000066400000000000000000000007611265716604700156470ustar00rootroot00000000000000.. tweepy documentation master file, created by sphinx-quickstart on Sun Dec 6 11:13:52 2009. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Tweepy Documentation ==================== Contents: .. toctree:: :maxdepth: 2 getting_started.rst auth_tutorial.rst code_snippet.rst cursor_tutorial.rst api.rst streaming_how_to.rst Indices and tables ================== * :ref:`genindex` * :ref:`search` tweepy-3.5.0/docs/install.rst000066400000000000000000000002741265716604700162050ustar00rootroot00000000000000Installation ============ Install from PyPI:: easy_install tweepy Install from source:: git clone git://github.com/tweepy/tweepy.git cd tweepy python setup.py install tweepy-3.5.0/docs/make.bat000066400000000000000000000057771265716604700154270ustar00rootroot00000000000000@ECHO OFF REM Command file for Sphinx documentation set SPHINXBUILD=sphinx-build set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^` where ^ is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\tweepy.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\tweepy.ghc goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end tweepy-3.5.0/docs/parameters.rst000066400000000000000000000032561265716604700167050ustar00rootroot00000000000000.. API parameters: .. |since_id| replace:: Returns only statuses with an ID greater than (that is, more recent than) the specified ID. .. |max_id| replace:: Returns only statuses with an ID less than (that is, older than) or equal to the specified ID. .. |count| replace:: Specifies the number of statuses to retrieve. .. |page| replace:: Specifies the page of results to retrieve. Note: there are pagination limits. .. |uid| replace:: Specifies the ID or screen name of the user. .. |user_id| replace:: Specifies the ID of the user. Helpful for disambiguating when a valid user ID is also a valid screen name. .. |screen_name| replace:: Specifies the screen name of the user. Helpful for disambiguating when a valid screen name is also a user ID. .. |sid| replace:: The numerical ID of the status. .. |cursor| replace:: Breaks the results into pages. Provide a value of -1 to begin paging. Provide values as returned to in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. .. |exclude| replace:: Setting this equal to hashtags will remove all hashtags from the trends list. .. |date| replace:: Permits specifying a start date for the report. The date should be formatted YYYY-MM-DD. .. |slug| replace:: the slug name or numerical ID of the list .. |list_mode| replace:: Whether your list is public or private. Values can be public or private. Lists are public by default if no mode is specified. .. |list_owner| replace:: the screen name of the owner of the list .. |full_text| replace:: A boolean indicating whether or not the full text of a message should be returned. If False the message text returned will be truncated to 140 chars. Defaults to False. tweepy-3.5.0/docs/streaming_how_to.rst000066400000000000000000000106641265716604700201130ustar00rootroot00000000000000.. _streaming_how_to: .. _Twitter Streaming API Documentation: https://dev.twitter.com/streaming/overview .. _Twitter Response Codes Documentation: https://dev.twitter.com/overview/api/response-codes ********************* Streaming With Tweepy ********************* Tweepy makes it easier to use the twitter streaming api by handling authentication, connection, creating and destroying the session, reading incoming messages, and partially routing messages. This page aims to help you get started using Twitter streams with Tweepy by offering a first walk through. Some features of Tweepy streaming are not covered here. See streaming.py in the Tweepy source code. API authorization is required to access Twitter streams. Follow the :ref:`auth_tutorial` if you need help with authentication. Summary ======= The Twitter streaming API is used to download twitter messages in real time. It is useful for obtaining a high volume of tweets, or for creating a live feed using a site stream or user stream. See the `Twitter Streaming API Documentation`_. The streaming api is quite different from the REST api because the REST api is used to *pull* data from twitter but the streaming api *pushes* messages to a persistent session. This allows the streaming api to download more data in real time than could be done using the REST API. In Tweepy, an instance of **tweepy.Stream** establishes a streaming session and routes messages to **StreamListener** instance. The **on_data** method of a stream listener receives all messages and calls functions according to the message type. The default **StreamListener** can classify most common twitter messages and routes them to appropriately named methods, but these methods are only stubs. Therefore using the streaming api has three steps. 1. Create a class inheriting from **StreamListener** 2. Using that class create a **Stream** object 3. Connect to the Twitter API using the **Stream**. Step 1: Creating a **StreamListener** ===================================== This simple stream listener prints status text. The **on_data** method of Tweepy's **StreamListener** conveniently passes data from statuses to the **on_status** method. Create class **MyStreamListener** inheriting from **StreamListener** and overriding **on_status**.:: import tweepy #override tweepy.StreamListener to add logic to on_status class MyStreamListener(tweepy.StreamListener): def on_status(self, status): print(status.text) Step 2: Creating a **Stream** ============================= We need an api to stream. See :ref:`auth_tutorial` to learn how to get an api object. Once we have an api and a status listener we can create our stream object.:: myStreamListener = MyStreamListener() myStream = tweepy.Stream(auth = api.auth, listener=myStreamListener()) Step 3: Starting a Stream ========================= A number of twitter streams are available through Tweepy. Most cases will use filter, the user_stream, or the sitestream. For more information on the capabilities and limitations of the different streams see `Twitter Streaming API Documentation`_. In this example we will use **filter** to stream all tweets containing the word *python*. The **track** parameter is an array of search terms to stream. :: myStream.filter(track=['python']) A Few More Pointers =================== Async Streaming --------------- Streams not terminate unless the connection is closed, blocking the thread. Tweepy offers a convenient **async** parameter on **filter** so the stream will run on a new thread. For example :: myStream.filter(track=['python'], async=True) Handling Errors --------------- When using Twitter's streaming API one must be careful of the dangers of rate limiting. If clients exceed a limited number of attempts to connect to the streaming API in a window of time, they will receive error 420. The amount of time a client has to wait after receiving error 420 will increase exponentially each time they make a failed attempt. Tweepy's **Stream Listener** usefully passes error messages to an **on_error** stub. We can use **on_error** to catch 420 errors and disconnect our stream. :: class MyStreamListener(tweepy.StreamListener): def on_error(self, status_code): if status_code == 420: #returning False in on_data disconnects the stream return False For more information on error codes from the twitter api see `Twitter Response Codes Documentation`_. tweepy-3.5.0/examples/000077500000000000000000000000001265716604700146705ustar00rootroot00000000000000tweepy-3.5.0/examples/__init__.py000066400000000000000000000000001265716604700167670ustar00rootroot00000000000000tweepy-3.5.0/examples/banner.png000066400000000000000000000074041265716604700166500ustar00rootroot00000000000000‰PNG  IHDRär–KPLTEÌÌÌ–––¾¾¾±±±ÅÅŪªª···œœœ£££*¤ w¤IDATxœíÝË“ÇyðÕîrÍ£`›âÁ’«ä£a&ÑLФYÉIùVIçaw-»üo‡ L÷¼ú ;åT~¿‹ô|ƒÏœ¯º{z{qœßç¯?Ú¦Z®¿ýÛjõ§O¶Õ½ûÝ~õò¯ßüðÄ î~›ihI9Ì2Þ®m-ÿ²?4­^þÃøûOV »Iðõ—]ævý#]­V¿J6äRn f7û\ɽíëiÜ-$Kî_ÇÁ×w±åEbß?ÒæcQíßgSn f¡4¶³–«lAµ”ÜfÐôâÜIß:²õ )7³ÿXeJîúaxüF‡¨¡ä~3jûÙ“~uØëí4çBÊõ`Kc;mùb\QŸ šê%w¹7îΚôu"§JÊõ`–qÏvÒr9-©]ßV/¹W“Æóß÷Ý^Öžr5˜e F¢í¤iZ4ê©–ÜìàŸ·› Yß·§\ fúó·\ïgU³ŽÕ’{?kýé³~Öíóå8çbʵ`–1œãoÇMÏç5õ_±±Zr³ÖsáÍ,¡zʵ`1ZRØŽÛ6³Ã7XꨕÜU¹ùGŠ£öú„”kÁ,a¼¤°·¥ŠjZk%÷&Ñ|¾‘5ì}2S+§\ fã^a;jK Rƒ wí‚×|\]­nÏ–÷¾Ûãä¢U9åJ0KøåøàlGñäïÅ/®þ;vT]Éý<³çþ|õ«í»X~ë3åæÿÓ.§\ fÓùÖvÔ å°FVXą̃Rr±¿ùËÅ`Qø\“¹p–ýÝäûrÊ•`žÞôòÀ¸äb?uÂêÃËÐ\)¹Ðß[ÂəŽòu2ájÊå`0X‘K„ÐOu“ì0ç^wÍ•’ ýÍîð)æ3?LRkM¹Ì6¡Ô^¤J.°ÝñãÕøc¥ä¦17g=Ì!ñé8]I¹ÌÂpw»M•\whâeÈýøH•K.ípRø“®¶Ï’w?góÿJÊå`Ð]Ï¿]_¤Jnz¼îŽŸï»å’›–سsçnçóß®¤\f ]ÅJ®Ÿ{w3¿pÐTrñt¡«î—é­OÔufóÛ*)—ƒY›®â’%w|‚ /©W§”\÷ÐCÜáåK. óQº’r9˜%\u—,¹ã»ø±;~Ÿv+g¬‡;û³…p¤Ï‘u8åL\”/§\ f Ý#'É’»¸yN¾ÞœVr¿N¢Âì9’Cã:ÑVL¹ÌÞîŽÿ›.¹‹Ë‡AEØË=^Më÷wÆ^.Tozh,¥\ f9™’»¸^÷ÿ½OŒê%wñÏýv‹&ç˜Ë…K¤™+…”ëÁ,&WrCÝõ„ûîcCÉ tS¨ä"Éã2ØwÕ¹Îì*\J˵çS>-˜'ÕPraH ‹»§•\7«J>ÞÒÕXw5,^ÍuDÍCã4å“‚yZ %®'¬»Ï§•ÜfXUéïê1ÞÝòijÛþy´†ž¦|R0O«¡äÂõËð9–Üõ·ûÕ¿_÷ú›d…;NôÂÕ\É…ö†û+§)ŸÌÓj(¹»ã&q6Jî²køª´ÿ0k¿/üx×Å»,3%÷aXŸeÓ”O æiÕK.¬rÄÕÝ®ä~zJäÏ…ý‡:Ú~¼»6º©”Ü~’Ç )ŸÌ«—Üûi!ÌŸ}ÈVñéÒÒw' aÓLÉÝ ·-›¥|J0O¬^rá–ËXWó’Ëß&®2¥ßÇwðxrÑ?3‘.¹0Û]¼û·Êkg)ŸÌ«–\<Œ›$žðúK.zÓm>QŒñKÏâ§tÉÅÙØãÓ4/K§ó”Oæ©UK.ܳ^|t:×ÍÅ÷ì¤oÄíwp18aÍ”ÜþØøÙñ%¥·ÎS>!˜§V+¹¸>Û÷S©çX3÷vǧ¨Óû¿‹ñ»ákl’; ãîÿ„*?%åö`ž\­äâ+mvñ«TÉe^æ¶/6_ܼ~}«¬û¯ï_ÿSrÛ0+ »Ìß„”H¹=˜'W+¹ø|hÿUòiýäâ#­÷Ùßï†ÓOãØ—ËdöÚ‰ì«u)·óä*%çôƒn¡å]ÁGwõÜÍö> c_öUƒ›ÙOfzªTÊÍÁ<½JÉÅ^wýwÉ’K]C'¥Øýa‹ÛP)Ù…³ýì'3ç,©”›ƒyzå’‹keÃ0bÉÝ~sñ.1ŠEñ„ ôàhW!ÛOfu’Îd ¹Ö‘J¹9˜”K.Îî_†’;<?Œ¦ÝD? ZóõÛø¢¯]1ƒãf?ŸuMcýªÝÀº1åÖ`–P,¹»px&ŸëoßmRUy1Í*ï»?Ž„·•:ˆ© Ý7¦ÜÌJ%¯UΡË/ãì¼›<ÍîðÞ4ÛáD+›ø>æòMþ•…¹”ƒYD©äârCj+Ft%3øÇ’Úªëð-¿ÙY_¿Ñî"yµ”rk0‹(”\¿´°.íá2½‹8ªö&›¾ä²«)7£½ÅÌÚRn f…’‹gœ•[i“uÙŸ9îj) þ2I*ƒgã½m2ûN§ÜÌ2 Ç:žqV^Øm7>ňgŽõñ«oqþD#,ÌÜŽ÷>Í,rc0ËÈ—\áäaì.uCWÒrb;Äümâae­¥3+3™”Û‚YH¾äŠ'‰ ï‡ß5Ÿ<Œ~i—Ý$Ì C]?ŒŠ¨’r[0 É–\?[Wv‘x—[?©j9®aà+<ñ÷a’K÷›ãYf.å¦`–’-¹Ì•‡„Ä‹µZ¯<…‘®Pž›IQvcåx¢˜K¹)˜¥dK.RÕ[.%ÇÕ¶¿´»JíØÝ¤J’o Î¥ÜÌRr%×vÈAâ%É;P²Â¬¿PŸ“-R¯˦ÜÌbr%©úí³‰’ ãjÛýÞaâW¨ýq‹8ô¦^”˜M¹%˜ÅäJ.R³–™yÉÅqµí¦´MØe%÷w%ó¯¿ï¾oyön¶H—v§{M‹kx…]MÊ:16æSnf9éý8ÿߥ£.‡¯1ìJ®¿úæñmËûÃǯ²‹ÁûLÕ4¥\fAé’ ýTfruó0\Ϙ]ð ýMÛ­qmcUÇ÷“’œ¯sR®³ tÉmVÓ2z|pל^Ö+»K­ÇŠýÙ1fÙ¨¾š[HÙRðß•dÉÅõ†u*äð'ÚîûÏ›IŸNïÔ8öAß=j¼ášU)åj0KJ–\ñ ÔÕ´žº#º ŸCÓö<|7ûÕ±¯ÌMÿ6“Žiö‡…K)WƒYR²äB?uŸŠx5í"ÆÝKèo;‘îøw/ˆÈ v™ûú+¥\ fIÉ’Û$¿í¼™tjaácèoNúS$ñ58™®1TTö.ËRÊÕ`–”xRûjü}Sʹ`þÏøüwûÕÿúëú†gtýÛ¯þôõzù`øïRŽJÓÝx¼IEND®B`‚tweepy-3.5.0/examples/oauth.py000066400000000000000000000021131265716604700163570ustar00rootroot00000000000000from __future__ import absolute_import, print_function import tweepy # == OAuth Authentication == # # This mode of authentication is the new preferred way # of authenticating with Twitter. # The consumer keys can be found on your application's Details # page located at https://dev.twitter.com/apps (under "OAuth settings") consumer_key="" consumer_secret="" # The access tokens can be found on your applications's Details # page located at https://dev.twitter.com/apps (located # under "Your access token") access_token="" access_token_secret="" auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.secure = True auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth) # If the authentication was successful, you should # see the name of the account print out print(api.me().name) # If the application settings are set for "Read and Write" then # this line should tweet out the message to your account's # timeline. The "Read and Write" setting is on https://dev.twitter.com/apps api.update_status(status='Updating using OAuth authentication via Tweepy!') tweepy-3.5.0/examples/streaming.py000066400000000000000000000020121265716604700172260ustar00rootroot00000000000000from __future__ import absolute_import, print_function from tweepy.streaming import StreamListener from tweepy import OAuthHandler from tweepy import Stream # Go to http://apps.twitter.com and create an app. # The consumer key and secret will be generated for you after consumer_key="" consumer_secret="" # After the step above, you will be redirected to your app's page. # Create an access token under the the "Your access token" section access_token="" access_token_secret="" class StdOutListener(StreamListener): """ A listener handles tweets that are received from the stream. This is a basic listener that just prints received tweets to stdout. """ def on_data(self, data): print(data) return True def on_error(self, status): print(status) if __name__ == '__main__': l = StdOutListener() auth = OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) stream = Stream(auth, l) stream.filter(track=['basketball']) tweepy-3.5.0/requirements.txt000066400000000000000000000000641265716604700163360ustar00rootroot00000000000000requests>=2.4.3 requests_oauthlib>=0.4.1 six>=1.7.3 tweepy-3.5.0/setup.cfg000066400000000000000000000000341265716604700146700ustar00rootroot00000000000000[bdist_wheel] universal = 1 tweepy-3.5.0/setup.py000066400000000000000000000027401265716604700145670ustar00rootroot00000000000000#!/usr/bin/env python #from distutils.core import setup import re, uuid from setuptools import setup, find_packages from pip.req import parse_requirements VERSIONFILE = "tweepy/__init__.py" ver_file = open(VERSIONFILE, "rt").read() VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]" mo = re.search(VSRE, ver_file, re.M) if mo: version = mo.group(1) else: raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,)) install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1()) reqs = [str(req.req) for req in install_reqs] setup(name="tweepy", version=version, description="Twitter library for python", license="MIT", author="Joshua Roesslein", author_email="tweepy@googlegroups.com", url="http://github.com/tweepy/tweepy", packages=find_packages(exclude=['tests']), install_requires=reqs, keywords="twitter library", classifiers=[ 'Development Status :: 4 - Beta', 'Topic :: Software Development :: Libraries', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', ], zip_safe=True) tweepy-3.5.0/test_requirements.txt000066400000000000000000000001331265716604700173720ustar00rootroot00000000000000tox>=1.7.2 vcrpy==1.1.2 mock==1.0.1 unittest2 # Comment this line out if using Python 3. tweepy-3.5.0/tests/000077500000000000000000000000001265716604700142145ustar00rootroot00000000000000tweepy-3.5.0/tests/__init__.py000066400000000000000000000000011265716604700163140ustar00rootroot00000000000000 tweepy-3.5.0/tests/config.py000066400000000000000000000021051265716604700160310ustar00rootroot00000000000000import os import vcr from tweepy.auth import OAuthHandler from tweepy.api import API import six if six.PY3: import unittest else: import unittest2 as unittest username = os.environ.get('TWITTER_USERNAME', 'tweepytest') oauth_consumer_key = os.environ.get('CONSUMER_KEY', '') oauth_consumer_secret = os.environ.get('CONSUMER_SECRET', '') oauth_token = os.environ.get('ACCESS_KEY', '') oauth_token_secret = os.environ.get('ACCESS_SECRET', '') use_replay = os.environ.get('USE_REPLAY', False) tape = vcr.VCR( cassette_library_dir='cassettes', filter_headers=['Authorization'], serializer='json', # Either use existing cassettes, or never use recordings: record_mode='none' if use_replay else 'all', ) class TweepyTestCase(unittest.TestCase): def setUp(self): self.auth = create_auth() self.api = API(self.auth) self.api.retry_count = 2 self.api.retry_delay = 5 def create_auth(): auth = OAuthHandler(oauth_consumer_key, oauth_consumer_secret) auth.set_access_token(oauth_token, oauth_token_secret) return auth tweepy-3.5.0/tests/record.json000066400000000000000000045102701265716604700163760ustar00rootroot00000000000000[ { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/members/create.json?slug=test&screen_name=twitter&owner_screen_name=tweepytest" }, "response": { "body_quoted_printable": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"notifications\":false,\"prof=\nile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_b=\nackground_images\\/394345638\\/test.jpg\",\"follow_request_sent\":false,\"id_str\"=\n:\"82301637\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profile_use_b=\nackground_image\":false,\"profile_text_color\":\"000000\",\"url\":\"http:\\/\\/t.co\\/=\n3L9bWVrV0b\",\"statuses_count\":126,\"id\":82301637,\"entities\":{\"url\":{\"urls\":[{=\n\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\",=\n\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"listed_cou=\nnt\":0,\"location\":\"pytopia\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_images\\/1733327710\\/test_normal.jpg\",\"profile_sidebar_border_color\":\"87=\nBC44\",\"is_translator\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"utc_o=\nffset\":-21600,\"profile_background_tile\":false,\"profile_sidebar_fill_color\":=\n\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"protected\":false,\"follow=\ners_count\":7,\"description\":\"A test account for testing stuff.\",\"favourites_=\ncount\":2,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profil=\ne_images\\/1733327710\\/test_normal.jpg\",\"profile_background_color\":\"FFFFFF\",=\n\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":false=\n,\"verified\":false,\"following\":false,\"screen_name\":\"tweepytest\",\"profile_bac=\nkground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/39434=\n5638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"friends_c=\nount\":10},\"slug\":\"test\",\"following\":false,\"created_at\":\"Sat Nov 14 04:48:53=\n +0000 2009\",\"id\":3021021,\"member_count\":2,\"mode\":\"public\",\"id_str\":\"302102=\n1\",\"subscriber_count\":1,\"uri\":\"\\/tweepytest\\/lists\\/test\",\"description\":\"Th=\nis is a simple little test list\",\"name\":\"test\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1772", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:15:55 GMT", "etag": "\"f554cda89844928d666c1fab15f3924e\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:15:55 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:15:55 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCGHjg59AAToHaWQiJTYxYzIyNGViMDk0MWEz%250ANmEzMDlhNTkwNWE0ZmQ3OGRlOgxjc3JmX2lkIiU2ZDQ2MzA4YWM3MGJmMTM4%250ANTcyZDU0MWQ1MmRkNzQyZg%253D%253D--d4035dd292820109bfca951ae22ca2596b2230ae; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706575546992736; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:15:55 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "23a0b542d4f4a3375ba4ff465f19936544d21e57", "x-runtime": "0.27628", "x-transaction": "45ba859d7466c4ba", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/members/destroy.json?slug=test&screen_name=twitter&owner_screen_name=tweepytest" }, "response": { "body_quoted_printable": "{\"full_name\":\"@tweepytest\\/lists\\/test\",\"user\":{\"notifications\":false,\"prof=\nile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_b=\nackground_images\\/394345638\\/test.jpg\",\"follow_request_sent\":false,\"id_str\"=\n:\"82301637\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profile_use_b=\nackground_image\":false,\"profile_text_color\":\"000000\",\"url\":\"http:\\/\\/t.co\\/=\n3L9bWVrV0b\",\"statuses_count\":126,\"id\":82301637,\"entities\":{\"url\":{\"urls\":[{=\n\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\",=\n\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"listed_cou=\nnt\":0,\"location\":\"pytopia\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_images\\/1733327710\\/test_normal.jpg\",\"profile_sidebar_border_color\":\"87=\nBC44\",\"is_translator\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"utc_o=\nffset\":-21600,\"profile_background_tile\":false,\"profile_sidebar_fill_color\":=\n\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"protected\":false,\"follow=\ners_count\":7,\"description\":\"A test account for testing stuff.\",\"favourites_=\ncount\":2,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profil=\ne_images\\/1733327710\\/test_normal.jpg\",\"profile_background_color\":\"FFFFFF\",=\n\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":false=\n,\"verified\":false,\"following\":false,\"screen_name\":\"tweepytest\",\"profile_bac=\nkground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/39434=\n5638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"friends_c=\nount\":10},\"id_str\":\"3021021\",\"slug\":\"test\",\"subscriber_count\":1,\"following\"=\n:false,\"created_at\":\"Sat Nov 14 04:48:53 +0000 2009\",\"id\":3021021,\"mode\":\"p=\nublic\",\"uri\":\"\\/tweepytest\\/lists\\/test\",\"member_count\":1,\"description\":\"Th=\nis is a simple little test list\",\"name\":\"test\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1772", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:15:59 GMT", "etag": "\"ee4074c04b3235d17c76ba9cc9f47c52\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:15:59 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:15:59 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCEfxg59AAToHaWQiJWEwZWE1OTllODJmZGFi%250AYTAzZjc1YWZmNmRiOTU4ZDc4Ogxjc3JmX2lkIiU5ZGJhMWY3NjVmOTk1Nzg4%250AMzYxMTZjZmY3OWU2ZTg2NA%253D%253D--2a66dde99cd53292a1de885816f822e138ed360e; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706575899526270; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:15:59 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "dd4704285f46be4a8e74ec797fce1161970c7d78", "x-runtime": "0.09277", "x-transaction": "97176782de796253", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/blocks/list.json" }, "response": { "body_quoted_printable": "{\"users\":[{\"notifications\":false,\"default_profile_image\":false,\"name\":\"asaf=\n\",\"profile_background_tile\":true,\"profile_sidebar_fill_color\":\"DDEEF6\",\"fri=\nends_count\":1702,\"url\":null,\"id\":81928310,\"followers_count\":279,\"time_zone\"=\n:null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_background_images\\/44574448\\/2.jpg\",\"entities\":{\"description\":{\"urls\":[]}=\n},\"status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"in_reply_to=\n_user_id_str\":null,\"id_str\":\"5206788265\",\"possibly_sensitive\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=\n=3D\\\"http:\\/\\/www.hootsuite.com\\\" rel=3D\\\"nofollow\\\"\\u003EHootSuite\\u003C\\/=\na\\u003E\",\"geo\":null,\"favorited\":false,\"id\":5206788265,\"created_at\":\"Tue Oct=\n 27 18:06:52 +0000 2009\",\"truncated\":false,\"in_reply_to_user_id\":null,\"text=\n\":\"--------------------- http:\\/\\/www.lockersmith.com\\/ ------------=\n dont get stuck out of yore car\\/appartment\",\"coordinates\":nul=\nl,\"retweet_count\":1,\"in_reply_to_status_id_str\":null,\"entities\":{\"hashtags\"=\n:[],\"user_mentions\":[],\"urls\":[]}},\"is_translator\":false,\"default_profile\":=\nfalse,\"location\":null,\"profile_background_color\":\"C0DEED\",\"statuses_count\":=\n34,\"lang\":\"en\",\"listed_count\":1,\"utc_offset\":null,\"profile_background_image=\n_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/44574448\\/2.jpg\",\"=\ngeo_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":fals=\ne,\"id_str\":\"81928310\",\"protected\":false,\"description\":null,\"profile_use_bac=\nkground_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Mon Oct 12 =\n21:04:45 +0000 2009\",\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_images\\/467120707\\/8318_101780806506521_100000238068041_5026=\n9_8288754_n_normal.jpg\",\"following\":false,\"screen_name\":\"locksmithvista\",\"f=\navourites_count\":0,\"profile_sidebar_border_color\":\"C0DEED\",\"contributors_en=\nabled\":false,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_im=\nages\\/467120707\\/8318_101780806506521_100000238068041_50269_8288754_n_norma=\nl.jpg\"},{\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/3603154671\\/2720d557a78a2c358a365de48cacd987_normal.png\",\"notifications\":=\nfalse,\"name\":\"ISABEL CITRINY\",\"profile_background_tile\":true,\"default_profi=\nle_image\":false,\"profile_sidebar_fill_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\=\n/ZaZoq73bre\",\"friends_count\":1497,\"id\":52573909,\"followers_count\":2183,\"tim=\ne_zone\":\"International Date Line West\",\"entities\":{\"url\":{\"urls\":[{\"indices=\n\":[0,22],\"url\":\"http:\\/\\/t.co\\/ZaZoq73bre\",\"display_url\":\"ask.fm\\/icitriny\"=\n,\"expanded_url\":\"http:\\/\\/ask.fm\\/icitriny\"}]},\"description\":{\"urls\":[]}},\"=\nstatus\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"32999=\n1796329431042\",\"in_reply_to_status_id\":null,\"in_reply_to_screen_name\":null,=\n\"source\":\"web\",\"in_reply_to_status_id_str\":null,\"geo\":null,\"favorited\":fals=\ne,\"id\":329991796329431042,\"created_at\":\"Thu May 02 16:12:29 +0000 2013\",\"tr=\nuncated\":false,\"in_reply_to_user_id_str\":null,\"in_reply_to_user_id\":null,\"t=\next\":\"krl esqueci a senha do meu tt to fudidaaaaaaaa\",\"coordinates\":null,\"r=\netweet_count\":1,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]}},\"l=\nocation\":\"Rio de Janeiro - RJ\",\"profile_background_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_background_images\\/858212120\\/6b2080ca641e6c0d1f=\na06fa9fb4ca5aa.jpeg\",\"default_profile\":false,\"profile_background_color\":\"FF=\nFFFF\",\"is_translator\":false,\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/=\nprofile_banners\\/52573909\\/1367468630\",\"statuses_count\":20524,\"lang\":\"pt\",\"=\nutc_offset\":-39600,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_background_images\\/858212120\\/6b2080ca641e6c0d1fa06fa9fb4ca5aa.jpeg\"=\n,\"listed_count\":362,\"geo_enabled\":true,\"profile_link_color\":\"42BD2A\",\"follo=\nw_request_sent\":false,\"id_str\":\"52573909\",\"protected\":false,\"description\":\"=\nBrasil. 15 anos. Comer. Dormir. Zoeira. Potaria\",\"profile_use_background_im=\nage\":true,\"profile_text_color\":\"000000\",\"created_at\":\"Wed Jul 01 00:26:55 +=\n0000 2009\",\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/3603154671\\/2720d557a78a2c358a365de48cacd987_normal.png\",\"foll=\nowing\":false,\"screen_name\":\"isacauzadera\",\"profile_sidebar_border_color\":\"F=\nFFFFF\",\"favourites_count\":316,\"contributors_enabled\":false}], \"next_cursor\"=\n:0, \"previous_cursor\":0, \"next_cursor_str\":\"0\", \"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "4345", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:15:59 GMT", "etag": "\"297b74f232d002ab5221c68a7cc339ed\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:15:59 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:15:59 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCCzyg59AAToHaWQiJThlYzIwMmFmM2NjYTM4%250AMzYyZmVhMTlhZGFiMjJjMjc4--e87cacb99c79b13a04a5a3a71abb620eab2f0704; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706575925568574; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:15:59 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "f93b8f5e6c1b799be9e35db6e8d515f1c13214f5", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066659", "x-runtime": "0.04338", "x-transaction": "dfe6b7ee94aebe36", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/blocks/ids.json" }, "response": { "body_quoted_printable": "{\"ids\":[81928310,52573909],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_=\ncursor\":0,\"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "111", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:15:59 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:15:59 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706575950606655; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:15:59 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066659", "x-transaction": "d383bea31699cdcb" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/blocks/create.json?id=twitter" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"profile_background_image_url_https\":\"https:\\/\\/twim=\ng0-a.akamaihd.net\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke=\n1i.png\",\"follow_request_sent\":false,\"id_str\":\"783214\",\"default_profile\":fal=\nse,\"name\":\"Twitter\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_=\nbanners\\/783214\\/1347405327\",\"profile_use_background_image\":true,\"profile_t=\next_color\":\"333333\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"statuses_count\":1632=\n,\"is_translator\":false,\"id\":783214,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0=\n,22],\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"display_url\":\"blog.twitter.com\",\"ex=\npanded_url\":\"http:\\/\\/blog.twitter.com\\/\"}]},\"description\":{\"urls\":[]}},\"st=\natus\":{\"place\":null,\"retweeted\":false,\"in_reply_to_user_id_str\":null,\"in_re=\nply_to_status_id\":null,\"truncated\":false,\"retweeted_status\":{\"place\":null,\"=\nretweeted\":false,\"in_reply_to_user_id_str\":null,\"in_reply_to_status_id\":nul=\nl,\"truncated\":false,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=\n=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=\n=3D\\\"nofollow\\\"\\u003ETwitter for Mac\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\"=\n:false,\"id\":369911739782946816,\"created_at\":\"Tue Aug 20 20:00:06 +0000 2013=\n\",\"contributors\":null,\"id_str\":\"369911739782946816\",\"in_reply_to_user_id\":n=\null,\"text\":\"We've said this before and we'll say it again: this community -=\n now more than 40 million of you - is amazing. Thank you for inspiring us.\"=\n,\"coordinates\":null,\"retweet_count\":603,\"in_reply_to_status_id_str\":null,\"e=\nntities\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[]}},\"in_reply_to_screen_=\nname\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"=\nnofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\"=\n:369915012157943808,\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",\"contribu=\ntors\":null,\"id_str\":\"369915012157943808\",\"in_reply_to_user_id\":null,\"text\":=\n\"RT @vineapp: We've said this before and we'll say it again: this community=\n - now more than 40 million of you - is amazing. Thank you for in\\u2026\",\"c=\noordinates\":null,\"retweet_count\":603,\"in_reply_to_status_id_str\":null,\"enti=\nties\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"i=\nd\":586671909,\"indices\":[3,11],\"id_str\":\"586671909\",\"name\":\"Vine\"}]}},\"liste=\nd_count\":79289,\"location\":\"San Francisco, CA\",\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\"=\n,\"profile_sidebar_border_color\":\"EEEEEE\",\"contributors_enabled\":false,\"lang=\n\":\"en\",\"utc_offset\":-28800,\"profile_background_tile\":true,\"profile_sidebar_=\nfill_color\":\"F6F6F6\",\"time_zone\":\"Pacific Time (US & Canada)\",\"protected\":f=\nalse,\"followers_count\":22601489,\"description\":\"Your official source for new=\ns, updates and tips from Twitter, Inc.\",\"favourites_count\":22,\"profile_back=\nground_color\":\"ACDED6\",\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"profi=\nle_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/22841=\n74758\\/v65oai7fxn47qv9nectx_normal.png\",\"default_profile_image\":false,\"veri=\nfied\":true,\"following\":false,\"screen_name\":\"twitter\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uq=\ney5sy82r9ijhke1i.png\",\"geo_enabled\":true,\"profile_link_color\":\"038543\",\"fri=\nends_count\":131}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3229", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:15:59 GMT", "etag": "\"5bc92f7c2c11b74d69e4e8206715aacf\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:15:59 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:15:59 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCMDzg59AAToHaWQiJTE5ZmM1YmM4Y2Y3OGM3%250AN2RiOGM4YzU0YWJkOWM0NzUyOgxjc3JmX2lkIiViNWNkZmU1OTNlNzlkYzFk%250AZTU3ODUxY2M3Mzg4OGNlOA%253D%253D--e8a69eb396c83d41eb7dfc82b9bed4407020e2f0; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706575966103833; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:15:59 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "9d737f1ff8b87f22ecfdb6e19cfbe5c7f1a7c381", "x-runtime": "0.04585", "x-transaction": "33491bac19c9b02d", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "DELETE", "port": 443, "url": "/1.1/blocks/destroy.json?id=twitter" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"profile_background_image_url_https\":\"https:\\/\\/twim=\ng0-a.akamaihd.net\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke=\n1i.png\",\"follow_request_sent\":false,\"id_str\":\"783214\",\"default_profile\":fal=\nse,\"name\":\"Twitter\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_=\nbanners\\/783214\\/1347405327\",\"profile_use_background_image\":true,\"profile_t=\next_color\":\"333333\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"statuses_count\":1632=\n,\"is_translator\":false,\"id\":783214,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0=\n,22],\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"display_url\":\"blog.twitter.com\",\"ex=\npanded_url\":\"http:\\/\\/blog.twitter.com\\/\"}]},\"description\":{\"urls\":[]}},\"st=\natus\":{\"place\":null,\"retweeted\":false,\"in_reply_to_user_id_str\":null,\"in_re=\nply_to_status_id\":null,\"truncated\":false,\"retweeted_status\":{\"place\":null,\"=\nretweeted\":false,\"in_reply_to_user_id_str\":null,\"in_reply_to_status_id\":nul=\nl,\"truncated\":false,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=\n=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=\n=3D\\\"nofollow\\\"\\u003ETwitter for Mac\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\"=\n:false,\"id\":369911739782946816,\"created_at\":\"Tue Aug 20 20:00:06 +0000 2013=\n\",\"contributors\":null,\"id_str\":\"369911739782946816\",\"in_reply_to_user_id\":n=\null,\"text\":\"We've said this before and we'll say it again: this community -=\n now more than 40 million of you - is amazing. Thank you for inspiring us.\"=\n,\"coordinates\":null,\"retweet_count\":603,\"in_reply_to_status_id_str\":null,\"e=\nntities\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[]}},\"in_reply_to_screen_=\nname\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"=\nnofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\"=\n:369915012157943808,\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",\"contribu=\ntors\":null,\"id_str\":\"369915012157943808\",\"in_reply_to_user_id\":null,\"text\":=\n\"RT @vineapp: We've said this before and we'll say it again: this community=\n - now more than 40 million of you - is amazing. Thank you for in\\u2026\",\"c=\noordinates\":null,\"retweet_count\":603,\"in_reply_to_status_id_str\":null,\"enti=\nties\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"i=\nd\":586671909,\"indices\":[3,11],\"id_str\":\"586671909\",\"name\":\"Vine\"}]}},\"liste=\nd_count\":79289,\"location\":\"San Francisco, CA\",\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\"=\n,\"profile_sidebar_border_color\":\"EEEEEE\",\"contributors_enabled\":false,\"lang=\n\":\"en\",\"utc_offset\":-28800,\"profile_background_tile\":true,\"profile_sidebar_=\nfill_color\":\"F6F6F6\",\"time_zone\":\"Pacific Time (US & Canada)\",\"protected\":f=\nalse,\"followers_count\":22601489,\"description\":\"Your official source for new=\ns, updates and tips from Twitter, Inc.\",\"favourites_count\":22,\"profile_back=\nground_color\":\"ACDED6\",\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"profi=\nle_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/22841=\n74758\\/v65oai7fxn47qv9nectx_normal.png\",\"default_profile_image\":false,\"veri=\nfied\":true,\"following\":false,\"screen_name\":\"twitter\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uq=\ney5sy82r9ijhke1i.png\",\"geo_enabled\":true,\"profile_link_color\":\"038543\",\"fri=\nends_count\":131}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3229", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:15:59 GMT", "etag": "\"5bc92f7c2c11b74d69e4e8206715aacf\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:15:59 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:15:59 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCJ70g59AAToHaWQiJWM2YTRmYzQxZjVhMjMy%250AOGY4MzRkMzRhY2JhMGYxNzk3Ogxjc3JmX2lkIiU0MjhiMWUzYmQ5YTg2Mjlm%250AMmUzZTI1NWUwZGYwY2ViNg%253D%253D--cdeee1d6040dac3ced593c519211e5b94f3869cf; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706575988394660; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:15:59 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "82290d3f3bf163405fd15444183f4a05bf2ff6dc", "x-runtime": "0.03964", "x-transaction": "c8c7208dae57c9f6", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/friendships/create.json?id=twitter" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"profile_background_image_url_https\":\"https:\\/\\/twim=\ng0-a.akamaihd.net\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke=\n1i.png\",\"follow_request_sent\":false,\"id_str\":\"783214\",\"default_profile\":fal=\nse,\"name\":\"Twitter\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_=\nbanners\\/783214\\/1347405327\",\"profile_use_background_image\":true,\"profile_t=\next_color\":\"333333\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"statuses_count\":1632=\n,\"id\":783214,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t=\n.co\\/5iRhy7wTgu\",\"display_url\":\"blog.twitter.com\",\"expanded_url\":\"http:\\/\\/=\nblog.twitter.com\\/\"}]},\"description\":{\"urls\":[]}},\"status\":{\"in_reply_to_st=\natus_id_str\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_user_id_str\":=\nnull,\"in_reply_to_status_id\":null,\"truncated\":false,\"retweeted_status\":{\"in=\n_reply_to_status_id_str\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_u=\nser_id_str\":null,\"in_reply_to_status_id\":null,\"truncated\":false,\"in_reply_t=\no_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/itunes.apple.com\\/u=\ns\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for =\nMac\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369911739782946816,\"c=\nreated_at\":\"Tue Aug 20 20:00:06 +0000 2013\",\"contributors\":null,\"id_str\":\"3=\n69911739782946816\",\"in_reply_to_user_id\":null,\"text\":\"We've said this befor=\ne and we'll say it again: this community - now more than 40 million of you =\n- is amazing. Thank you for inspiring us.\",\"coordinates\":null,\"retweet_coun=\nt\":603,\"entities\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[]}},\"in_reply_t=\no_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/www.tweetdeck.com\\\"=\n rel=3D\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":f=\nalse,\"id\":369915012157943808,\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",=\n\"contributors\":null,\"id_str\":\"369915012157943808\",\"in_reply_to_user_id\":nul=\nl,\"text\":\"RT @vineapp: We've said this before and we'll say it again: this =\ncommunity - now more than 40 million of you - is amazing. Thank you for in\\=\nu2026\",\"coordinates\":null,\"retweet_count\":603,\"entities\":{\"hashtags\":[],\"ur=\nls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"id\":586671909,\"indices\":[=\n3,11],\"id_str\":\"586671909\",\"name\":\"Vine\"}]}},\"listed_count\":79289,\"profile_=\nimage_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/22841747=\n58\\/v65oai7fxn47qv9nectx_normal.png\",\"location\":\"San Francisco, CA\",\"profil=\ne_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn=\n47qv9nectx_normal.png\",\"profile_sidebar_border_color\":\"EEEEEE\",\"contributor=\ns_enabled\":false,\"is_translator\":false,\"lang\":\"en\",\"utc_offset\":-28800,\"pro=\nfile_background_tile\":true,\"profile_sidebar_fill_color\":\"F6F6F6\",\"time_zone=\n\":\"Pacific Time (US & Canada)\",\"protected\":false,\"followers_count\":22601489=\n,\"description\":\"Your official source for news, updates and tips from Twitte=\nr, Inc.\",\"favourites_count\":22,\"profile_background_color\":\"ACDED6\",\"created=\n_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"default_profile_image\":false,\"verifi=\ned\":true,\"following\":true,\"screen_name\":\"twitter\",\"profile_background_image=\n_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5=\nsy82r9ijhke1i.png\",\"geo_enabled\":true,\"profile_link_color\":\"038543\",\"friend=\ns_count\":131}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3228", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:00 GMT", "etag": "\"ed3d6510e1af4834f767c40631e9d1ac\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:00 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:00 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCH%252F1g59AAToHaWQiJTY5MDVmN2M5NzYwNTI2%250AYThhMmJlNWJlN2U4ODIwYjI3Ogxjc3JmX2lkIiViNjk3YjcxYzY3MmQyMDA0%250AYjZjYWNiODY1NTNkZjU0Nw%253D%253D--f70654f709d49f5baa79a2407e3ff46fdb2bf0d7; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576010895564; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:00 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "8a2900a8c4201cb8faf4a7db811c7150d341fb24", "x-runtime": "0.06461", "x-transaction": "b82fd1e66594b667", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/favorites/create.json?id=4901062372" }, "response": { "body_quoted_printable": "{\"in_reply_to_status_id_str\":null,\"contributors\":null,\"place\":null,\"retweet=\ned\":false,\"id_str\":\"4901062372\",\"user\":{\"notifications\":false,\"name\":\"Tweep=\ny test 123\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"E=\n0FF92\",\"favourites_count\":3,\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"id\":82301637=\n,\"followers_count\":7,\"time_zone\":\"Central Time (US & Canada)\",\"entities\":{\"=\nurl\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_=\nurl\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[=\n]}},\"default_profile_image\":false,\"location\":\"pytopia\",\"profile_background_=\ncolor\":\"FFFFFF\",\"friends_count\":11,\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/394345638\\/test.j=\npg\",\"default_profile\":false,\"lang\":\"en\",\"utc_offset\":-21600,\"profile_backgr=\nound_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/39434563=\n8\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"follow_reque=\nst_sent\":false,\"statuses_count\":126,\"id_str\":\"82301637\",\"protected\":false,\"=\nis_translator\":false,\"description\":\"A test account for testing stuff.\",\"lis=\nted_count\":0,\"profile_use_background_image\":false,\"profile_text_color\":\"000=\n000\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"verified\":false,\"profil=\ne_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_norma=\nl.jpg\",\"following\":false,\"screen_name\":\"tweepytest\",\"profile_sidebar_border=\n_color\":\"87BC44\",\"contributors_enabled\":false,\"profile_image_url_https\":\"ht=\ntps:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1733327710\\/test_normal.jpg\"=\n},\"in_reply_to_user_id_str\":null,\"in_reply_to_status_id\":null,\"in_reply_to_=\nscreen_name\":null,\"source\":\"web\",\"geo\":null,\"favorited\":true,\"id\":490106237=\n2,\"created_at\":\"Thu Oct 15 23:08:56 +0000 2009\",\"truncated\":false,\"in_reply=\n_to_user_id\":null,\"text\":\"hello world!\",\"coordinates\":null,\"retweet_count\":=\n0,\"entities\":{\"user_mentions\":[],\"hashtags\":[],\"urls\":[]}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1933", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:00 GMT", "etag": "\"6089125da83b391fc10e6ef2f84abf35\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:00 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:00 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCF32g59AAToHaWQiJTVhNDk5N2I4MTMyOTRh%250AZTJhMTQ4NWYxODIwZjA4NTIyOgxjc3JmX2lkIiU3YmM2ZjBlNTI1MzBlZmFl%250AYjNmNmQ4N2M4NzQ3ZmNiNQ%253D%253D--38b687dd19a0352f7319106548af43567e6b2bf1; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576033085229; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:00 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "b2fd0171f7b9fb4957b116194cc08e1349c3ae35", "x-runtime": "0.11236", "x-transaction": "6adcc12859b33b14", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/favorites/destroy.json?id=4901062372" }, "response": { "body_quoted_printable": "{\"contributors\":null,\"place\":null,\"retweeted\":false,\"in_reply_to_status_id_=\nstr\":null,\"id_str\":\"4901062372\",\"user\":{\"notifications\":false,\"default_prof=\nile_image\":false,\"name\":\"Tweepy test 123\",\"profile_background_tile\":false,\"=\nprofile_sidebar_fill_color\":\"E0FF92\",\"friends_count\":11,\"url\":\"http:\\/\\/t.c=\no\\/3L9bWVrV0b\",\"id\":82301637,\"followers_count\":7,\"time_zone\":\"Central Time =\n(US & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.aka=\nmaihd.net\\/profile_background_images\\/394345638\\/test.jpg\",\"entities\":{\"url=\n\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url=\n\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}}=\n,\"default_profile\":false,\"location\":\"pytopia\",\"profile_background_color\":\"F=\nFFFFF\",\"statuses_count\":126,\"lang\":\"en\",\"listed_count\":0,\"utc_offset\":-2160=\n0,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background=\n_images\\/394345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000=\nFF\",\"follow_request_sent\":false,\"id_str\":\"82301637\",\"protected\":false,\"desc=\nription\":\"A test account for testing stuff.\",\"profile_use_background_image\"=\n:false,\"profile_text_color\":\"000000\",\"created_at\":\"Wed Oct 14 07:28:20 +000=\n0 2009\",\"is_translator\":false,\"verified\":false,\"profile_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"following\":fa=\nlse,\"screen_name\":\"tweepytest\",\"favourites_count\":2,\"profile_image_url_http=\ns\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1733327710\\/test_norma=\nl.jpg\",\"profile_sidebar_border_color\":\"87BC44\",\"contributors_enabled\":false=\n},\"in_reply_to_status_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_=\nscreen_name\":null,\"source\":\"web\",\"geo\":null,\"favorited\":false,\"id\":49010623=\n72,\"created_at\":\"Thu Oct 15 23:08:56 +0000 2009\",\"truncated\":false,\"in_repl=\ny_to_user_id\":null,\"text\":\"hello world!\",\"coordinates\":null,\"retweet_count\"=\n:0,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1934", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:00 GMT", "etag": "\"e093672fd2f8879740bb73ee364e238d\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:00 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:00 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCG%252F3g59AAToHaWQiJTk2OWVkMTljYjhkNTk0%250ANzY1MGJmZGMzN2ZmMGIyNjNlOgxjc3JmX2lkIiVmODVlMGZjMDU4NmIzMjNj%250AN2E1YTY1YWE3MzdmY2YzYg%253D%253D--4dcd89c27ae7be1ba87febe3ff90006fbf4115a9; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576059531147; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:00 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "68cd8c235c44134ad04f8238a4978e0c58d419aa", "x-runtime": "0.23877", "x-transaction": "65bbcf0c05a36e56", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "DELETE", "port": 443, "url": "/1.1/friendships/destroy.json?id=twitter" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"friends_count\":131,\"name\":\"Twitter\",\"profile_backgr=\nound_tile\":true,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"defaul=\nt_profile\":false,\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_banner_url\"=\n:\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"url\":\"http=\n:\\/\\/t.co\\/5iRhy7wTgu\",\"id\":783214,\"followers_count\":22601492,\"statuses_cou=\nnt\":1632,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\"=\n:[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"display_url\":\"blog.t=\nwitter.com\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\"}]},\"description\":{=\n\"urls\":[]}},\"status\":{\"in_reply_to_user_id_str\":null,\"contributors\":null,\"p=\nlace\":null,\"retweeted\":false,\"id_str\":\"369915012157943808\",\"in_reply_to_sta=\ntus_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http=\n:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",=\n\"geo\":null,\"favorited\":false,\"id\":369915012157943808,\"created_at\":\"Tue Aug =\n20 20:13:06 +0000 2013\",\"truncated\":false,\"retweeted_status\":{\"in_reply_to_=\nuser_id_str\":null,\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_st=\nr\":\"369911739782946816\",\"in_reply_to_status_id\":null,\"in_reply_to_screen_na=\nme\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twi=\ntter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for Mac\\u003C\\/=\na\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369911739782946816,\"created_at\":=\n\"Tue Aug 20 20:00:06 +0000 2013\",\"truncated\":false,\"in_reply_to_user_id\":nu=\nll,\"text\":\"We've said this before and we'll say it again: this community - =\nnow more than 40 million of you - is amazing. Thank you for inspiring us.\",=\n\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"retweet_count\":603,\"en=\ntities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]}},\"in_reply_to_user_id\"=\n:null,\"text\":\"RT @vineapp: We've said this before and we'll say it again: t=\nhis community - now more than 40 million of you - is amazing. Thank you for=\n in\\u2026\",\"in_reply_to_status_id_str\":null,\"coordinates\":null,\"retweet_cou=\nnt\":603,\"entities\":{\"hashtags\":[],\"user_mentions\":[{\"id_str\":\"586671909\",\"s=\ncreen_name\":\"vineapp\",\"id\":586671909,\"indices\":[3,11],\"name\":\"Vine\"}],\"urls=\n\":[]}},\"is_translator\":false,\"location\":\"San Francisco, CA\",\"profile_backgr=\nound_color\":\"ACDED6\",\"listed_count\":79289,\"lang\":\"en\",\"utc_offset\":-28800,\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"geo_enabled\":true,\"profile_link=\n_color\":\"038543\",\"follow_request_sent\":false,\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_norm=\nal.png\",\"id_str\":\"783214\",\"protected\":false,\"description\":\"Your official so=\nurce for news, updates and tips from Twitter, Inc.\",\"profile_use_background=\n_image\":true,\"favourites_count\":22,\"profile_text_color\":\"333333\",\"created_a=\nt\":\"Tue Feb 20 14:35:54 +0000 2007\",\"verified\":true,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_norma=\nl.png\",\"following\":true,\"default_profile_image\":false,\"screen_name\":\"twitte=\nr\",\"profile_sidebar_border_color\":\"EEEEEE\",\"contributors_enabled\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3212", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:01 GMT", "etag": "\"2b50d4638d95d408b9f5b3f5df89da7c\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:01 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:01 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCP36g59AAToHaWQiJWEzYWUzYzI1Y2Y3MmMw%250AMDE5ZmM1M2QzNjk2NjkyNzI0Ogxjc3JmX2lkIiUyMDRjYWY0ZGI1ZDcyN2Nh%250ANzdmNzY1YjdlMWE3NDFlNA%253D%253D--7ba585cc88ce466ac374274172b55d667ef4569d; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576150790112; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:01 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "0096d38710104544341205b9989b0a45f152cc73", "x-runtime": "0.05936", "x-transaction": "30d56a9e1a31ec6e", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/create.json?slug=tweeps&name=tweeps&owner_screen_name=tweepytest" }, "response": { "body_quoted_printable": "{\"full_name\":\"@tweepytest\\/lists\\/tweeps-33\",\"user\":{\"notifications\":false,=\n\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/prof=\nile_background_images\\/394345638\\/test.jpg\",\"follow_request_sent\":false,\"id=\n_str\":\"82301637\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profile_=\nuse_background_image\":false,\"profile_text_color\":\"000000\",\"url\":\"http:\\/\\/t=\n.co\\/3L9bWVrV0b\",\"statuses_count\":126,\"id\":82301637,\"entities\":{\"url\":{\"url=\ns\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.=\ncom\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"liste=\nd_count\":0,\"location\":\"pytopia\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_sidebar_border_color=\n\":\"87BC44\",\"is_translator\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"=\nutc_offset\":-21600,\"profile_background_tile\":false,\"profile_sidebar_fill_co=\nlor\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"protected\":false,\"f=\nollowers_count\":7,\"description\":\"A test account for testing stuff.\",\"favour=\nites_count\":2,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/p=\nrofile_images\\/1733327710\\/test_normal.jpg\",\"profile_background_color\":\"FFF=\nFFF\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":=\nfalse,\"verified\":false,\"following\":false,\"screen_name\":\"tweepytest\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n394345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"frie=\nnds_count\":10},\"id_str\":\"94711160\",\"slug\":\"tweeps-33\",\"subscriber_count\":0,=\n\"following\":false,\"created_at\":\"Wed Aug 21 06:16:06 +0000 2013\",\"id\":947111=\n60,\"mode\":\"public\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-33\",\"member_count\":0,=\n\"description\":\"\",\"name\":\"tweeps\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1758", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:07 GMT", "etag": "\"c183cc929a6a12b57c0fc09698648e88\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:06 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:06 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCHMPhJ9AAToHaWQiJWJlMjkzZThkNjhkMmEy%250AMjBkNGQxNTI1MjZmZWE4M2Y2Ogxjc3JmX2lkIiU3OWU0NjFmNGQ0ODcyY2Vi%250AMzVkNjUwZWRkNDhiZDkwZA%253D%253D--e8722826c8b5ab8ecb3d9fe2630252cc024d3481; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576675131856; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:07 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "e51de722519facc6d907890b65b7f6798f176077", "x-runtime": "0.29109", "x-transaction": "917a35a4fded3dea", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/update.json?description=updated%21&list_id=94711160" }, "response": { "body_quoted_printable": "{\"full_name\":\"@tweepytest\\/lists\\/tweeps-33\",\"user\":{\"notifications\":false,=\n\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/prof=\nile_background_images\\/394345638\\/test.jpg\",\"follow_request_sent\":false,\"id=\n_str\":\"82301637\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profile_=\nuse_background_image\":false,\"profile_text_color\":\"000000\",\"url\":\"http:\\/\\/t=\n.co\\/3L9bWVrV0b\",\"statuses_count\":126,\"id\":82301637,\"entities\":{\"url\":{\"url=\ns\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.=\ncom\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"liste=\nd_count\":0,\"location\":\"pytopia\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_sidebar_border_color=\n\":\"87BC44\",\"is_translator\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"=\nutc_offset\":-21600,\"profile_background_tile\":false,\"profile_sidebar_fill_co=\nlor\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"protected\":false,\"f=\nollowers_count\":7,\"description\":\"A test account for testing stuff.\",\"favour=\nites_count\":2,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/p=\nrofile_images\\/1733327710\\/test_normal.jpg\",\"profile_background_color\":\"FFF=\nFFF\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":=\nfalse,\"verified\":false,\"following\":false,\"screen_name\":\"tweepytest\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n394345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"frie=\nnds_count\":10},\"id_str\":\"94711160\",\"slug\":\"tweeps-33\",\"subscriber_count\":0,=\n\"following\":false,\"created_at\":\"Wed Aug 21 06:16:06 +0000 2013\",\"id\":947111=\n60,\"mode\":\"public\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-33\",\"member_count\":0,=\n\"description\":\"updated!\",\"name\":\"tweeps\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1766", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:07 GMT", "etag": "\"eddcae23dd3177ec182c57af540b4b0a\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:07 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:07 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCAkShJ9AAToHaWQiJWMyNjYxMWFlMjU2ZDBj%250AYTcwMjExYjBmMjc5YjEyNTUzOgxjc3JmX2lkIiUzODViMDkwZjExYmNmZTli%250ANWFlZjg5OTAwMmY4NGMwYQ%253D%253D--1cb40e673e0ea8c172cbbd16f88422be6c1495d1; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576741506128; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:07 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "916899d14ec63bfbbb59d7d43dbb78d4a7b5c9f2", "x-runtime": "0.15434", "x-transaction": "e3d88217c0835888", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/destroy.json?list_id=94711160" }, "response": { "body_quoted_printable": "{\"full_name\":\"@tweepytest\\/lists\\/tweeps-33\",\"user\":{\"notifications\":false,=\n\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/prof=\nile_background_images\\/394345638\\/test.jpg\",\"follow_request_sent\":false,\"id=\n_str\":\"82301637\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profile_=\nuse_background_image\":false,\"profile_text_color\":\"000000\",\"url\":\"http:\\/\\/t=\n.co\\/3L9bWVrV0b\",\"statuses_count\":126,\"id\":82301637,\"entities\":{\"url\":{\"url=\ns\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.=\ncom\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"urls\":[]}},\"liste=\nd_count\":0,\"location\":\"pytopia\",\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_sidebar_border_color=\n\":\"87BC44\",\"is_translator\":false,\"contributors_enabled\":false,\"lang\":\"en\",\"=\nutc_offset\":-21600,\"profile_background_tile\":false,\"profile_sidebar_fill_co=\nlor\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)\",\"protected\":false,\"f=\nollowers_count\":7,\"description\":\"A test account for testing stuff.\",\"favour=\nites_count\":2,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/p=\nrofile_images\\/1733327710\\/test_normal.jpg\",\"profile_background_color\":\"FFF=\nFFF\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":=\nfalse,\"verified\":false,\"following\":false,\"screen_name\":\"tweepytest\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n394345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"frie=\nnds_count\":10},\"id_str\":\"94711160\",\"slug\":\"tweeps-33\",\"subscriber_count\":0,=\n\"following\":false,\"created_at\":\"Wed Aug 21 06:16:06 +0000 2013\",\"id\":947111=\n60,\"mode\":\"public\",\"uri\":\"\\/tweepytest\\/lists\\/tweeps-33\",\"member_count\":0,=\n\"description\":\"updated!\",\"name\":\"tweeps\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1766", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:07 GMT", "etag": "\"eddcae23dd3177ec182c57af540b4b0a\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:07 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:07 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCGsThJ9AAToHaWQiJTk2YmVjYzA0M2UzZTE1%250AYjRlZjQzYTE3MDIyZTljMTY2Ogxjc3JmX2lkIiVhMjUzNjAzY2ZhZDg1MDg1%250AMDgyZTkxOTYwZmI1N2RiOQ%253D%253D--8ad58642b43d38071733e10c9f6bfedd517d8d49; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576776637758; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:07 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "3f3e7117ce092b5255b211de1033e2589172da24", "x-runtime": "0.06152", "x-transaction": "b508572637ba9524", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/direct_messages.json" }, "response": { "body_quoted_printable": "[{\"id\":266403740574167040,\"id_str\":\"266403740574167040\",\"text\":\"test messag=\ne\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"sc=\nreen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account =\nfor testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"u=\nrls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",=\n\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"pro=\ntected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"crea=\nted_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":=\n-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verifie=\nd\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_=\ntranslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/tes=\nt.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,=\n\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/tes=\nt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twi=\nmg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF=\n\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0F=\nF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"de=\nfault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follo=\nw_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_i=\nd_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301=\n637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\"=\n,\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:=\n28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cen=\ntral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_coun=\nt\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_bord=\ner_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_colo=\nr\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"=\nnotifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\"=\n,\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Nov 08 04:56:15 +00=\n00 2012\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[=\n]}},{\"id\":460163613,\"id_str\":\"460163613\",\"text\":\"test message\",\"sender\":{\"i=\nd\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"twe=\nepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing stu=\nff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"h=\nttp:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"=\nfoo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"=\nfollowers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oc=\nt 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zo=\nne\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statu=\nses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile=\n_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_i=\nmages\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/17333277=\n10\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_side=\nbar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_t=\next_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\"=\n:false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"8230163=\n7\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"8=\n2301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"py=\ntopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.=\nco\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0=\nb\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,2=\n2]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"fri=\nends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 200=\n9\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US &=\n Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"=\nen\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_=\ncolor\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.=\njpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"p=\nrofile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137=\n7065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC=\n44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"pr=\nofile_use_background_image\":false,\"default_profile\":false,\"default_profile_=\nimage\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":=\nfalse},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_scr=\neen_name\":\"tweepytest\",\"created_at\":\"Thu Oct 15 23:47:36 +0000 2009\",\"entit=\nies\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]}}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "6889", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:08 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:08 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576800631807; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:08 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066668", "x-transaction": "537df6eee76aa83f" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/favorites/list.json" }, "response": { "body_quoted_printable": "[{\"created_at\":\"Thu Oct 15 23:09:06 +0000 2009\",\"id\":4901065281,\"id_str\":\"4=\n901065281\",\"text\":\"another test!\",\"source\":\"web\",\"truncated\":false,\"in_repl=\ny_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\"=\n:null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":=\n{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"=\ntweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing =\nstuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url=\n\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed=\n Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time=\n_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"st=\natuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":=\nfalse,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg=\n\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/17333=\n27710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/prof=\nile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_s=\nidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profil=\ne_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profil=\ne\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_se=\nnt\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null=\n,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":1,\"entities\":{\"hash=\ntags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":true,\"retwe=\neted\":false,\"lang\":\"en\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2050", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:08 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:08 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576817582737; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:08 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066668", "x-transaction": "a85f8364158043fe" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/followers/list.json?id=tweepytest" }, "response": { "body_quoted_printable": "{\"users\":[{\"id\":305754588,\"id_str\":\"305754588\",\"name\":\"penny fink\",\"screen_=\nname\":\"pennyefink\",\"location\":\"Campton city, KY, USA\",\"description\":\"Leader=\nship - He who has learned how to obey will know how to command. #quote\",\"ur=\nl\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers=\n_count\":1072,\"friends_count\":1418,\"listed_count\":5,\"created_at\":\"Thu May 26=\n 19:02:26 +0000 2011\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":nu=\nll,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":469,\"lang\":\"en\",\"s=\ntatus\":{\"created_at\":\"Sat Jul 28 23:48:35 +0000 2012\",\"id\":2293627498624737=\n28,\"id_str\":\"229362749862473728\",\"text\":\"RT @BrianTracy: Summer is a great =\ntime to plan vacations & make memories. Watch my @youtube vid to learn =\nmy favorite memory of summe ...\",\"source\":\"web\",\"truncated\":false,\"in_reply=\n_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":=\nnull,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":nu=\nll,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{=\n\"created_at\":\"Sat Jul 28 21:35:04 +0000 2012\",\"id\":229329147405676544,\"id_s=\ntr\":\"229329147405676544\",\"text\":\"Summer is a great time to plan vacations &=\namp; make memories. Watch my @youtube vid to learn my favorite memory of su=\nmmer: http:\\/\\/t.co\\/tFgojT86\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.hoot=\nsuite.com\\\" rel=3D\\\"nofollow\\\"\\u003eHootSuite\\u003c\\/a\\u003e\",\"truncated\":f=\nalse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_repl=\ny_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\"=\n:null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retwe=\net_count\":68,\"favorite_count\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"url=\ns\":[{\"url\":\"http:\\/\\/t.co\\/tFgojT86\",\"expanded_url\":\"http:\\/\\/ow.ly\\/cypD4\"=\n,\"display_url\":\"ow.ly\\/cypD4\",\"indices\":[123,143]}],\"user_mentions\":[{\"scre=\nen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"indi=\nces\":[71,79]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":fa=\nlse,\"lang\":\"en\"},\"retweet_count\":68,\"favorite_count\":0,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"BrianTracy\",\"=\nname\":\"BrianTracy\",\"id\":16534711,\"id_str\":\"16534711\",\"indices\":[3,14]},{\"sc=\nreen_name\":\"YouTube\",\"name\":\"YouTube\",\"id\":10228272,\"id_str\":\"10228272\",\"in=\ndices\":[87,95]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"EDEC=\nE9\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgrou=\nnd_images\\/442231848\\/58320226287hkiwllg.jpg\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/442231848\\/583=\n20226287hkiwllg.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1875720419\\/951745158tyuj6a837089_norm=\nal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\=\n/1875720419\\/951745158tyuj6a837089_normal.jpg\",\"profile_link_color\":\"088253=\n\",\"profile_sidebar_border_color\":\"D3D2CF\",\"profile_sidebar_fill_color\":\"E3E=\n2DE\",\"profile_text_color\":\"634047\",\"profile_use_background_image\":true,\"def=\nault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow=\n_request_sent\":false,\"notifications\":false},{\"id\":933938155,\"id_str\":\"93393=\n8155\",\"name\":\"soraya tifani\",\"screen_name\":\"padlikere\",\"location\":\"padliker=\nen@ymail.com\",\"description\":\"hhha msy a\",\"url\":null,\"entities\":{\"descriptio=\nn\":{\"urls\":[]}},\"protected\":true,\"followers_count\":0,\"friends_count\":20,\"li=\nsted_count\":0,\"created_at\":\"Thu Nov 08 07:52:40 +0000 2012\",\"favourites_cou=\nnt\":2,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":true,\"verified=\n\":false,\"statuses_count\":11,\"lang\":\"cs\",\"contributors_enabled\":false,\"is_tr=\nanslator\":false,\"profile_background_color\":\"B2DFDA\",\"profile_background_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme13\\/bg.gif\",\"profile_b=\nackground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1=\n3\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0=\n.twimg.com\\/profile_images\\/2821984764\\/fb71e6b97b674b883f4373ddf48fec36_no=\nrmal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_imag=\nes\\/2821984764\\/fb71e6b97b674b883f4373ddf48fec36_normal.jpeg\",\"profile_bann=\ner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/933938155\\/1352620755\",\"=\nprofile_link_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profi=\nle_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_=\nbackground_image\":true,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id=\n\":896350026,\"id_str\":\"896350026\",\"name\":\"Unknown facts\",\"screen_name\":\"NoTh=\natQuote\",\"location\":\"\",\"description\":\"This page will make you knowledgeable=\n about a number of things. You learn something new everyday! If you learn s=\nomething ReTweet it!\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"pr=\notected\":false,\"followers_count\":157,\"friends_count\":236,\"listed_count\":0,\"=\ncreated_at\":\"Sun Oct 21 23:32:21 +0000 2012\",\"favourites_count\":0,\"utc_offs=\net\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_co=\nunt\":157,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Feb 26 06:44:24 +0000 2013=\n\",\"id\":306293618929434624,\"id_str\":\"306293618929434624\",\"text\":\"Hot water w=\nill turn into ice faster then cold water.\",\"source\":\"\\u003ca href=3D\\\"http:=\n\\/\\/twitter.com\\/download\\/android\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for An=\ndroid\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_re=\nply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_=\nstr\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"pla=\nce\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities=\n\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":fal=\nse,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translat=\nor\":false,\"profile_background_color\":\"1A1B1F\",\"profile_background_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"profile_backgrou=\nnd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gi=\nf\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/2813114556\\/61adfdc515f555aa9c207314e9246702_normal.jpe=\ng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2813=\n114556\\/61adfdc515f555aa9c207314e9246702_normal.jpeg\",\"profile_link_color\":=\n\"2FC2EF\",\"profile_sidebar_border_color\":\"181A1E\",\"profile_sidebar_fill_colo=\nr\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_image\":tr=\nue,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,=\n\"follow_request_sent\":false,\"notifications\":false},{\"id\":325253963,\"id_str\"=\n:\"325253963\",\"name\":\"Majid Rana\",\"screen_name\":\"MajidRana76\",\"location\":\"Un=\nited Kingdom\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\"=\n:[]}},\"protected\":false,\"followers_count\":108,\"friends_count\":1100,\"listed_=\ncount\":0,\"created_at\":\"Tue Jun 28 00:27:12 +0000 2011\",\"favourites_count\":1=\n,\"utc_offset\":3600,\"time_zone\":\"London\",\"geo_enabled\":false,\"verified\":fals=\ne,\"statuses_count\":59,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Jul 01 17:23:=\n39 +0000 2013\",\"id\":351752977993838593,\"id_str\":\"351752977993838593\",\"text\"=\n:\"@Rastrickcc , yeap they do deserve to be congratulated . keep it up Guys=\n.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=3D\\\"n=\nofollow\\\"\\u003eTweet Button\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_=\nstatus_id\":351085248089567232,\"in_reply_to_status_id_str\":\"3510852480895672=\n32\",\"in_reply_to_user_id\":311705268,\"in_reply_to_user_id_str\":\"311705268\",\"=\nin_reply_to_screen_name\":\"Rastrickcc\",\"geo\":null,\"coordinates\":null,\"place\"=\n:null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{=\n\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"Rastr=\nickcc\",\"name\":\"Rastrickcricketclub\",\"id\":311705268,\"id_str\":\"311705268\",\"in=\ndices\":[0,11]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"0099B=\n9\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/t=\nheme4\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/images\\/themes\\/theme4\\/bg.gif\",\"profile_background_tile\":false,\"profile=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3464162808\\/9ccbe234cd8=\nfe711c2522ca481588832_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/3464162808\\/9ccbe234cd8fe711c2522ca481588832_no=\nrmal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/=\n325253963\\/1364860936\",\"profile_link_color\":\"0099B9\",\"profile_sidebar_borde=\nr_color\":\"5ED4DC\",\"profile_sidebar_fill_color\":\"95E8EC\",\"profile_text_color=\n\":\"3C3940\",\"profile_use_background_image\":true,\"default_profile\":false,\"def=\nault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"no=\ntifications\":false},{\"id\":176506425,\"id_str\":\"176506425\",\"name\":\"Claudia As=\naeli\",\"screen_name\":\"xok_itc_hen_12\",\"location\":\"\",\"description\":\"\",\"url\":n=\null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_cou=\nnt\":5,\"friends_count\":41,\"listed_count\":0,\"created_at\":\"Mon Aug 09 18:37:11=\n +0000 2010\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_e=\nnabled\":false,\"verified\":false,\"statuses_count\":29,\"lang\":\"en\",\"status\":{\"c=\nreated_at\":\"Fri Sep 10 08:11:22 +0000 2010\",\"id\":24087208718,\"id_str\":\"2408=\n7208718\",\"text\":\"Het is tijd om wat serieuzer te worden, te beginnen met so=\nlliciteren!\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,=\n\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_us=\ner_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":nul=\nl,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"en=\ntities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorite=\nd\":false,\"retweeted\":false,\"lang\":\"nl\"},\"contributors_enabled\":false,\"is_tr=\nanslator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_ba=\nckground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\=\n/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/sticky\\/default_profile_images\\/default_profile_4_normal.png\",\"pr=\nofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_im=\nages\\/default_profile_4_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_=\nsidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profi=\nle_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profil=\ne\":true,\"default_profile_image\":true,\"following\":false,\"follow_request_sent=\n\":false,\"notifications\":false},{\"id\":82407351,\"id_str\":\"82407351\",\"name\":\"t=\nest\",\"screen_name\":\"tweepytest2\",\"location\":\"pytopia\",\"description\":\"just t=\nesting things out\",\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"expanded_url\":\"http:\\/\\/www.exampl=\ne.com\",\"display_url\":\"example.com\",\"indices\":[0,22]}]},\"description\":{\"urls=\n\":[]}},\"protected\":false,\"followers_count\":4,\"friends_count\":3,\"listed_coun=\nt\":0,\"created_at\":\"Wed Oct 14 17:13:03 +0000 2009\",\"favourites_count\":1,\"ut=\nc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statu=\nses_count\":9,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 14 05:45:33 +0000 =\n2009\",\"id\":5702713723,\"id_str\":\"5702713723\",\"text\":\"test 142\",\"source\":\"\\u0=\n03ca href=3D\\\"http:\\/\\/gitorious.org\\/tweepy\\\" rel=3D\\\"nofollow\\\"\\u003etwee=\npy\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply=\n_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str=\n\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\"=\n:null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{=\n\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,=\n\"retweeted\":false,\"lang\":\"et\"},\"contributors_enabled\":false,\"is_translator\"=\n:false,\"profile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profil=\ne_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_=\nimages\\/45695551\\/bg.png\",\"profile_background_tile\":false,\"profile_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/47343715=\n6\\/profile_normal.png\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_borde=\nr_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color=\n\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"def=\nault_profile_image\":false,\"following\":true,\"follow_request_sent\":false,\"not=\nifications\":false},{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh\",\"screen_n=\name\":\"applepie\",\"location\":\"Santa Clara, CA\",\"description\":\"pro\\u00b7gram\\u=\n00b7mer (n) An organism capable of converting caffeine into code.\",\"url\":nu=\nll,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_coun=\nt\":456,\"friends_count\":301,\"listed_count\":24,\"created_at\":\"Mon Oct 08 03:00=\n:34 +0000 2007\",\"favourites_count\":4,\"utc_offset\":-25200,\"time_zone\":\"Pacif=\nic Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\"=\n:7286,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 04:59:28 +0000 2013\",\"=\nid\":369685091045232640,\"id_str\":\"369685091045232640\",\"text\":\"@izs spooning =\n> forking Where's the \\\"spoon\\\" button?\",\"source\":\"web\",\"truncated\":fals=\ne,\"in_reply_to_status_id\":369681545843310594,\"in_reply_to_status_id_str\":\"3=\n69681545843310594\",\"in_reply_to_user_id\":8038312,\"in_reply_to_user_id_str\":=\n\"8038312\",\"in_reply_to_screen_name\":\"izs\",\"geo\":null,\"coordinates\":null,\"pl=\nace\":{\"id\":\"4b58830723ec6371\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/i=\nd\\/4b58830723ec6371.json\",\"place_type\":\"city\",\"name\":\"Santa Clara\",\"full_na=\nme\":\"Santa Clara, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"boundi=\nng_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.005403,37.322842],[-121.929=\n689,37.322842],[-121.929689,37.418922],[-122.005403,37.418922]]]},\"attribut=\nes\":{}},\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\"=\n:{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"izs=\n\",\"name\":\"isaacs\",\"id\":8038312,\"id_str\":\"8038312\",\"indices\":[0,4]}]},\"favor=\nited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is=\n_translator\":false,\"profile_background_color\":\"010708\",\"profile_background_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/8076084\\/2009=\n11032903-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profil=\ne_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profil=\ne_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2813279506\\/f0=\naddfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"0000FF\",\"=\nprofile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DFE1EB=\n\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"defaul=\nt_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_req=\nuest_sent\":false,\"notifications\":false}],\"next_cursor\":0,\"next_cursor_str\":=\n\"0\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "15334", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:08 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:08 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576836082471; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:08 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066668", "x-transaction": "3cd5456194364b73" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/followers/ids.json?id=tweepytest" }, "response": { "body_quoted_printable": "{\"ids\":[305754588,933938155,896350026,325253963,176506425,82407351,9302282]=\n,\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor=\n_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "160", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:08 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:08 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576865549959; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:08 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066668", "x-transaction": "8907125a7a3303a6" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/friends/list.json?id=tweepytest" }, "response": { "body_quoted_printable": "{\"users\":[{\"id\":382267114,\"id_str\":\"382267114\",\"name\":\"Android\",\"screen_nam=\ne\":\"Android\",\"location\":\"Mountain View, CA\",\"description\":\"News, tips, and =\ntricks direct from the Android team.\",\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"en=\ntities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WHg9n3cypK\",\"expanded_url\":\"=\nhttp:\\/\\/android.com\",\"display_url\":\"android.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2089492,\"friends_=\ncount\":25,\"listed_count\":12446,\"created_at\":\"Thu Sep 29 19:34:47 +0000 2011=\n\",\"favourites_count\":0,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & =\nCanada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":226,\"lang\":\"en=\n\",\"status\":{\"created_at\":\"Fri Aug 02 17:30:38 +0000 2013\",\"id\":363351145395=\n134465,\"id_str\":\"363351145395134465\",\"text\":\"RT @google: Dude, where's my p=\nhone? Three simple steps you can take to protect your @Android device http:=\n\\/\\/t.co\\/XYvyJfm2PF\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_=\nid\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_re=\nply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordin=\nates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at=\n\":\"Fri Aug 02 17:24:05 +0000 2013\",\"id\":363349498333904897,\"id_str\":\"363349=\n498333904897\",\"text\":\"Dude, where's my phone? Three simple steps you can ta=\nke to protect your @Android device http:\\/\\/t.co\\/XYvyJfm2PF\",\"source\":\"web=\n\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str=\n\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_=\nto_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributo=\nrs\":null,\"retweet_count\":682,\"favorite_count\":418,\"entities\":{\"hashtags\":[]=\n,\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/XYvyJfm2PF\",\"expanded_url\":\"ht=\ntp:\\/\\/g.co\\/jjt7\",\"display_url\":\"g.co\\/jjt7\",\"indices\":[88,110]}],\"user_me=\nntions\":[{\"screen_name\":\"Android\",\"name\":\"Android\",\"id\":382267114,\"id_str\":=\n\"382267114\",\"indices\":[72,80]}]},\"favorited\":false,\"retweeted\":false,\"possi=\nbly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":682,\"favorite_count\":0,\"e=\nntities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/XYvyJfm=\n2PF\",\"expanded_url\":\"http:\\/\\/g.co\\/jjt7\",\"display_url\":\"g.co\\/jjt7\",\"indic=\nes\":[100,122]}],\"user_mentions\":[{\"screen_name\":\"google\",\"name\":\"A Googler\"=\n,\"id\":20536157,\"id_str\":\"20536157\",\"indices\":[3,10]},{\"screen_name\":\"Androi=\nd\",\"name\":\"Android\",\"id\":382267114,\"id_str\":\"382267114\",\"indices\":[84,92]}]=\n},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en=\n\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_c=\nolor\":\"A5C639\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_background_images\\/436087884\\/TwitterX4.jpg\",\"profile_background_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/436087884\\/T=\nwitterX4.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/3092003750\\/9b72a46e957a52740c667f4c64fa5d10=\n_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/3092003750\\/9b72a46e957a52740c667f4c64fa5d10_normal.jpeg\",\"profile_l=\nink_color\":\"A5C639\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sideba=\nr_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_backgroun=\nd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follow=\ning\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":56505125=\n,\"id_str\":\"56505125\",\"name\":\"Google Chrome\",\"screen_name\":\"googlechrome\",\"l=\nocation\":\"Mountain View, California\",\"description\":\"The official Twitter ac=\ncount for the Google Chrome browser, OS, Chromebooks, and Web Store\",\"url\":=\n\"http:\\/\\/t.co\\/oQ8wOFCb4x\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.c=\no\\/oQ8wOFCb4x\",\"expanded_url\":\"http:\\/\\/google.com\\/chrome\",\"display_url\":\"=\ngoogle.com\\/chrome\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protect=\ned\":false,\"followers_count\":1825707,\"friends_count\":85,\"listed_count\":9865,=\n\"created_at\":\"Mon Jul 13 21:51:56 +0000 2009\",\"favourites_count\":0,\"utc_off=\nset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"v=\nerified\":true,\"statuses_count\":759,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat =\nAug 17 17:03:37 +0000 2013\",\"id\":368780162646548482,\"id_str\":\"3687801626465=\n48482\",\"text\":\"It\\u2019s #Caturday! http:\\/\\/t.co\\/CmBPwXnPgK\",\"source\":\"we=\nb\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_st=\nr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply=\n_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contribut=\nors\":null,\"retweet_count\":93,\"favorite_count\":52,\"entities\":{\"hashtags\":[{\"=\ntext\":\"Caturday\",\"indices\":[5,14]}],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t=\n.co\\/CmBPwXnPgK\",\"expanded_url\":\"http:\\/\\/goo.gl\\/pQi9Ag\",\"display_url\":\"go=\no.gl\\/pQi9Ag\",\"indices\":[16,38]}],\"user_mentions\":[]},\"favorited\":false,\"re=\ntweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enable=\nd\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile=\n_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/1=\n79133269\\/white.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.tw=\nimg.com\\/profile_background_images\\/179133269\\/white.gif\",\"profile_backgrou=\nnd_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1=\n281767185\\/product_logo_256_normal.png\",\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/1281767185\\/product_logo_256_normal.png\",\"=\nprofile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profi=\nle_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_=\nbackground_image\":true,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\"=\n:6844292,\"id_str\":\"6844292\",\"name\":\"Twitter Engineering\",\"screen_name\":\"Twi=\ntterEng\",\"location\":\"San Francisco, CA\",\"description\":\"The official account=\n for Twitter Engineering.\",\"url\":\"http:\\/\\/t.co\\/oEmYlYDquC\",\"entities\":{\"u=\nrl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oEmYlYDquC\",\"expanded_url\":\"http:\\/\\/en=\ngineering.twitter.com\",\"display_url\":\"engineering.twitter.com\",\"indices\":[0=\n,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":4422=\n58,\"friends_count\":0,\"listed_count\":2667,\"created_at\":\"Sat Jun 16 00:14:36 =\n+0000 2007\",\"favourites_count\":0,\"utc_offset\":-25200,\"time_zone\":\"Pacific T=\nime (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":179,=\n\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Aug 16 23:04:23 +0000 2013\",\"id\":36=\n8508567092875266,\"id_str\":\"368508567092875266\",\"text\":\"An inside (and detai=\nled) look at re-architecting Twitter. Plus, a new Tweets-per-second peak: 1=\n43,199 Tweets. https:\\/\\/t.co\\/LKH4UdScFi\",\"source\":\"\\u003ca href=3D\\\"http:=\n\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofol=\nlow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_s=\ntatus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,=\n\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":588,\"favo=\nrite_count\":343,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http=\ns:\\/\\/t.co\\/LKH4UdScFi\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/n=\new-tweets-per-second-record-and-how\",\"display_url\":\"blog.twitter.com\\/2013\\=\n/new-tweet\\u2026\",\"indices\":[110,133]}],\"user_mentions\":[]},\"favorited\":fal=\nse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_=\nenabled\":false,\"is_translator\":false,\"profile_background_color\":\"C6E2EE\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme2=\n\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/im=\nages\\/themes\\/theme2\\/bg.gif\",\"profile_background_tile\":false,\"profile_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefne=\nv0jt_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_link_color\"=\n:\"1F98C7\",\"profile_sidebar_border_color\":\"C6E2EE\",\"profile_sidebar_fill_col=\nor\":\"DAECF4\",\"profile_text_color\":\"663B12\",\"profile_use_background_image\":t=\nrue,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,=\n\"follow_request_sent\":false,\"notifications\":false},{\"id\":222953824,\"id_str\"=\n:\"222953824\",\"name\":\"Twitter Government\",\"screen_name\":\"gov\",\"location\":\"Wa=\nshington, DC\",\"description\":\"Updates from the Twitter Government & Politics=\n team, tracking creative & effective uses of Twitter for civic engagement. =\nRTs & examples\\u2260political endorsements.\",\"url\":\"https:\\/\\/t.co\\/2kb1ic9=\n3IQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2kb1ic93IQ\",\"expand=\ned_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com=\n\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"=\nfollowers_count\":443827,\"friends_count\":0,\"listed_count\":2383,\"created_at\":=\n\"Sat Dec 04 23:27:01 +0000 2010\",\"favourites_count\":9,\"utc_offset\":-14400,\"=\ntime_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,=\n\"statuses_count\":800,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Aug 18 15:30:2=\n3 +0000 2013\",\"id\":369119087890149378,\"id_str\":\"369119087890149378\",\"text\":=\n\"VIDEO: Our @AdamS and Prof. @fabiorojas discuss Twitter and U.S. House ele=\nctions on @cspanwj w\\/ @SteveScully. http:\\/\\/t.co\\/qPeQDZA3gY\",\"source\":\"\\=\nu003ca href=3D\\\"http:\\/\\/twitter.com\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for =\n iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_=\nreply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_i=\nd_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"p=\nlace\":null,\"contributors\":null,\"retweet_count\":11,\"favorite_count\":5,\"entit=\nies\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qPeQDZA3gY\"=\n,\"expanded_url\":\"http:\\/\\/www.c-spanvideo.org\\/program\\/Roj\",\"display_url\":=\n\"c-spanvideo.org\\/program\\/Roj\",\"indices\":[110,132]}],\"user_mentions\":[{\"sc=\nreen_name\":\"AdamS\",\"name\":\"Adam Sharp\",\"id\":21122578,\"id_str\":\"21122578\",\"i=\nndices\":[11,17]},{\"screen_name\":\"fabiorojas\",\"name\":\"Fabio Rojas\",\"id\":3238=\n6320,\"id_str\":\"32386320\",\"indices\":[28,39]},{\"screen_name\":\"cspanwj\",\"name\"=\n:\"Washington Journal\",\"id\":15923226,\"id_str\":\"15923226\",\"indices\":[84,92]},=\n{\"screen_name\":\"SteveScully\",\"name\":\"Steve Scully\",\"id\":24926288,\"id_str\":\"=\n24926288\",\"indices\":[96,108]}]},\"favorited\":false,\"retweeted\":false,\"possib=\nly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translato=\nr\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378138859\\/townhallbg.j=\npg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/378138859\\/townhallbg.jpg\",\"profile_background_tile\":fal=\nse,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284291316\\/=\nxu1u3i11ugj03en53ujr_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_images\\/2284291316\\/xu1u3i11ugj03en53ujr_normal.png\",\"pro=\nfile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1347=\n996109\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEE=\nD\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"pro=\nfile_use_background_image\":true,\"default_profile\":false,\"default_profile_im=\nage\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\":fal=\nse},{\"id\":130649891,\"id_str\":\"130649891\",\"name\":\"Twitter Media\",\"screen_nam=\ne\":\"twittermedia\",\"location\":\"San Francisco\",\"description\":\"Tracking cool, =\nmeaningful uses of Tweets in media, tv, sports, entertainment and journalis=\nm. Send us tips!\",\"url\":\"https:\\/\\/t.co\\/TaNgNcxAmy\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"https:\\/\\/t.co\\/TaNgNcxAmy\",\"expanded_url\":\"https:\\/\\/blog.twi=\ntter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]=\n},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2404873,\"f=\nriends_count\":296,\"listed_count\":7897,\"created_at\":\"Wed Apr 07 22:41:40 +00=\n00 2010\",\"favourites_count\":129,\"utc_offset\":-25200,\"time_zone\":\"Pacific Ti=\nme (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":725,\"=\nlang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20:59:51 +0000 2013\",\"id\":369=\n926779600777216,\"id_str\":\"369926779600777216\",\"text\":\"RT @vineapp: We've sa=\nid this before and we'll say it again: this community - now more than 40 mi=\nllion of you - is amazing. Thank you for in\\u2026\",\"source\":\"web\",\"truncate=\nd\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_=\nreply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_n=\name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"r=\netweeted_status\":{\"created_at\":\"Tue Aug 20 20:00:06 +0000 2013\",\"id\":369911=\n739782946816,\"id_str\":\"369911739782946816\",\"text\":\"We've said this before a=\nnd we'll say it again: this community - now more than 40 million of you - i=\ns amazing. Thank you for inspiring us.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\=\n/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow=\n\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_stat=\nus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in=\n_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coor=\ndinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":603,\"favorit=\ne_count\":517,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mention=\ns\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":603=\n,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_=\nmentions\":[{\"screen_name\":\"vineapp\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"=\n586671909\",\"indices\":[3,11]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"=\nen\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_background=\n_color\":\"12212D\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_background_images\\/90427732\\/twittermedia-bg.png\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/90427=\n732\\/twittermedia-bg.png\",\"profile_background_tile\":false,\"profile_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e20=\n1de2950197ab_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",=\n\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/=\n1347404321\",\"profile_link_color\":\"1D5870\",\"profile_sidebar_border_color\":\"3=\n33333\",\"profile_sidebar_fill_color\":\"EEEEEE\",\"profile_text_color\":\"333333\",=\n\"profile_use_background_image\":true,\"default_profile\":false,\"default_profil=\ne_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications\"=\n:false},{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Sports\",\"scree=\nn_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"description\":\"Sports relate=\nd tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded_url\":\"htt=\nps:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"in=\ndices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_co=\nunt\":2164522,\"friends_count\":21,\"listed_count\":4342,\"created_at\":\"Tue May 1=\n7 17:54:29 +0000 2011\",\"favourites_count\":2,\"utc_offset\":-25200,\"time_zone\"=\n:\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses=\n_count\":1034,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20:07:30 +0000 =\n2013\",\"id\":369913604612444160,\"id_str\":\"369913604612444160\",\"text\":\"RT @vin=\neapp: We've said this before and we'll say it again: this community - now m=\nore than 40 million of you - is amazing. Thank you for in\\u2026\",\"source\":\"=\n\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\=\n\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_st=\natus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"=\nin_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"co=\nordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"creat=\ned_at\":\"Tue Aug 20 20:00:06 +0000 2013\",\"id\":369911739782946816,\"id_str\":\"3=\n69911739782946816\",\"text\":\"We've said this before and we'll say it again: t=\nhis community - now more than 40 million of you - is amazing. Thank you for=\n inspiring us.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/a=\npp\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\=\nu003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to=\n_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":n=\null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":nu=\nll,\"contributors\":null,\"retweet_count\":603,\"favorite_count\":517,\"entities\":=\n{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false=\n,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":603,\"favorite_count\":0,\"ent=\nities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name=\n\":\"vineapp\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[3,=\n11]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabl=\ned\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n656936359\\/pjmryisi4g22te2awpxb.png\",\"profile_background_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g22=\nte2awpxb.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_=\nnormal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ima=\nges\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_bann=\ner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/300392950\\/1347394873\",\"=\nprofile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profi=\nle_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_=\nbackground_image\":true,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\"=\n:551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"locatio=\nn\":\"USA\",\"description\":\"There are a billion stories waiting to be made. Let=\n\\u2019s go make them together. Six words, photos or seconds\\u2014that\\u2019=\ns all you need to get inspired. #GoInSix\",\"url\":\"https:\\/\\/t.co\\/01tbcM2oop=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/01tbcM2oop\",\"expanded_=\nurl\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebook=\n.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},=\n\"protected\":false,\"followers_count\":76448,\"friends_count\":1115,\"listed_coun=\nt\":289,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":31,=\n\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":=\nfalse,\"verified\":true,\"statuses_count\":4666,\"lang\":\"en\",\"status\":{\"created_=\nat\":\"Tue Aug 20 21:46:44 +0000 2013\",\"id\":369938578551611392,\"id_str\":\"3699=\n38578551611392\",\"text\":\"@molinaridom We are now following you Dominick.\",\"s=\nource\":\"\\u003ca href=3D\\\"https:\\/\\/twitter.com\\/visa\\\" rel=3D\\\"nofollow\\\"\\u=\n003e@Visa Genesys Primary\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_st=\natus_id\":369908268065628161,\"in_reply_to_status_id_str\":\"369908268065628161=\n\",\"in_reply_to_user_id\":606005586,\"in_reply_to_user_id_str\":\"606005586\",\"in=\n_reply_to_screen_name\":\"molinaridom\",\"geo\":null,\"coordinates\":null,\"place\":=\nnull,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":3,\"entities\":{\"=\nhashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"molina=\nridom\",\"name\":\"dominick molinari\",\"id\":606005586,\"id_str\":\"606005586\",\"indi=\nces\":[0,12]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributo=\nrs_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"000000\"=\n,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_=\nimages\\/344918034408433340\\/5d6be393d09b7bf229ac5bc58dae8099.jpeg\",\"profile=\n_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_i=\nmages\\/344918034408433340\\/5d6be393d09b7bf229ac5bc58dae8099.jpeg\",\"profile_=\nbackground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/344513261568985151\\/439e25b1682b75497349b27706f053d2_normal.jpeg\",\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/34451326=\n1568985151\\/439e25b1682b75497349b27706f053d2_normal.jpeg\",\"profile_banner_u=\nrl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1371047696\",\"prof=\nile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_s=\nidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_back=\nground_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"f=\nollowing\":true,\"follow_request_sent\":false,\"notifications\":false},{\"id\":102=\n28272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"locatio=\nn\":\"San Bruno, CA\",\"description\":\"Tweets on YouTube news, trends, and \\u201=\n4 of course \\u2014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"entities\":{\"=\nurl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expanded_url\":\"http:\\/\\/y=\noutube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{=\n\"urls\":[]}},\"protected\":false,\"followers_count\":32286991,\"friends_count\":53=\n6,\"listed_count\":66350,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favou=\nrites_count\":216,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada=\n)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8344,\"lang\":\"en\",\"st=\natus\":{\"created_at\":\"Wed Aug 21 03:55:03 +0000 2013\",\"id\":37003126874414694=\n4,\"id_str\":\"370031268744146944\",\"text\":\"Avril Lavigne fights for #RockNRoll=\n in her new video. http:\\/\\/t.co\\/yOWuffCAen\",\"source\":\"\\u003ca href=3D\\\"ht=\ntp:\\/\\/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u=\n003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id=\n_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_re=\nply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contri=\nbutors\":null,\"retweet_count\":280,\"favorite_count\":152,\"entities\":{\"hashtags=\n\":[{\"text\":\"RockNRoll\",\"indices\":[25,35]}],\"symbols\":[],\"urls\":[{\"url\":\"htt=\np:\\/\\/t.co\\/yOWuffCAen\",\"expanded_url\":\"http:\\/\\/goo.gl\\/j3pbQ6\",\"display_u=\nrl\":\"goo.gl\\/j3pbQ6\",\"indices\":[54,76]}],\"user_mentions\":[]},\"favorited\":fa=\nlse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors=\n_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"333333\",\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_ba=\nckground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_imag=\nes\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_back=\nground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_image=\ns\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacke=\nd_google_200px_normal.png\",\"profile_link_color\":\"1C62B9\",\"profile_sidebar_b=\norder_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_c=\nolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,=\n\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":false,=\n\"notifications\":false},{\"id\":82407351,\"id_str\":\"82407351\",\"name\":\"test\",\"sc=\nreen_name\":\"tweepytest2\",\"location\":\"pytopia\",\"description\":\"just testing t=\nhings out\",\"url\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"entities\":{\"url\":{\"urls\":[{\"u=\nrl\":\"http:\\/\\/t.co\\/CWro7mP5QY\",\"expanded_url\":\"http:\\/\\/www.example.com\",\"=\ndisplay_url\":\"example.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"=\nprotected\":false,\"followers_count\":4,\"friends_count\":3,\"listed_count\":0,\"cr=\neated_at\":\"Wed Oct 14 17:13:03 +0000 2009\",\"favourites_count\":1,\"utc_offset=\n\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_coun=\nt\":9,\"lang\":\"en\",\"status\":{\"created_at\":\"Sat Nov 14 05:45:33 +0000 2009\",\"i=\nd\":5702713723,\"id_str\":\"5702713723\",\"text\":\"test 142\",\"source\":\"\\u003ca hre=\nf=3D\\\"http:\\/\\/gitorious.org\\/tweepy\\\" rel=3D\\\"nofollow\\\"\\u003etweepy\\u003c=\n\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_stat=\nus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"=\nin_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"c=\nontributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweet=\ned\":false,\"lang\":\"et\"},\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_background_images\\/45695551\\/bg.png\",\"profile_backgr=\nound_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/=\n45695551\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/473437156\\/profile_normal.png\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/473437156\\/profi=\nle_normal.png\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\"=\n:\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"00000=\n0\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_pro=\nfile_image\":false,\"following\":true,\"follow_request_sent\":false,\"notificatio=\nns\":false},{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Josh\",\"screen_name\":\"ap=\nplepie\",\"location\":\"Santa Clara, CA\",\"description\":\"pro\\u00b7gram\\u00b7mer =\n(n) An organism capable of converting caffeine into code.\",\"url\":null,\"enti=\nties\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":456,\"=\nfriends_count\":301,\"listed_count\":24,\"created_at\":\"Mon Oct 08 03:00:34 +000=\n0 2007\",\"favourites_count\":4,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time =\n(US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":7286,\"l=\nang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 04:59:28 +0000 2013\",\"id\":3696=\n85091045232640,\"id_str\":\"369685091045232640\",\"text\":\"@izs spooning > for=\nking Where's the \\\"spoon\\\" button?\",\"source\":\"web\",\"truncated\":false,\"in_re=\nply_to_status_id\":369681545843310594,\"in_reply_to_status_id_str\":\"369681545=\n843310594\",\"in_reply_to_user_id\":8038312,\"in_reply_to_user_id_str\":\"8038312=\n\",\"in_reply_to_screen_name\":\"izs\",\"geo\":null,\"coordinates\":null,\"place\":{\"i=\nd\":\"4b58830723ec6371\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/4b588=\n30723ec6371.json\",\"place_type\":\"city\",\"name\":\"Santa Clara\",\"full_name\":\"San=\nta Clara, CA\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":=\n{\"type\":\"Polygon\",\"coordinates\":[[[-122.005403,37.322842],[-121.929689,37.3=\n22842],[-121.929689,37.418922],[-122.005403,37.418922]]]},\"attributes\":{}},=\n\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hasht=\nags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"izs\",\"name\"=\n:\"isaacs\",\"id\":8038312,\"id_str\":\"8038312\",\"indices\":[0,4]}]},\"favorited\":fa=\nlse,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_transla=\ntor\":false,\"profile_background_color\":\"010708\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/8076084\\/200911032903=\n-12395.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_backgr=\nound_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images=\n\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa0=\n62b23a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"0000FF\",\"profile_=\nsidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DFE1EB\",\"profi=\nle_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_profil=\ne\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_sen=\nt\":false,\"notifications\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"pre=\nvious_cursor\":0,\"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "27829", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:08 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:08 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576881407931; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:08 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066668", "x-transaction": "fba253f473598dd5" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/friends/ids.json?id=tweepytest" }, "response": { "body_quoted_printable": "{\"ids\":[382267114,56505125,6844292,222953824,130649891,300392950,551373363,=\n10228272,82407351,9302282],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_=\ncursor\":0,\"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "186", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:09 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:09 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576905191288; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:09 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066669", "x-transaction": "cb5fef16e159e74c" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/geo/similar_places.json?lat=37&name=Twitter+HQ&long=-122" }, "response": { "body_quoted_printable": "{\"query\":{\"params\":{\"strict\":false,\"autocomplete\":null,\"accuracy\":null,\"con=\ntained_within\":null,\"query\":null,\"coordinates\":{\"type\":\"Point\",\"coordinates=\n\":[-122,37]},\"granularity\":\"\",\"name\":\"Twitter HQ\"},\"url\":\"https:\\/\\/api.twi=\ntter.com\\/1.1\\/geo\\/similar_places.json?strict=3Dfalse&autocomplete=3D&accu=\nracy=3D&contained_within=3D&query=3D&lat=3D37&granularity=3D&long=3D-122&na=\nme=3DTwitter+HQ\",\"type\":\"similar_places\"},\"result\":{\"token\":\"19153cc4df966b=\n1787165f4620baa6a0\",\"places\":[{\"full_name\":\"Kyheo HQ, Twitter HQ\",\"country_=\ncode\":\"US\",\"contained_within\":[{\"country_code\":\"US\",\"full_name\":\"Twitter HQ=\n, San Francisco\",\"id\":\"247f43d441defc03\",\"place_type\":\"poi\",\"url\":\"https:\\/=\n\\/api.twitter.com\\/1.1\\/geo\\/id\\/247f43d441defc03.json\",\"country\":\"United S=\ntates\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.400612831116,=\n37.7821120598956],[-122.400612831116,37.7821120598956],[-122.400612831116,3=\n7.7821120598956],[-122.400612831116,37.7821120598956]]]},\"attributes\":{\"str=\neet_address\":\"795 Folsom St\"},\"name\":\"Twitter HQ\"}],\"place_type\":\"poi\",\"id\"=\n:\"3bdf30ed8b201f31\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/3bdf30e=\nd8b201f31.json\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",=\n\"coordinates\":[[[-122.0,37.0],[-122.0,37.0],[-122.0,37.0],[-122.0,37.0]]]},=\n\"attributes\":{},\"name\":\"Kyheo HQ\"}]}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1294", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:09 GMT", "etag": "\"d06fccec06b8479afd62d0f147d53dd1\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:09 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:09 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCCoZhJ9AAToHaWQiJTcwZTc2YWQzNzQ2Yjc2%250AY2ViMGVhYTFkNTc2YzEyNjE5--b595f1f95b278b232b32b9ffa0f7b6b244db7797; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576923721356; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:09 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "9ffe02f579dd3b3f3031a35bcf0c57afed36e4e1", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066669", "x-runtime": "0.02757", "x-transaction": "4cf78f5ff9d9282a", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/geo/id/c3f37afa9efcf94b.json" }, "response": { "body_quoted_printable": "{\"id\":\"c3f37afa9efcf94b\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/c3=\nf37afa9efcf94b.json\",\"place_type\":\"city\",\"name\":\"Austin\",\"full_name\":\"Austi=\nn, TX\",\"country_code\":\"US\",\"country\":\"United States\",\"contained_within\":[{\"=\nid\":\"e0060cda70f5f341\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e006=\n0cda70f5f341.json\",\"place_type\":\"admin\",\"name\":\"Texas\",\"full_name\":\"Texas, =\nUS\",\"country_code\":\"US\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"P=\nolygon\",\"coordinates\":[[[-106.645646,25.837163999999998],[-93.508039,25.837=\n163999999998],[-93.508039,36.500704],[-106.645646,36.500704]]]},\"attributes=\n\":{}}],\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-97.928737,30.18=\n2122],[-97.92845,30.18748],[-97.916477,30.203656],[-97.912469,30.203746],[-=\n97.914049,30.200957],[-97.913452,30.197768],[-97.907647,30.1975],[-97.90496=\n6,30.200078],[-97.903124,30.199024],[-97.901291,30.201776],[-97.893012,30.1=\n97703],[-97.888941,30.204562],[-97.89173,30.208247],[-97.89649,30.209254],[=\n-97.894849,30.211683],[-97.897447,30.212901],[-97.888305,30.229195],[-97.90=\n9837,30.234953],[-97.904461,30.244408],[-97.909262,30.246318],[-97.903566,3=\n0.253925],[-97.907653,30.255787],[-97.911947,30.252299],[-97.916448,30.2547=\n97],[-97.912114,30.259343],[-97.90926,30.25997],[-97.914047,30.271302],[-97=\n.911945,30.271534],[-97.916688,30.280022],[-97.917083,30.287781],[-97.91158=\n6,30.292934],[-97.907711,30.300912],[-97.907678,30.305752],[-97.911257,30.3=\n14666],[-97.908121,30.320758],[-97.908743,30.329153],[-97.909413,30.330453]=\n,[-97.920787,30.324903],[-97.92066,30.322941],[-97.928668,30.324888],[-97.9=\n35202,30.329143],[-97.938282,30.336971],[-97.937991,30.340962],[-97.93568,3=\n0.339198],[-97.921132,30.353856],[-97.922056,30.3568],[-97.919126,30.356602=\n],[-97.917952,30.364796],[-97.915894,30.365343],[-97.917965,30.377],[-97.91=\n6633,30.379968],[-97.917624,30.384704],[-97.91316,30.391092],[-97.906505,30=\n.393411],[-97.905951,30.390381],[-97.903851,30.390623],[-97.882945,30.39788=\n8],[-97.881458,30.396618],[-97.883439,30.3959],[-97.882052,30.392217],[-97.=\n875477,30.393026],[-97.858659,30.396979],[-97.854573,30.403568],[-97.862515=\n,30.408099],[-97.869024,30.416316],[-97.869534,30.419803],[-97.873148,30.42=\n46],[-97.87755,30.413164],[-97.872801,30.411911],[-97.874471,30.408414],[-9=\n7.875995,30.410914],[-97.877986,30.411324],[-97.879021,30.409455],[-97.8873=\n79,30.411084],[-97.886344,30.407846],[-97.889196,30.4071],[-97.891285,30.40=\n9713],[-97.896281,30.409524],[-97.893514,30.407614],[-97.894793,30.406683],=\n[-97.897239,30.408127],[-97.894987,30.404819],[-97.899314,30.403299],[-97.9=\n03942,30.413949],[-97.900752,30.422358],[-97.898398,30.423711],[-97.892208,=\n30.422941],[-97.889696,30.424877],[-97.884202,30.42186],[-97.87893,30.42820=\n8],[-97.875983,30.42768],[-97.876094,30.425299],[-97.874464,30.425231],[-97=\n.873792,30.4266],[-97.875904,30.42836],[-97.875853,30.431252],[-97.880023,3=\n0.431061],[-97.881598,30.429368],[-97.880304,30.432109],[-97.87855,30.43216=\n1],[-97.873619,30.439849],[-97.871376,30.441132],[-97.869076,30.440354],[-9=\n7.865216,30.442698],[-97.863198,30.441008],[-97.866805,30.437738],[-97.8688=\n4,30.43927],[-97.870504,30.437538],[-97.868413,30.436219],[-97.872955,30.42=\n9207],[-97.870782,30.428491],[-97.872184,30.424686],[-97.868566,30.420089],=\n[-97.868238,30.416718],[-97.861655,30.408909],[-97.853597,30.404553],[-97.8=\n49563,30.412381],[-97.85557,30.413737],[-97.855862,30.41671],[-97.865265,30=\n.419842],[-97.864124,30.42126],[-97.865472,30.422653],[-97.859668,30.427073=\n],[-97.853975,30.424218],[-97.851495,30.42887],[-97.847267,30.42628],[-97.8=\n48271,30.421357],[-97.846198,30.4203],[-97.840469,30.435325],[-97.839145,30=\n.436777],[-97.841741,30.437995],[-97.840911,30.439723],[-97.837805,30.43833=\n7],[-97.83386,30.442814],[-97.837034,30.443523],[-97.838319,30.441904],[-97=\n.840367,30.443372],[-97.844466,30.441383],[-97.848212,30.447357],[-97.85189=\n1,30.447627],[-97.853444,30.4506],[-97.851933,30.451346],[-97.847973,30.448=\n733],[-97.846053,30.450145],[-97.836571,30.445577],[-97.843647,30.449519],[=\n-97.842789,30.451175],[-97.845457,30.453408],[-97.848151,30.450642],[-97.85=\n0268,30.452015],[-97.847617,30.45349],[-97.845841,30.457367],[-97.83869,30.=\n460954],[-97.836915,30.460202],[-97.83883,30.457944],[-97.837236,30.456888]=\n,[-97.840485,30.453074],[-97.839259,30.452019],[-97.837288,30.453662],[-97.=\n83652,30.455222],[-97.833897,30.457847],[-97.833875,30.455372],[-97.835946,=\n30.455629],[-97.837548,30.451082],[-97.836391,30.450317],[-97.832984,30.455=\n21],[-97.830973,30.454211],[-97.832515,30.451996],[-97.829897,30.450639],[-=\n97.823505,30.45837],[-97.820214,30.461073],[-97.810859,30.46408],[-97.81533=\n3,30.475297],[-97.80292,30.479677],[-97.807163,30.486427],[-97.768668,30.49=\n685],[-97.764661,30.489128],[-97.758405,30.490797],[-97.755089,30.483496],[=\n-97.765407,30.480523],[-97.7621,30.479045],[-97.747095,30.483107],[-97.7467=\n94,30.481664],[-97.748169,30.481372],[-97.744878,30.4807],[-97.769638,30.47=\n3118],[-97.780346,30.472335],[-97.780467,30.469766],[-97.784547,30.465592],=\n[-97.783002,30.46189],[-97.779946,30.463455],[-97.778804,30.45959],[-97.780=\n69,30.459014],[-97.777977,30.452651],[-97.785235,30.450363],[-97.773413,30.=\n441449],[-97.76733,30.442713],[-97.767768,30.44411],[-97.764888,30.446514],=\n[-97.762144,30.440873],[-97.758406,30.441118],[-97.758662,30.442352],[-97.7=\n49525,30.445282],[-97.748091,30.441807],[-97.742349,30.443859],[-97.74498,3=\n0.448179],[-97.751563,30.453599],[-97.754554,30.460582],[-97.746615,30.4624=\n38],[-97.745958,30.459063],[-97.747676,30.458571],[-97.747889,30.454464],[-=\n97.744638,30.452519],[-97.740512,30.444639],[-97.732147,30.43975],[-97.7238=\n14,30.438415],[-97.71911,30.435483],[-97.717208,30.435304],[-97.715734,30.4=\n37419],[-97.710751,30.434978],[-97.711077,30.43404],[-97.707532,30.439788],=\n[-97.701491,30.436655],[-97.702829,30.44169],[-97.712271,30.445343],[-97.70=\n9331,30.450372],[-97.704917,30.448049],[-97.702412,30.450261],[-97.699467,3=\n0.449004],[-97.698364,30.450461],[-97.695511,30.44908],[-97.697821,30.44021=\n3],[-97.682642,30.433691],[-97.684282,30.430607],[-97.671862,30.424528],[-9=\n7.67125,30.427578],[-97.67277,30.428101],[-97.672518,30.429078],[-97.671082=\n,30.428452],[-97.668609,30.442542],[-97.670126,30.443985],[-97.668115,30.44=\n5192],[-97.666568,30.453394],[-97.669869,30.455473],[-97.668262,30.458019],=\n[-97.670277,30.462247],[-97.66841,30.461562],[-97.670745,30.468225],[-97.67=\n2182,30.466474],[-97.670986,30.463154],[-97.676581,30.4666],[-97.674445,30.=\n470623],[-97.67176,30.47099],[-97.671339,30.469472],[-97.667352,30.469058],=\n[-97.664185,30.459714],[-97.666278,30.459155],[-97.663375,30.455864],[-97.6=\n61636,30.449875],[-97.664432,30.443674],[-97.65276,30.4378],[-97.651823,30.=\n436898],[-97.653232,30.43223],[-97.65128,30.431886],[-97.652087,30.430974],=\n[-97.659202,30.434668],[-97.667643,30.422774],[-97.6589,30.418459],[-97.648=\n617,30.409541],[-97.640814,30.404859],[-97.6399,30.404396],[-97.638424,30.4=\n06613],[-97.636884,30.405904],[-97.651838,30.381808],[-97.64622,30.377468],=\n[-97.642314,30.383439],[-97.633479,30.379643],[-97.629269,30.38507],[-97.62=\n9141,30.383901],[-97.628294,30.384733],[-97.62541,30.383495],[-97.626488,30=\n.381543],[-97.625153,30.380942],[-97.635605,30.363291],[-97.639241,30.36263=\n6],[-97.639649,30.356054],[-97.648277,30.356319],[-97.647242,30.35281],[-97=\n.656754,30.356127],[-97.647117,30.359813],[-97.64838,30.365088],[-97.654188=\n,30.366785],[-97.658963,30.358506],[-97.659761,30.36006],[-97.657615,30.364=\n311],[-97.662268,30.367075],[-97.662249,30.365629],[-97.666615,30.363914],[=\n-97.666749,30.362611],[-97.669262,30.362943],[-97.673673,30.354602],[-97.66=\n9403,30.351102],[-97.6729,30.346947],[-97.6727,30.345247],[-97.670338,30.34=\n5354],[-97.653668,30.337459],[-97.657814,30.33268],[-97.654506,30.329625],[=\n-97.624003,30.331197],[-97.616608,30.343545],[-97.623085,30.346572],[-97.61=\n9035,30.353649],[-97.622754,30.355184],[-97.618903,30.362562],[-97.621277,3=\n0.364992],[-97.628511,30.362909],[-97.618422,30.373745],[-97.613143,30.3717=\n62],[-97.606765,30.381673],[-97.605557,30.37993],[-97.591522,30.373309],[-9=\n7.59471,30.368664],[-97.6003,30.371651],[-97.603406,30.365837],[-97.607002,=\n30.366598],[-97.609242,30.362952],[-97.606601,30.361719],[-97.609293,30.357=\n614],[-97.607507,30.356631],[-97.610568,30.350592],[-97.605789,30.348328],[=\n-97.610508,30.341103],[-97.604583,30.338148],[-97.603769,30.339358],[-97.60=\n657,30.340855],[-97.602482,30.346659],[-97.595669,30.343093],[-97.588838,30=\n.350776],[-97.580625,30.344254],[-97.578881,30.344614],[-97.580298,30.34217=\n8],[-97.575264,30.342287],[-97.572849,30.346011],[-97.574932,30.342065],[-9=\n7.581222,30.341909],[-97.580721,30.344196],[-97.599433,30.337368],[-97.6011=\n29,30.339697],[-97.60288,30.33952],[-97.601734,30.33652],[-97.621415,30.331=\n343],[-97.622061,30.329933],[-97.661206,30.327662],[-97.671139,30.32479],[-=\n97.664035,30.317485],[-97.660856,30.319385],[-97.656363,30.316922],[-97.657=\n264,30.315795],[-97.655756,30.314865],[-97.651615,30.316131],[-97.65233,30.=\n313275],[-97.641537,30.306703],[-97.64304,30.305535],[-97.644972,30.301954]=\n,[-97.640925,30.306817],[-97.633061,30.306332],[-97.63023,30.307885],[-97.6=\n20842,30.302262],[-97.620266,30.303158],[-97.623549,30.304935],[-97.622082,=\n30.307349],[-97.618736,30.305595],[-97.605379,30.326375],[-97.599278,30.326=\n063],[-97.585399,30.319333],[-97.591958,30.309019],[-97.573102,30.299884],[=\n-97.576165,30.288521],[-97.590463,30.287828],[-97.595834,30.282257],[-97.59=\n1658,30.279711],[-97.592665,30.277665],[-97.596771,30.280835],[-97.599956,3=\n0.275877],[-97.601363,30.276284],[-97.603852,30.273082],[-97.604994,30.2734=\n79],[-97.603262,30.276948],[-97.610046,30.280253],[-97.609153,30.281626],[-=\n97.618362,30.285108],[-97.617734,30.286093],[-97.620679,30.287708],[-97.620=\n079,30.288608],[-97.624481,30.290708],[-97.626178,30.288108],[-97.63352,30.=\n290938],[-97.635088,30.290407],[-97.639517,30.283722],[-97.634381,30.281275=\n],[-97.636478,30.278042],[-97.630069,30.272399],[-97.63578,30.265147],[-97.=\n639495,30.267806],[-97.642933,30.264026],[-97.641514,30.263596],[-97.638941=\n,30.257948],[-97.62538,30.255555],[-97.62524,30.249084],[-97.632119,30.2394=\n42],[-97.650488,30.234562],[-97.658035,30.225268],[-97.646169,30.211944],[-=\n97.636264,30.208617],[-97.626418,30.210217],[-97.645194,30.193721],[-97.645=\n431,30.191994],[-97.644455,30.187968],[-97.633713,30.182967],[-97.636678,30=\n.177667],[-97.627603,30.172365],[-97.635813,30.162669],[-97.625688,30.15848=\n8],[-97.627283,30.155245],[-97.621108,30.152213],[-97.624551,30.146701],[-9=\n7.635619,30.151976],[-97.632991,30.156198],[-97.636932,30.158454],[-97.6429=\n11,30.149083],[-97.651861,30.152921],[-97.657028,30.157323],[-97.656024,30.=\n160118],[-97.661934,30.163428],[-97.66066,30.166303],[-97.663761,30.167919]=\n,[-97.663505,30.170337],[-97.672754,30.174464],[-97.674638,30.174494],[-97.=\n676413,30.171432],[-97.682247,30.17327],[-97.683019,30.178899],[-97.685305,=\n30.180845],[-97.683069,30.182665],[-97.684087,30.183533],[-97.685817,30.181=\n36],[-97.708853,30.200827],[-97.713179,30.196552],[-97.711318,30.193847],[-=\n97.720708,30.180937],[-97.723112,30.16763],[-97.729019,30.158138],[-97.7305=\n98,30.157319],[-97.736173,30.159865],[-97.736018,30.155019],[-97.734706,30.=\n154016],[-97.739754,30.156349],[-97.741052,30.153939],[-97.746398,30.156038=\n],[-97.745276,30.158486],[-97.750579,30.160495],[-97.749676,30.162177],[-97=\n.751447,30.164789],[-97.75938,30.170161],[-97.768208,30.166457],[-97.766946=\n,30.170031],[-97.768708,30.17049],[-97.769632,30.175413],[-97.769063,30.183=\n369],[-97.772437,30.184986],[-97.782988,30.169825],[-97.78446,30.165429],[-=\n97.787458,30.161409],[-97.788583,30.161945],[-97.791347,30.152853],[-97.788=\n262,30.151818],[-97.789959,30.147482],[-97.78607,30.148096],[-97.789601,30.=\n144463],[-97.791792,30.144893],[-97.792735,30.143151],[-97.794352,30.14402]=\n,[-97.805471,30.115204],[-97.813162,30.098659],[-97.795723,30.141256],[-97.=\n813124,30.144751],[-97.812747,30.14956],[-97.814366,30.15278],[-97.817058,3=\n0.153286],[-97.817607,30.172264],[-97.820611,30.172038],[-97.821207,30.1701=\n74],[-97.824691,30.17091],[-97.824246,30.172183],[-97.830686,30.17226],[-97=\n.830654,30.170062],[-97.835144,30.169976],[-97.83542,30.162533],[-97.832004=\n,30.162018],[-97.833372,30.159499],[-97.83325,30.152516],[-97.840898,30.152=\n503],[-97.840839,30.154576],[-97.844979,30.154579],[-97.844973,30.152234],[=\n-97.847742,30.152196],[-97.847737,30.149447],[-97.858938,30.147201],[-97.86=\n0214,30.158766],[-97.848844,30.158881],[-97.850341,30.173037],[-97.856437,3=\n0.173189],[-97.853761,30.177403],[-97.858573,30.178144],[-97.861742,30.1759=\n18],[-97.861532,30.177922],[-97.884479,30.181183],[-97.884355,30.178817],[-=\n97.886867,30.178733],[-97.891219,30.173293],[-97.885801,30.173299],[-97.885=\n801,30.17154],[-97.896824,30.171552],[-97.896884,30.173239],[-97.892938,30.=\n173247],[-97.897015,30.179207],[-97.90513,30.179181],[-97.906129,30.177765]=\n,[-97.909227,30.177739],[-97.908562,30.167742],[-97.919301,30.175303],[-97.=\n919106,30.177324],[-97.920701,30.177384],[-97.920562,30.178583],[-97.92286,=\n30.17785],[-97.928737,30.182122]]],[[[-97.92415,30.247209],[-97.921164,30.2=\n4988],[-97.918621,30.248064],[-97.917891,30.24887],[-97.920609,30.250419],[=\n-97.917958,30.253209],[-97.912075,30.249961],[-97.919043,30.239387],[-97.91=\n9824,30.240089],[-97.918092,30.242603],[-97.920458,30.24065],[-97.92727,30.=\n24628],[-97.92415,30.247209]]],[[[-97.662062,30.325806],[-97.661287,30.3270=\n8],[-97.656066,30.327419],[-97.657727,30.324546],[-97.662062,30.325806]]],[=\n[[-97.572424,30.346666],[-97.571208,30.350392],[-97.569391,30.353522],[-97.=\n56842,30.354091],[-97.572424,30.346666]]]]},\"polylines\":[\"g}ewDruutQo`@y@cd=\nByiAQaXlPzH|RwBt@gc@cOwOrEqJgPmJnXwr@{i@mXaVlPgEv\\\\eNgIsFfO{dBex@}b@reCcz@s=\n`@}J~\\\\qn@qb@sJnXxTzYsNb[k[cZ}ByPyeA|\\\\m@eLat@t\\\\oo@lAe_@ia@{p@gWg]Ewv@jUae=\n@sRms@zBcGdCta@bfAfKYeK`q@qYxg@}o@fR}Wy@~ImMszA}yAkQxDf@iQgr@kFkB{K{gA|KqQi=\nGq\\\\dE}f@{ZoMsh@|QmBo@cLml@uaC|FgHnCjK~UuGaDah@uWchBeh@qXi[rp@kr@tg@wTdB_]r=\nUnfAnZxFu\\\\zTlIsNnHqAnKrJlEcIfs@dSoEtCzPiO~Kd@f^|JiPxD~FaHhNtSaMnH~YqaA|[qs=\n@}RmGuMxCue@cKuNzQka@uf@}_@hBmQzMTLeIqGeC_JdLaQId@`YpIzHcPcGI}Iao@y]_G_MzCk=\nMuMcWpIsKlSnUqHvKxIjIfGaLxj@j[nCqLvVvGv[qU`TaAxo@eh@fZiq@}o@gXoGpd@qQx@qRvy=\n@{GcFuGlGsZgc@xPsb@a\\\\oNdOkYv]fErE}K}|Ayb@aHiGsFfOwIeDrGmR}ZsWmCxRbI`GeHxKl=\nKrXkd@jVu@~UqQtHuCmHjOwW{G_Kp[gz@sWfk@kIkD}LtOhPxOsGfLeHqOgWcJkUuk@tCcJbM~J=\npE}HzVfSpEsFgIiKwHyCmOkOnNEs@~Kl[~HvCgFq]iTfEqKxLrHnGiOio@_g@{OqSyQmy@ceA|Z=\nkZqlAei@nYc`AqoFfo@aXmIcf@rl@uSrQn_AdHuSkXy|A`H{@x@rGdCqSjn@vyCzC|aA`OVbYnX=\nbVuHyHaRdWeFrBxJvf@}OhMhl@tv@{hA{F_e@wGvA_N_Qfb@ePq@iVuFp@iQcx@tT}GyK{b@_Zl=\nO{`@bh@sj@tQsJsp@bTaC`BvItXh@bKiSfp@yXp]gs@hGcs@jQk\\\\b@{JgLgHfNc^zD`A}b@eUp=\nRwd@m^jGyU~y@m^kQnMqZyLuNzFkQcH}ErGyPlv@lMvg@{}AfRfI~d@slAaRyBgBnHcEq@|B_Ha=\nwAmNaHnHoFsKgr@sH_LrS}NaImYrKhCuJuh@pM~I~GvSmFqT|a@cXkLiAwOnHsApA}Wly@yRlBb=\nLrSeQjd@yIxe@lPtc@}gArD{Dd\\\\xGbAeKvD`DcVlk@jiAvs@|Ysu@vv@g_Af\\\\yo@zAuDyLgHl=\nCsHpuCn|AbZcb@id@mWvVev@}`@iYhFYeDiDtF_QfKvEvBkGhmBh`A`CvUdh@pAu@|t@|ToEwSl=\nz@_Ve{@_`@zFsIhc@vr@x\\\\uH~CqYmLiPb\\\\`HCvIfZbGZaAtNbs@pZzTuY|XzTrIg@SwMhp@eg=\nBz\\\\zX`RsSyHu}DelAem@{Qlg@gk@iXqHfVcm@aWeNzM~Kdl@wbAa~@lK_`@}|@{f@zIoFjh@wv=\nA`\\\\|RuQ|a@hc@lRwClUxU~LtFoOtXxObEcJvd@bRbM{\\\\dl@n\\\\lQad@qFaDkHnPgc@qXhUqi@=\nao@ui@xg@kr@gA{IdNzGUo^gVaNrW~K^hf@iMcBti@|sBqMrIb@|IvQeFj_@~yBxG`CdMtsF|P`=\n}@rl@mk@{JyRlNc[~ErDxDkH{F}XxPnCbh@mbAfFjHlU`Km]iX`Bcp@wHuPdb@uy@sDqBcJnSaN=\neH|I{S{`CorA~@ce@`i@wuAl_A~g@bx@{tB~eAbRhCjxAxa@p`@|NaYvKfEyRtX~]|RoAvG~RpN=\noAbFuTyIsSli@sGsDwTpx@cE}BcIlQsDwBcLnZfOrIuPzl@hBxHxh@tZfNc_@fSbLfb@ag@hl@t=\nb@sOdVrVnTtA{Ghb@aO|MwsAng@[f{@~i@n]xqB`y@bn@hrAciAvS}|@_Io|@bfBhtBxIn@bXcE=\nf^cbAb`@pQb`@ww@r{@hr@bYg~@fS|H~Qqe@la@nT_`@ddAkYmOaMrWpy@jd@_W|v@oZh_@oPiE=\nuS|c@}P}FcIjRcNs@wXxx@ExJbR`JoJnc@eb@xCeKfMkJ}LkDjEpLxIuxB|nCvY`ZzOsJtoAty@=\ndrA~Mhz@|c@bDzH}Nxa@h]]fEeGqMn^`NbGcLl`@iN_FqKb`@oIsDiO`Jq`@pp@bVdv@iU{F{A~=\nIw]vDwp@qBcIbTv}A|`AnZdHbXvQkB~Ezw@hPlEiRbZrI{BiWvU`UuAtLzIzDmDbIbsDndAjfB`=\no@giG_lByTvkBa]iAcSbIeBxOquBlBj@vQtJvBsCvT}FwAOfg@vLGN`[pm@v@dBkTvNpGrj@WBx=\nn@_LK?zXtMADhPdP?`M~dAigA|FUafAowAjH]be@iYwOsC`]zLxRoKi@kSlnCvMYPvN~`@dZA{`=\n@~I?AzcAqIJAsWgd@lXDvq@xGfEDjRn}@eCgn@bbAsKe@K|HoF[pCjMuYvc@\",\"atrwD|xttQuO=\nuQjJ{NaDqCuH~OmPqOhSyc@`aApj@kCzCuNyIdKxMeb@pi@yDoR\",\"i_bxDzrasQ}FyCcAs_@|P=\njI{F`Z\",\"uafxDrbprQgVqFqRkJqBaEjm@~W\"],\"bounding_box\":{\"type\":\"Polygon\",\"co=\nordinates\":[[[-97.938282,30.098659],[-97.56842,30.098659],[-97.56842,30.496=\n85],[-97.938282,30.49685]]]},\"attributes\":{\"189390:id\":\"austin-tx\",\"162772:=\nplace_id\":\"4805000\",\"162772:pop100\":\"656562\"}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "16171", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:09 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:09 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576944737199; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:09 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066669", "x-transaction": "eb54fec6333dffa2" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/geo/reverse_geocode.json?lat=30.2673701685&long=-97.7426147461" }, "response": { "body_quoted_printable": "{\"query\":{\"params\":{\"accuracy\":0,\"granularity\":\"neighborhood\",\"coordinates\"=\n:{\"type\":\"Point\",\"coordinates\":[-97.7426147461,30.2673701685]}},\"url\":\"http=\ns:\\/\\/api.twitter.com\\/1.1\\/geo\\/reverse_geocode.json?accuracy=3D0&lat=3D30=\n.2673701685&granularity=3Dneighborhood&long=3D-97.7426147461\",\"type\":\"rever=\nse_geocode\"},\"result\":{\"places\":[{\"full_name\":\"Austin, TX\",\"country_code\":\"=\nUS\",\"contained_within\":[{\"country_code\":\"US\",\"full_name\":\"Texas, US\",\"id\":\"=\ne0060cda70f5f341\",\"place_type\":\"admin\",\"url\":\"https:\\/\\/api.twitter.com\\/1.=\n1\\/geo\\/id\\/e0060cda70f5f341.json\",\"country\":\"United States\",\"bounding_box\"=\n:{\"type\":\"Polygon\",\"coordinates\":[[[-106.645646,25.837164],[-93.508039,25.8=\n37164],[-93.508039,36.500704],[-106.645646,36.500704]]]},\"attributes\":{},\"n=\name\":\"Texas\"}],\"place_type\":\"city\",\"id\":\"c3f37afa9efcf94b\",\"url\":\"https:\\/\\=\n/api.twitter.com\\/1.1\\/geo\\/id\\/c3f37afa9efcf94b.json\",\"country\":\"United St=\nates\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.938282,30.09865=\n9],[-97.56842,30.098659],[-97.56842,30.49685],[-97.938282,30.49685]]]},\"att=\nributes\":{},\"name\":\"Austin\"},{\"full_name\":\"Texas, US\",\"country_code\":\"US\",\"=\ncontained_within\":[{\"country_code\":\"US\",\"full_name\":\"United States\",\"id\":\"9=\n6683cc9126741d1\",\"place_type\":\"country\",\"url\":\"https:\\/\\/api.twitter.com\\/1=\n.1\\/geo\\/id\\/96683cc9126741d1.json\",\"country\":\"United States\",\"bounding_box=\n\":null,\"attributes\":{},\"name\":\"United States\"}],\"place_type\":\"admin\",\"id\":\"=\ne0060cda70f5f341\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/e0060cda7=\n0f5f341.json\",\"country\":\"United States\",\"bounding_box\":{\"type\":\"Polygon\",\"c=\noordinates\":[[[-106.645646,25.837164],[-93.508039,25.837164],[-93.508039,36=\n.500704],[-106.645646,36.500704]]]},\"attributes\":{},\"name\":\"Texas\"},{\"count=\nry_code\":\"MX\",\"full_name\":\"Mexico\",\"contained_within\":[],\"id\":\"25530ba03b7d=\n90c6\",\"place_type\":\"country\",\"url\":\"https:\\/\\/api.twitter.com\\/1.1\\/geo\\/id=\n\\/25530ba03b7d90c6.json\",\"country\":\"Mexico\",\"bounding_box\":{\"type\":\"Polygon=\n\",\"coordinates\":[[[-118.4038571,14.5319181],[-86.7122178,14.5319181],[-86.7=\n122178,32.718919],[-118.4038571,32.718919]]]},\"attributes\":{},\"name\":\"Mexic=\no\"},{\"full_name\":\"United States\",\"country_code\":\"US\",\"contained_within\":[],=\n\"place_type\":\"country\",\"id\":\"96683cc9126741d1\",\"url\":\"https:\\/\\/api.twitter=\n.com\\/1.1\\/geo\\/id\\/96683cc9126741d1.json\",\"country\":\"United States\",\"bound=\ning_box\":null,\"attributes\":{},\"name\":\"United States\"}]}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2373", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:09 GMT", "etag": "\"53a474a025de30ea4b2eddf6fd86872b\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:09 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:09 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCK0ahJ9AAToHaWQiJTdlNjI3NGU5NDQ1Y2Jh%250AYmRlYzVjZWFiMDNjNTU4MDRl--91709653f4d28822ef1cf99719eda5861273cdfd; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706576962456299; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:09 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "88c38f29550d8d3403682fe1896d86aa56b47956", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066669", "x-runtime": "0.06458", "x-transaction": "59bdd2a960e4d53a", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/show.json?slug=stars&owner_screen_name=applepie" }, "response": { "body_quoted_printable": "{\"id\":8078,\"id_str\":\"8078\",\"name\":\"stars\",\"uri\":\"\\/applepie\\/stars\",\"subscr=\niber_count\":7,\"member_count\":55,\"mode\":\"public\",\"description\":\"\",\"slug\":\"st=\nars\",\"full_name\":\"@applepie\\/stars\",\"created_at\":\"Fri Oct 16 00:25:42 +0000=\n 2009\",\"following\":false,\"user\":{\"id\":9302282,\"id_str\":\"9302282\",\"name\":\"Jo=\nsh\",\"screen_name\":\"applepie\",\"location\":\"Santa Clara, CA\",\"description\":\"pr=\no\\u00b7gram\\u00b7mer (n) An organism capable of converting caffeine into co=\nde.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"f=\nollowers_count\":456,\"friends_count\":301,\"listed_count\":24,\"created_at\":\"Mon=\n Oct 08 03:00:34 +0000 2007\",\"favourites_count\":4,\"utc_offset\":-25200,\"time=\n_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"st=\natuses_count\":7286,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\"=\n:false,\"profile_background_color\":\"010708\",\"profile_background_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_background_images\\/8076084\\/200911032903-123=\n95.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_background_images\\/8076084\\/200911032903-12395.jpg\",\"profile_background=\n_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/28=\n13279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b2=\n3a94c00931ff35f03a_normal.jpeg\",\"profile_link_color\":\"0000FF\",\"profile_side=\nbar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DFE1EB\",\"profile_t=\next_color\":\"000000\",\"profile_use_background_image\":true,\"default_profile\":f=\nalse,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":f=\nalse,\"notifications\":false}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1678", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:09 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:09 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706576985573277; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:09 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066669", "x-transaction": "88715d2140401adf" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/oembed.json?id=266367358078169089" }, "response": { "body_quoted_printable": "{\"cache_age\":\"3153600000\",\"url\":\"https:\\/\\/twitter.com\\/twitter\\/statuses\\/=\n266367358078169089\",\"height\":null,\"provider_url\":\"https:\\/\\/twitter.com\",\"p=\nrovider_name\":\"Twitter\",\"author_name\":\"Twitter\",\"version\":\"1.0\",\"author_url=\n\":\"https:\\/\\/twitter.com\\/twitter\",\"type\":\"rich\",\"html\":\"\\u003cblockquote c=\nlass=3D\\\"twitter-tweet\\\"\\u003e\\u003cp\\u003eRT \\u003ca href=3D\\\"https:\\/\\/tw=\nitter.com\\/TwitterEng\\\"\\u003e@TwitterEng\\u003c\\/a\\u003e: Bolstering our inf=\nrastructure. "As usage patterns change, Twitter can remain resilient.=\n" \\u003ca href=3D\\\"http:\\/\\/t.co\\/uML86B6s\\\"\\u003ehttp:\\/\\/t.co\\/uML86=\nB6s\\u003c\\/a\\u003e\\u003c\\/p\\u003e— Twitter (@twitter) \\u003ca href=3D=\n\\\"https:\\/\\/twitter.com\\/twitter\\/statuses\\/266367358078169089\\\"\\u003eNovem=\nber 8, 2012\\u003c\\/a\\u003e\\u003c\\/blockquote\\u003e\\n\\u003cscript async src=\n=3D\\\"\\/\\/platform.twitter.com\\/widgets.js\\\" charset=3D\\\"utf-8\\\"\\u003e\\u003c=\n\\/script\\u003e\",\"width\":550}", "headers": { "cache-control": "must-revalidate, max-age=3153600000", "content-length": "915", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:10 GMT", "expires": "Fri, 28 Jul 2113 06:16:10 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:10 GMT", "server": "tfe", "set-cookie": "guest_id=v1%3A137706577037683420; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:10 UTC", "strict-transport-security": "max-age=631138519", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066670", "x-transaction": "45d0b83b4ce58c71" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/show.json?id=266367358078169089" }, "response": { "body_quoted_printable": "{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_=\nstr\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastruc=\nture. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\=\n/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":n=\null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_t=\no_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_=\nstr\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Fran=\ncisco, CA\",\"description\":\"Your official source for news, updates and tips f=\nrom Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitt=\ner.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description=\n\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601490,\"friends_count\"=\n:131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"fa=\nvourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Cana=\nda)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"=\ncontributors_enabled\":false,\"is_translator\":false,\"profile_background_color=\n\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_b=\nackground_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/65709=\n0062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9=\nnectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_l=\nink_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sideba=\nr_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_backgroun=\nd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follow=\ning\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":212=\n,\"favorite_count\":130,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com=\n\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.=\ntwitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}],\"user_mentions\":=\n[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_=\nstr\":\"6844292\",\"indices\":[3,14]}]},\"favorited\":false,\"retweeted\":true,\"poss=\nibly_sensitive\":false,\"lang\":\"en\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2659", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:10 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:10 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577053421203; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:10 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066670", "x-transaction": "60ad8e6829394968" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/show.json?id=twitter" }, "response": { "body_quoted_printable": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"lo=\ncation\":\"San Francisco, CA\",\"description\":\"Your official source for news, u=\npdates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"ht=\ntp:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22=\n]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2260149=\n0,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:5=\n4 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacifi=\nc Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1=\n632,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",\"id=\n\":369915012157943808,\"id_str\":\"369915012157943808\",\"text\":\"RT @vineapp: We'=\nve said this before and we'll say it again: this community - now more than =\n40 million of you - is amazing. Thank you for in\\u2026\",\"source\":\"\\u003ca h=\nref=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u003=\nc\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_sta=\ntus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,=\n\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"=\ncontributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 20:00:06 +0=\n000 2013\",\"id\":369911739782946816,\"id_str\":\"369911739782946816\",\"text\":\"We'=\nve said this before and we'll say it again: this community - now more than =\n40 million of you - is amazing. Thank you for inspiring us.\",\"source\":\"\\u00=\n3ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D=\n12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":fa=\nlse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply=\n_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":=\nnull,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retwee=\nt_count\":603,\"favorite_count\":517,\"entities\":{\"hashtags\":[],\"symbols\":[],\"u=\nrls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"=\n},\"retweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols=\n\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"name\":\"Vine\",\"id\"=\n:586671909,\"id_str\":\"586671909\",\"indices\":[3,11]}]},\"favorited\":false,\"retw=\neeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":fals=\ne,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1=\ni.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_backgro=\nund_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_norm=\nal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783=\n214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_colo=\nr\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333=\n333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_p=\nrofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifica=\ntions\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3303", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:10 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:10 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577069101238; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:10 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066670", "x-transaction": "50136e6ef480e985" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/show.json?id=783214" }, "response": { "body_quoted_printable": "{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"lo=\ncation\":\"San Francisco, CA\",\"description\":\"Your official source for news, u=\npdates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"ht=\ntp:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22=\n]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2260149=\n0,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:5=\n4 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacifi=\nc Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1=\n632,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",\"id=\n\":369915012157943808,\"id_str\":\"369915012157943808\",\"text\":\"RT @vineapp: We'=\nve said this before and we'll say it again: this community - now more than =\n40 million of you - is amazing. Thank you for in\\u2026\",\"source\":\"\\u003ca h=\nref=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u003=\nc\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_sta=\ntus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,=\n\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"=\ncontributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 20:00:06 +0=\n000 2013\",\"id\":369911739782946816,\"id_str\":\"369911739782946816\",\"text\":\"We'=\nve said this before and we'll say it again: this community - now more than =\n40 million of you - is amazing. Thank you for inspiring us.\",\"source\":\"\\u00=\n3ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D=\n12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":fa=\nlse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply=\n_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":=\nnull,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retwee=\nt_count\":603,\"favorite_count\":517,\"entities\":{\"hashtags\":[],\"symbols\":[],\"u=\nrls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"=\n},\"retweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols=\n\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"name\":\"Vine\",\"id\"=\n:586671909,\"id_str\":\"586671909\",\"indices\":[3,11]}]},\"favorited\":false,\"retw=\neeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":fals=\ne,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1=\ni.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_backgro=\nund_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_norm=\nal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783=\n214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_colo=\nr\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333=\n333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_p=\nrofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifica=\ntions\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3303", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:10 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:10 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577086457872; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:10 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "178", "x-rate-limit-reset": "1377066670", "x-transaction": "57389f4cff8f8f08" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/home_timeline.json" }, "response": { "body_quoted_printable": "[{\"created_at\":\"Wed Aug 21 03:55:03 +0000 2013\",\"id\":370031268744146944,\"id=\n_str\":\"370031268744146944\",\"text\":\"Avril Lavigne fights for #RockNRoll in h=\ner new video. http:\\/\\/t.co\\/yOWuffCAen\",\"source\":\"\\u003ca href=3D\\\"http:\\/=\n\\/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\"=\n,\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\"=\n:null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_t=\no_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTu=\nbe\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"description\":\"Tweet=\ns on YouTube news, trends, and \\u2014 of course \\u2014 videos.\",\"url\":\"http=\n:\\/\\/t.co\\/os6UpShbwO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os=\n6UpShbwO\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":32286991,\"friends_count\":536,\"listed_count\":66350,\"created_at\":\"Tu=\ne Nov 13 21:43:46 +0000 2007\",\"favourites_count\":216,\"utc_offset\":-25200,\"t=\nime_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"=\nstatuses_count\":8344,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translato=\nr\":false,\"profile_background_color\":\"333333\",\"profile_background_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecf=\nc159163ba659906233b813d683baf.png\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc1=\n59163ba659906233b813d683baf.png\",\"profile_background_tile\":true,\"profile_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacke=\nd_google_200px_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_images\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"p=\nrofile_link_color\":\"1C62B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profil=\ne_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_b=\nackground_image\":true,\"default_profile\":false,\"default_profile_image\":false=\n,\"following\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":nu=\nll,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":280,=\n\"favorite_count\":152,\"entities\":{\"hashtags\":[{\"text\":\"RockNRoll\",\"indices\":=\n[25,35]}],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/yOWuffCAen\",\"expanded=\n_url\":\"http:\\/\\/goo.gl\\/j3pbQ6\",\"display_url\":\"goo.gl\\/j3pbQ6\",\"indices\":[5=\n4,76]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_s=\nensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 20 22:00:04 +0000 2013\"=\n,\"id\":369941930643554304,\"id_str\":\"369941930643554304\",\"text\":\"A hardcore t=\nrip through the many genres of metal. http:\\/\\/t.co\\/1qwE8dzQqQ\",\"source\":\"=\n\\u003ca href=3D\\\"http:\\/\\/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003eSocial P=\nublisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in=\n_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_=\nid_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id_str\":=\n\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San Bruno, =\nCA\",\"description\":\"Tweets on YouTube news, trends, and \\u2014 of course \\u2=\n014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"entities\":{\"url\":{\"urls\":[{=\n\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"di=\nsplay_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"pr=\notected\":false,\"followers_count\":32286991,\"friends_count\":536,\"listed_count=\n\":66350,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_count\":21=\n6,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled=\n\":true,\"verified\":true,\"statuses_count\":8344,\"lang\":\"en\",\"contributors_enab=\nled\":false,\"is_translator\":false,\"profile_background_color\":\"333333\",\"profi=\nle_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\=\n/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n78800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_backgroun=\nd_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/16=\n16286352\\/youtube-stacked_google_200px_normal.png\",\"profile_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacked_goo=\ngle_200px_normal.png\",\"profile_link_color\":\"1C62B9\",\"profile_sidebar_border=\n_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_color\"=\n:\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"defa=\nult_profile_image\":false,\"following\":true,\"follow_request_sent\":null,\"notif=\nications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":n=\null,\"retweet_count\":110,\"favorite_count\":119,\"entities\":{\"hashtags\":[],\"sym=\nbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1qwE8dzQqQ\",\"expanded_url\":\"http:\\/=\n\\/goo.gl\\/J5jTJn\",\"display_url\":\"goo.gl\\/J5jTJn\",\"indices\":[50,72]}],\"user_=\nmentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":fals=\ne,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 20 20:30:07 +0000 2013\",\"id\":36991929=\n7357111296,\"id_str\":\"369919297357111296\",\"text\":\"#Trending: A creepy traile=\nr for a mysterious new project by J.J. Abrams. http:\\/\\/t.co\\/nTqpEohvCo\",\"=\nsource\":\"\\u003ca href=3D\\\"http:\\/\\/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003=\neSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\"=\n:null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply=\n_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,=\n\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"Sa=\nn Bruno, CA\",\"description\":\"Tweets on YouTube news, trends, and \\u2014 of c=\nourse \\u2014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"entities\":{\"url\":{=\n\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expanded_url\":\"http:\\/\\/youtube=\n.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\"=\n:[]}},\"protected\":false,\"followers_count\":32286991,\"friends_count\":536,\"lis=\nted_count\":66350,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_=\ncount\":216,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"ge=\no_enabled\":true,\"verified\":true,\"statuses_count\":8344,\"lang\":\"en\",\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"33333=\n3\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profil=\ne_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_=\nimages\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_=\nbackground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profile_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1616286352\\/youtube-st=\nacked_google_200px_normal.png\",\"profile_link_color\":\"1C62B9\",\"profile_sideb=\nar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_te=\nxt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fa=\nlse,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":nu=\nll,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contri=\nbutors\":null,\"retweet_count\":139,\"favorite_count\":100,\"entities\":{\"hashtags=\n\":[{\"text\":\"Trending\",\"indices\":[0,9]}],\"symbols\":[],\"urls\":[{\"url\":\"http:\\=\n/\\/t.co\\/nTqpEohvCo\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ACxkl1\",\"display_url\"=\n:\"goo.gl\\/ACxkl1\",\"indices\":[73,95]}],\"user_mentions\":[]},\"favorited\":false=\n,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"T=\nue Aug 20 20:07:30 +0000 2013\",\"id\":369913604612444160,\"id_str\":\"3699136046=\n12444160\",\"text\":\"RT @vineapp: We've said this before and we'll say it agai=\nn: this community - now more than 40 million of you - is amazing. Thank you=\n for in\\u2026\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/i=\nphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncat=\ned\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in=\n_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_=\nname\":null,\"user\":{\"id\":300392950,\"id_str\":\"300392950\",\"name\":\"Twitter Spor=\nts\",\"screen_name\":\"TwitterSports\",\"location\":\"TwitterHQ\",\"description\":\"Spo=\nrts related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/J9jRbknG4=\nl\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/J9jRbknG4l\",\"expanded=\n_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/=\nmedia\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fo=\nllowers_count\":2164522,\"friends_count\":21,\"listed_count\":4342,\"created_at\":=\n\"Tue May 17 17:54:29 +0000 2011\",\"favourites_count\":2,\"utc_offset\":-25200,\"=\ntime_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true=\n,\"statuses_count\":1034,\"lang\":\"en\",\"contributors_enabled\":false,\"is_transla=\ntor\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/656936359\\/pjmryisi4g=\n22te2awpxb.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_background_images\\/656936359\\/pjmryisi4g22te2awpxb.png\",\"profil=\ne_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/3752498247\\/a26b3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3752498247\\/a26b=\n3f2a944f600b8bc990d02cd96928_normal.png\",\"profile_banner_url\":\"https:\\/\\/pb=\ns.twimg.com\\/profile_banners\\/300392950\\/1347394873\",\"profile_link_color\":\"=\n0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color=\n\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":tru=\ne,\"default_profile\":false,\"default_profile_image\":false,\"following\":true,\"f=\nollow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":nul=\nl,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Au=\ng 20 20:00:06 +0000 2013\",\"id\":369911739782946816,\"id_str\":\"369911739782946=\n816\",\"text\":\"We've said this before and we'll say it again: this community =\n- now more than 40 million of you - is amazing. Thank you for inspiring us.=\n\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/i=\nd409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e=\n\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str=\n\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_=\nto_screen_name\":null,\"user\":{\"id\":586671909,\"id_str\":\"586671909\",\"name\":\"Vi=\nne\",\"screen_name\":\"vineapp\",\"location\":\"\",\"description\":\"Vine is a new app =\nfor sharing short, looping videos. It's free for iPhone or Android.\",\"url\":=\n\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.c=\no\\/HLAhG6mqQx\",\"expanded_url\":\"http:\\/\\/vine.co\",\"display_url\":\"vine.co\",\"i=\nndices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_c=\nount\":3880704,\"friends_count\":10,\"listed_count\":2165,\"created_at\":\"Mon May =\n21 14:34:36 +0000 2012\",\"favourites_count\":64,\"utc_offset\":-10800,\"time_zon=\ne\":\"Atlantic Time (Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_co=\nunt\":135,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"pr=\nofile_background_color\":\"F1F1EC\",\"profile_background_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme17\\/bg.gif\",\"profile=\n_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3578238864\\/50d7=\ne05aa6fe5d477e48a63047e38ce7_normal.png\",\"profile_banner_url\":\"https:\\/\\/pb=\ns.twimg.com\\/profile_banners\\/586671909\\/1358910416\",\"profile_link_color\":\"=\n00B386\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color=\n\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":fal=\nse,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"=\nfollow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":nu=\nll,\"place\":null,\"contributors\":null,\"retweet_count\":603,\"favorite_count\":51=\n7,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"fav=\norited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":603,\"favorite_=\ncount\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[=\n{\"screen_name\":\"vineapp\",\"name\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",=\n\"indices\":[3,11]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"crea=\nted_at\":\"Tue Aug 20 19:31:59 +0000 2013\",\"id\":369904667427217408,\"id_str\":\"=\n369904667427217408\",\"text\":\"This could be your lucky night.Book 2 nights &a=\nmp; the 3rd night is free @MO_LasVegas w\\/Visa Signature.Book & see ter=\nms: http:\\/\\/t.co\\/69pttRZiiw\",\"source\":\"web\",\"truncated\":false,\"in_reply_t=\no_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nu=\nll,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"i=\nd\":551373363,\"id_str\":\"551373363\",\"name\":\"Visa\",\"screen_name\":\"Visa\",\"locat=\nion\":\"USA\",\"description\":\"There are a billion stories waiting to be made. L=\net\\u2019s go make them together. Six words, photos or seconds\\u2014that\\u20=\n19s all you need to get inspired. #GoInSix\",\"url\":\"https:\\/\\/t.co\\/01tbcM2o=\nop\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/01tbcM2oop\",\"expande=\nd_url\":\"https:\\/\\/www.facebook.com\\/VisaUnitedStates\",\"display_url\":\"facebo=\nok.com\\/VisaUnitedStat\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}=\n},\"protected\":false,\"followers_count\":76448,\"friends_count\":1115,\"listed_co=\nunt\":289,\"created_at\":\"Wed Apr 11 20:22:05 +0000 2012\",\"favourites_count\":3=\n1,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled=\n\":false,\"verified\":true,\"statuses_count\":4666,\"lang\":\"en\",\"contributors_ena=\nbled\":false,\"is_translator\":false,\"profile_background_color\":\"000000\",\"prof=\nile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images=\n\\/344918034408433340\\/5d6be393d09b7bf229ac5bc58dae8099.jpeg\",\"profile_backg=\nround_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\=\n/344918034408433340\\/5d6be393d09b7bf229ac5bc58dae8099.jpeg\",\"profile_backgr=\nound_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images=\n\\/344513261568985151\\/439e25b1682b75497349b27706f053d2_normal.jpeg\",\"profil=\ne_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/34451326156898=\n5151\\/439e25b1682b75497349b27706f053d2_normal.jpeg\",\"profile_banner_url\":\"h=\nttps:\\/\\/pbs.twimg.com\\/profile_banners\\/551373363\\/1371047696\",\"profile_li=\nnk_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar=\n_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background=\n_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"followi=\nng\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coord=\ninates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":5,\"favorite_c=\nount\":4,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.c=\no\\/69pttRZiiw\",\"expanded_url\":\"http:\\/\\/vi.sa\\/156xdNo\",\"display_url\":\"vi.s=\na\\/156xdNo\",\"indices\":[125,147]}],\"user_mentions\":[{\"screen_name\":\"MO_LASVE=\nGAS\",\"name\":\"Mandarin Oriental LV\",\"id\":88047296,\"id_str\":\"88047296\",\"indic=\nes\":[73,85]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":fal=\nse,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 20 19:30:04 +0000 2013\",\"id\":3699041=\n85581797376,\"id_str\":\"369904185581797376\",\"text\":\"Ariana Grande and Nathan =\nSykes end their duet with snuggles in \\u201cAlmost Is Never Enough.\\u201d h=\nttp:\\/\\/t.co\\/VCzeQs3qQJ\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/srm.vitrue.co=\nm\\\" rel=3D\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":fa=\nlse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply=\n_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":=\nnull,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_nam=\ne\":\"YouTube\",\"location\":\"San Bruno, CA\",\"description\":\"Tweets on YouTube ne=\nws, trends, and \\u2014 of course \\u2014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6U=\npShbwO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expa=\nnded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,2=\n2]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":322869=\n91,\"friends_count\":536,\"listed_count\":66350,\"created_at\":\"Tue Nov 13 21:43:=\n46 +0000 2007\",\"favourites_count\":216,\"utc_offset\":-25200,\"time_zone\":\"Paci=\nfic Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\"=\n:8344,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profi=\nle_background_color\":\"333333\",\"profile_background_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_background_images\\/378800000055113308\\/ecfc159163ba659906=\n233b813d683baf.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/378800000055113308\\/ecfc159163ba65990623=\n3b813d683baf.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacked_google_200px_=\nnormal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ima=\nges\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profile_link_col=\nor\":\"1C62B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_=\ncolor\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image=\n\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":tr=\nue,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates=\n\":null,\"place\":null,\"contributors\":null,\"retweet_count\":209,\"favorite_count=\n\":190,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\=\n/VCzeQs3qQJ\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ouCmjL\",\"display_url\":\"goo.gl=\n\\/ouCmjL\",\"indices\":[89,111]}],\"user_mentions\":[]},\"favorited\":false,\"retwe=\neted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug =\n20 18:54:12 +0000 2013\",\"id\":369895156670926848,\"id_str\":\"36989515667092684=\n8\",\"text\":\"Time for fantasy to get real. Face the competition this NFL seas=\non by hosting a live draft. #GoInSix [pic] http:\\/\\/t.co\\/wDVNIhKUY0\",\"sour=\nce\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_statu=\ns_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"i=\nn_reply_to_screen_name\":null,\"user\":{\"id\":551373363,\"id_str\":\"551373363\",\"n=\name\":\"Visa\",\"screen_name\":\"Visa\",\"location\":\"USA\",\"description\":\"There are =\na billion stories waiting to be made. Let\\u2019s go make them together. Six=\n words, photos or seconds\\u2014that\\u2019s all you need to get inspired. #G=\noInSix\",\"url\":\"https:\\/\\/t.co\\/01tbcM2oop\",\"entities\":{\"url\":{\"urls\":[{\"url=\n\":\"https:\\/\\/t.co\\/01tbcM2oop\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/=\nVisaUnitedStates\",\"display_url\":\"facebook.com\\/VisaUnitedStat\\u2026\",\"indic=\nes\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count=\n\":76448,\"friends_count\":1115,\"listed_count\":289,\"created_at\":\"Wed Apr 11 20=\n:22:05 +0000 2012\",\"favourites_count\":31,\"utc_offset\":-25200,\"time_zone\":\"P=\nacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_co=\nunt\":4666,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"p=\nrofile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/344918034408433340\\/5d6be393d09b7b=\nf229ac5bc58dae8099.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_background_images\\/344918034408433340\\/5d6be393d09b7bf=\n229ac5bc58dae8099.jpeg\",\"profile_background_tile\":false,\"profile_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_images\\/344513261568985151\\/439e25b1682b75=\n497349b27706f053d2_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.tw=\nimg.com\\/profile_images\\/344513261568985151\\/439e25b1682b75497349b27706f053=\nd2_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_bann=\ners\\/551373363\\/1371047696\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_=\nborder_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_=\ncolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":null,=\n\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contribut=\nors\":null,\"retweet_count\":1,\"favorite_count\":4,\"entities\":{\"hashtags\":[{\"te=\nxt\":\"GoInSix\",\"indices\":[92,100]}],\"symbols\":[],\"urls\":[],\"user_mentions\":[=\n],\"media\":[{\"id\":369895156679315456,\"id_str\":\"369895156679315456\",\"indices\"=\n:[107,129],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BSIhr2oCEAAcnZU.jpg\"=\n,\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BSIhr2oCEAAcnZU.jpg\",\"u=\nrl\":\"http:\\/\\/t.co\\/wDVNIhKUY0\",\"display_url\":\"pic.twitter.com\\/wDVNIhKUY0\"=\n,\"expanded_url\":\"http:\\/\\/twitter.com\\/Visa\\/status\\/369895156670926848\\/ph=\noto\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":600,\"resize\":\"fit\"},\"=\nthumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":=\n\"fit\"},\"small\":{\"w\":340,\"h\":340,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retw=\neeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug=\n 20 18:15:10 +0000 2013\",\"id\":369885333481340928,\"id_str\":\"3698853334813409=\n28\",\"text\":\"Introducing the newest member of the Obama household, Sunny the=\n dog. http:\\/\\/t.co\\/zOyTCI1pgN\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/srm.vi=\ntrue.com\\\" rel=3D\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"trunca=\nted\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"i=\nn_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen=\n_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"scr=\neen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"description\":\"Tweets on You=\nTube news, trends, and \\u2014 of course \\u2014 videos.\",\"url\":\"http:\\/\\/t.c=\no\\/os6UpShbwO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO=\n\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indice=\ns\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\"=\n:32286991,\"friends_count\":536,\"listed_count\":66350,\"created_at\":\"Tue Nov 13=\n 21:43:46 +0000 2007\",\"favourites_count\":216,\"utc_offset\":-25200,\"time_zone=\n\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses=\n_count\":8344,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false=\n,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc159163b=\na659906233b813d683baf.png\",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc159163ba6=\n59906233b813d683baf.png\",\"profile_background_tile\":true,\"profile_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacked_google=\n_200px_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_images\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profile_l=\nink_color\":\"1C62B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sideba=\nr_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_backgroun=\nd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follow=\ning\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coor=\ndinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":95,\"favorite=\n_count\":82,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/zOyTCI1pgN\",\"expanded_url\":\"http:\\/\\/goo.gl\\/ceetnF\",\"display_url\":\"g=\noo.gl\\/ceetnF\",\"indices\":[69,91]}],\"user_mentions\":[]},\"favorited\":false,\"r=\netweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue =\nAug 20 17:08:00 +0000 2013\",\"id\":369868432293916672,\"id_str\":\"3698684322939=\n16672\",\"text\":\"New ways to search and play. Watch while you keep exploring =\nwith the latest YouTube app: http:\\/\\/t.co\\/NRqBwOJbHF\",\"source\":\"web\",\"tru=\nncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null=\n,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scr=\neen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"=\nscreen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"description\":\"Tweets on =\nYouTube news, trends, and \\u2014 of course \\u2014 videos.\",\"url\":\"http:\\/\\/=\nt.co\\/os6UpShbwO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpSh=\nbwO\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"ind=\nices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_cou=\nnt\":32286991,\"friends_count\":536,\"listed_count\":66350,\"created_at\":\"Tue Nov=\n 13 21:43:46 +0000 2007\",\"favourites_count\":216,\"utc_offset\":-25200,\"time_z=\none\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statu=\nses_count\":8344,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fa=\nlse,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc1591=\n63ba659906233b813d683baf.png\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc159163=\nba659906233b813d683baf.png\",\"profile_background_tile\":true,\"profile_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacked_goo=\ngle_200px_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_images\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profil=\ne_link_color\":\"1C62B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sid=\nebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_backgr=\nound_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"fol=\nlowing\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":132,\"favo=\nrite_count\":89,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:=\n\\/\\/t.co\\/NRqBwOJbHF\",\"expanded_url\":\"http:\\/\\/goo.gl\\/vl3eUv\",\"display_url=\n\":\"goo.gl\\/vl3eUv\",\"indices\":[89,111]}],\"user_mentions\":[]},\"favorited\":fal=\nse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":=\n\"Tue Aug 20 16:10:07 +0000 2013\",\"id\":369853866172764160,\"id_str\":\"36985386=\n6172764160\",\"text\":\"Wishing Demi Lovato a happy 21st birthday. http:\\/\\/t.c=\no\\/3ptaO9QWc8\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/srm.vitrue.com\\\" rel=3D\\=\n\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\"=\n:{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube=\n\",\"location\":\"San Bruno, CA\",\"description\":\"Tweets on YouTube news, trends,=\n and \\u2014 of course \\u2014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"en=\ntities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expanded_url\":\"=\nhttp:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":32286991,\"friends=\n_count\":536,\"listed_count\":66350,\"created_at\":\"Tue Nov 13 21:43:46 +0000 20=\n07\",\"favourites_count\":216,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (U=\nS & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":8344,\"lang=\n\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgrou=\nnd_color\":\"333333\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_background_images\\/378800000055113308\\/ecfc159163ba659906233b813d683=\nbaf.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_background_images\\/378800000055113308\\/ecfc159163ba659906233b813d683ba=\nf.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_images\\/1616286352\\/youtube-stacked_google_200px_normal.png\"=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/161628=\n6352\\/youtube-stacked_google_200px_normal.png\",\"profile_link_color\":\"1C62B9=\n\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFE=\nFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"def=\nault_profile\":false,\"default_profile_image\":false,\"following\":true,\"follow_=\nrequest_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"pla=\nce\":null,\"contributors\":null,\"retweet_count\":853,\"favorite_count\":342,\"enti=\nties\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3ptaO9QWc8=\n\",\"expanded_url\":\"http:\\/\\/goo.gl\\/Bip4bo\",\"display_url\":\"goo.gl\\/Bip4bo\",\"=\nindices\":[43,65]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,=\n\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 20 04:44:02 =\n+0000 2013\",\"id\":369681207279108096,\"id_str\":\"369681207279108096\",\"text\":\"O=\nCkuXhbwKzAZnwuoJAJaEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSO=\nDHhzMWwaltJhk\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" re=\nl=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_re=\nply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_i=\nd\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user=\n\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\"=\n:\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testin=\ng stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_u=\nrl\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fa=\nlse,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"W=\ned Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"ti=\nme_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"=\nstatuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator=\n\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.j=\npg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/173=\n3327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pr=\nofile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile=\n_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"prof=\nile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_prof=\nile\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_s=\nent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,=\n\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hasht=\nags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retwe=\neted\":false,\"lang\":\"sk\"},{\"created_at\":\"Tue Aug 20 01:00:05 +0000 2013\",\"id=\n\":369624846604718080,\"id_str\":\"369624846604718080\",\"text\":\"Celebrate Nation=\nal Aviation Day with some epic water jetpacks. http:\\/\\/t.co\\/miSz6tr16C\",\"=\nsource\":\"\\u003ca href=3D\\\"http:\\/\\/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003=\neSocial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\"=\n:null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply=\n_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,=\n\"id_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"Sa=\nn Bruno, CA\",\"description\":\"Tweets on YouTube news, trends, and \\u2014 of c=\nourse \\u2014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"entities\":{\"url\":{=\n\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expanded_url\":\"http:\\/\\/youtube=\n.com\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\"=\n:[]}},\"protected\":false,\"followers_count\":32286991,\"friends_count\":536,\"lis=\nted_count\":66350,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_=\ncount\":216,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"ge=\no_enabled\":true,\"verified\":true,\"statuses_count\":8344,\"lang\":\"en\",\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"33333=\n3\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profil=\ne_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_=\nimages\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_=\nbackground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profile_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1616286352\\/youtube-st=\nacked_google_200px_normal.png\",\"profile_link_color\":\"1C62B9\",\"profile_sideb=\nar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_te=\nxt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fa=\nlse,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":nu=\nll,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contri=\nbutors\":null,\"retweet_count\":119,\"favorite_count\":78,\"entities\":{\"hashtags\"=\n:[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/miSz6tr16C\",\"expanded_url\":=\n\"http:\\/\\/goo.gl\\/LJRS87\",\"display_url\":\"goo.gl\\/LJRS87\",\"indices\":[63,85]}=\n],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensiti=\nve\":false,\"lang\":\"en\"},{\"created_at\":\"Tue Aug 20 00:00:06 +0000 2013\",\"id\":=\n369609752692916224,\"id_str\":\"369609752692916224\",\"text\":\"This is what Jenni=\nfer Aniston's like in an awkward interview. http:\\/\\/t.co\\/amsOGRBp7v\",\"sou=\nrce\":\"\\u003ca href=3D\\\"http:\\/\\/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003eSo=\ncial Publisher\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":nu=\nll,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to=\n_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":10228272,\"id=\n_str\":\"10228272\",\"name\":\"YouTube\",\"screen_name\":\"YouTube\",\"location\":\"San B=\nruno, CA\",\"description\":\"Tweets on YouTube news, trends, and \\u2014 of cour=\nse \\u2014 videos.\",\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpShbwO\",\"expanded_url\":\"http:\\/\\/youtube.co=\nm\",\"display_url\":\"youtube.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]=\n}},\"protected\":false,\"followers_count\":32286991,\"friends_count\":536,\"listed=\n_count\":66350,\"created_at\":\"Tue Nov 13 21:43:46 +0000 2007\",\"favourites_cou=\nnt\":216,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_e=\nnabled\":true,\"verified\":true,\"statuses_count\":8344,\"lang\":\"en\",\"contributor=\ns_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"333333\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_b=\nackground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_ima=\nges\\/378800000055113308\\/ecfc159163ba659906233b813d683baf.png\",\"profile_bac=\nkground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_imag=\nes\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profile_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1616286352\\/youtube-stack=\ned_google_200px_normal.png\",\"profile_link_color\":\"1C62B9\",\"profile_sidebar_=\nborder_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"profile_text_=\ncolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":null,=\n\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contribut=\nors\":null,\"retweet_count\":100,\"favorite_count\":122,\"entities\":{\"hashtags\":[=\n],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/amsOGRBp7v\",\"expanded_url\":\"h=\nttp:\\/\\/goo.gl\\/MeYo5p\",\"display_url\":\"goo.gl\\/MeYo5p\",\"indices\":[62,84]}],=\n\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive=\n\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Aug 19 23:13:16 +0000 2013\",\"id\":36=\n9597966987706368,\"id_str\":\"369597966987706368\",\"text\":\"kzvTktRDiBsdXfJkZbuN=\nYYMAVoGwtPJTdmZdBPGADhylGsVhEccrAYzCnDvowdluYPCWrfeFuBHYAGYlRbaoHoHvmufkeUO=\nLvwhu\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"no=\nfollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_s=\ntatus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,=\n\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":=\n82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepy=\ntest\",\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.=\n\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http=\n:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo=\n.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fol=\nlowers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 1=\n4 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\"=\n:\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses=\n_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,=\n\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_ba=\nckground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_imag=\nes\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"pro=\nfile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\=\n/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_ba=\nnners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar=\n_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text=\n_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":fal=\nse,\"default_profile_image\":false,\"following\":true,\"follow_request_sent\":nul=\nl,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contrib=\nutors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],=\n\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":fa=\nlse,\"lang\":\"sk\"},{\"created_at\":\"Mon Aug 19 22:59:26 +0000 2013\",\"id\":369594=\n486042546177,\"id_str\":\"369594486042546177\",\"text\":\"oVfcMDZYbybbBPBZKdCtDflE=\nxLcjYIrLTpUdznGtoBsGKkgqEQKFIgcKbWsxleEYrupSmHoKJjLRTwJKckQTqtKEvYNiSzFwjHi=\n\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollo=\nw\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status=\n_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_r=\neply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301=\n637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\"=\n,\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:=\n28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cen=\ntral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_coun=\nt\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_bord=\ner_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_colo=\nr\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":true,\"follow_request_sent\":null,\"no=\ntifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors=\n\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symb=\nols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"=\nlang\":\"en\"},{\"created_at\":\"Mon Aug 19 22:36:59 +0000 2013\",\"id\":36958883654=\n9943297,\"id_str\":\"369588836549943297\",\"text\":\"DcKybuufNsKVjZNVZxuuKZXRaIilF=\nUCIzriAaExBaXqPkZsrCAMAHRTJfoaBFxrbyFNrJYiBj\",\"source\":\"\\u003ca href=3D\\\"ht=\ntp:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\=\nu003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_i=\nd_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_r=\neply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":=\n\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descript=\nion\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",=\n\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url=\n\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descripti=\non\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"=\nlisted_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_c=\nount\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_e=\nnabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributor=\ns_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_ba=\nckground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_im=\nages\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_ur=\nl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profil=\ne_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sid=\nebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgr=\nound_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"fo=\nllowing\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"=\ncoordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favor=\nite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mention=\ns\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon =\nAug 19 22:15:02 +0000 2013\",\"id\":369583311347130368,\"id_str\":\"3695833113471=\n30368\",\"text\":\"RT @twitterreligion: On the road, Pope Francis took follower=\ns with him on Twitter | Pope's first international trip makes waves in Braz=\nil h\\u2026\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"=\nin_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_use=\nr_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":130649891,\"id_st=\nr\":\"130649891\",\"name\":\"Twitter Media\",\"screen_name\":\"twittermedia\",\"locatio=\nn\":\"San Francisco\",\"description\":\"Tracking cool, meaningful uses of Tweets =\nin media, tv, sports, entertainment and journalism. Send us tips!\",\"url\":\"h=\nttps:\\/\\/t.co\\/TaNgNcxAmy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.c=\no\\/TaNgNcxAmy\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_=\nurl\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]=\n}},\"protected\":false,\"followers_count\":2404873,\"friends_count\":296,\"listed_=\ncount\":7897,\"created_at\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count=\n\":129,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_ena=\nbled\":true,\"verified\":true,\"statuses_count\":725,\"lang\":\"en\",\"contributors_e=\nnabled\":false,\"is_translator\":false,\"profile_background_color\":\"12212D\",\"pr=\nofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_imag=\nes\\/90427732\\/twittermedia-bg.png\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/90427732\\/twittermedia-bg=\n.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.=\npng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/37=\n52514126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_banner_url\"=\n:\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/1347404321\",\"profile=\n_link_color\":\"1D5870\",\"profile_sidebar_border_color\":\"333333\",\"profile_side=\nbar_fill_color\":\"EEEEEE\",\"profile_text_color\":\"333333\",\"profile_use_backgro=\nund_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"foll=\nowing\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"co=\nordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"creat=\ned_at\":\"Fri Aug 16 18:59:28 +0000 2013\",\"id\":368446932424744960,\"id_str\":\"3=\n68446932424744960\",\"text\":\"On the road, Pope Francis took followers with hi=\nm on Twitter | Pope's first international trip makes waves in Brazil https:=\n\\/\\/t.co\\/lL4vGPrcXz\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/twee=\ntbutton\\\" rel=3D\\\"nofollow\\\"\\u003eTweet Button\\u003c\\/a\\u003e\",\"truncated\":=\nfalse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_rep=\nly_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name=\n\":null,\"user\":{\"id\":414869890,\"id_str\":\"414869890\",\"name\":\"Twitter Religion=\n\",\"screen_name\":\"twitterreligion\",\"location\":\"TwitterHQ\",\"description\":\"Rel=\nigious related tweets from around the world.\",\"url\":\"https:\\/\\/t.co\\/MBI8gV=\nRL2n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/MBI8gVRL2n\",\"expan=\nded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.co=\nm\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,=\n\"followers_count\":360716,\"friends_count\":23,\"listed_count\":758,\"created_at\"=\n:\"Thu Nov 17 15:58:57 +0000 2011\",\"favourites_count\":0,\"utc_offset\":-28800,=\n\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":2=\n92,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_=\nbackground_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_background_images\\/656930363\\/zyow2cg32sj40vruqai6.png\",\"pro=\nfile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgrou=\nnd_images\\/656930363\\/zyow2cg32sj40vruqai6.png\",\"profile_background_tile\":t=\nrue,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3782466347\\=\n/47171855bfa0fb5d19850f2d4405f8de_normal.png\",\"profile_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_images\\/3782466347\\/47171855bfa0fb5d19850f2d=\n4405f8de_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_=\ncolor\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":=\n\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"defau=\nlt_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifi=\ncations\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":nu=\nll,\"retweet_count\":26,\"favorite_count\":19,\"entities\":{\"hashtags\":[],\"symbol=\ns\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/lL4vGPrcXz\",\"expanded_url\":\"https:\\/\\=\n/blog.twitter.com\\/2013\\/popes-first-international-trip-makes-waves-in-braz=\nil\",\"display_url\":\"blog.twitter.com\\/2013\\/popes-fir\\u2026\",\"indices\":[117,=\n140]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_se=\nnsitive\":false,\"lang\":\"en\"},\"retweet_count\":26,\"favorite_count\":0,\"entities=\n\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"tw=\nitterreligion\",\"name\":\"Twitter Religion\",\"id\":414869890,\"id_str\":\"414869890=\n\",\"indices\":[3,19]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"cr=\neated_at\":\"Mon Aug 19 21:15:06 +0000 2013\",\"id\":369568227472728064,\"id_str\"=\n:\"369568227472728064\",\"text\":\"How do you control the little monsters in you=\nr brain? http:\\/\\/t.co\\/Ukm6GbvD7v\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/srm=\n.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003eSocial Publisher\\u003c\\/a\\u003e\",\"tru=\nncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null=\n,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scr=\neen_name\":null,\"user\":{\"id\":10228272,\"id_str\":\"10228272\",\"name\":\"YouTube\",\"=\nscreen_name\":\"YouTube\",\"location\":\"San Bruno, CA\",\"description\":\"Tweets on =\nYouTube news, trends, and \\u2014 of course \\u2014 videos.\",\"url\":\"http:\\/\\/=\nt.co\\/os6UpShbwO\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/os6UpSh=\nbwO\",\"expanded_url\":\"http:\\/\\/youtube.com\",\"display_url\":\"youtube.com\",\"ind=\nices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_cou=\nnt\":32286991,\"friends_count\":536,\"listed_count\":66350,\"created_at\":\"Tue Nov=\n 13 21:43:46 +0000 2007\",\"favourites_count\":216,\"utc_offset\":-25200,\"time_z=\none\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statu=\nses_count\":8344,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fa=\nlse,\"profile_background_color\":\"333333\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc1591=\n63ba659906233b813d683baf.png\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/378800000055113308\\/ecfc159163=\nba659906233b813d683baf.png\",\"profile_background_tile\":true,\"profile_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1616286352\\/youtube-stacked_goo=\ngle_200px_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_images\\/1616286352\\/youtube-stacked_google_200px_normal.png\",\"profil=\ne_link_color\":\"1C62B9\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sid=\nebar_fill_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_backgr=\nound_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"fol=\nlowing\":true,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":184,\"favo=\nrite_count\":143,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http=\n:\\/\\/t.co\\/Ukm6GbvD7v\",\"expanded_url\":\"http:\\/\\/goo.gl\\/bDcmfr\",\"display_ur=\nl\":\"goo.gl\\/bDcmfr\",\"indices\":[54,76]}],\"user_mentions\":[]},\"favorited\":fal=\nse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":=\n\"Mon Aug 19 21:10:53 +0000 2013\",\"id\":369567165784924161,\"id_str\":\"36956716=\n5784924161\",\"text\":\"Vine videos that grew on us - We've pulled together som=\ne great uses of Vine from @MTV, @NBA, @Mashable and more https:\\/\\/t.co\\/nK=\nqVUDv77i\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" re=\nl=3D\\\"nofollow\\\"\\u003eTweet Button\\u003c\\/a\\u003e\",\"truncated\":false,\"in_re=\nply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_i=\nd\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user=\n\":{\"id\":130649891,\"id_str\":\"130649891\",\"name\":\"Twitter Media\",\"screen_name\"=\n:\"twittermedia\",\"location\":\"San Francisco\",\"description\":\"Tracking cool, me=\naningful uses of Tweets in media, tv, sports, entertainment and journalism.=\n Send us tips!\",\"url\":\"https:\\/\\/t.co\\/TaNgNcxAmy\",\"entities\":{\"url\":{\"urls=\n\":[{\"url\":\"https:\\/\\/t.co\\/TaNgNcxAmy\",\"expanded_url\":\"https:\\/\\/blog.twitt=\ner.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2404873,\"fri=\nends_count\":296,\"listed_count\":7897,\"created_at\":\"Wed Apr 07 22:41:40 +0000=\n 2010\",\"favourites_count\":129,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time=\n (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":725,\"la=\nng\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgr=\nound_color\":\"12212D\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_background_images\\/90427732\\/twittermedia-bg.png\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/9=\n0427732\\/twittermedia-bg.png\",\"profile_background_tile\":false,\"profile_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d=\n8e201de2950197ab_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.p=\nng\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1306498=\n91\\/1347404321\",\"profile_link_color\":\"1D5870\",\"profile_sidebar_border_color=\n\":\"333333\",\"profile_sidebar_fill_color\":\"EEEEEE\",\"profile_text_color\":\"3333=\n33\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_pr=\nofile_image\":false,\"following\":true,\"follow_request_sent\":null,\"notificatio=\nns\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"r=\netweet_count\":104,\"favorite_count\":106,\"entities\":{\"hashtags\":[],\"symbols\":=\n[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/nKqVUDv77i\",\"expanded_url\":\"https:\\/\\/bl=\nog.twitter.com\\/2013\\/vine-videos-that-grew-on-us-aug-16\",\"display_url\":\"bl=\nog.twitter.com\\/2013\\/vine-vide\\u2026\",\"indices\":[112,135]}],\"user_mentions=\n\":[{\"screen_name\":\"MTV\",\"name\":\"MTV\",\"id\":2367911,\"id_str\":\"2367911\",\"indic=\nes\":[81,85]},{\"screen_name\":\"NBA\",\"name\":\"NBA\",\"id\":19923144,\"id_str\":\"1992=\n3144\",\"indices\":[87,91]},{\"screen_name\":\"mashable\",\"name\":\"Mashable\",\"id\":9=\n72651,\"id_str\":\"972651\",\"indices\":[93,102]}]},\"favorited\":false,\"retweeted\"=\n:false,\"possibly_sensitive\":false,\"lang\":\"en\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "52627", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:11 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:11 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577108705467; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:11 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066671", "x-transaction": "0cf98f115c36ea1c" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/members.json?slug=stars&owner_screen_name=applepie" }, "response": { "body_quoted_printable": "{\"users\":[{\"id\":1424700757,\"id_str\":\"1424700757\",\"name\":\"Joss Whedon\",\"scre=\nen_name\":\"josswhedon\",\"location\":\"\",\"description\":\"Lifelike\",\"url\":null,\"en=\ntities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":407=\n056,\"friends_count\":191,\"listed_count\":4289,\"created_at\":\"Mon May 13 05:31:=\n58 +0000 2013\",\"favourites_count\":390,\"utc_offset\":null,\"time_zone\":null,\"g=\neo_enabled\":false,\"verified\":true,\"statuses_count\":347,\"lang\":\"en\",\"status\"=\n:{\"created_at\":\"Mon Aug 19 16:46:34 +0000 2013\",\"id\":369500651245416449,\"id=\n_str\":\"369500651245416449\",\"text\":\"My workout combines elements of sprintin=\ng and marathon training: I jog for a block and then barf. #bestofbothbleaur=\nrgh\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" re=\nl=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,=\n\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_=\nuser_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null=\n,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_co=\nunt\":791,\"favorite_count\":716,\"entities\":{\"hashtags\":[{\"text\":\"bestofbothbl=\neaurrgh\",\"indices\":[98,118]}],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"f=\navorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false=\n,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_backgro=\nund_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"pro=\nfile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/=\ntheme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_images\\/378800000280464213\\/078419216aebf3173cac83=\n3a7a21512d_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\=\n/profile_images\\/378800000280464213\\/078419216aebf3173cac833a7a21512d_norma=\nl.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/142=\n4700757\\/1376700669\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_=\ncolor\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":=\n\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"defaul=\nt_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notif=\nications\":false},{\"id\":1323187164,\"id_str\":\"1323187164\",\"name\":\"Marina Sirt=\nis\",\"screen_name\":\"Marina_Sirtis\",\"location\":\"\",\"description\":\"Official Twi=\ntter Account For Actress Marina Sirtis. No name calling or disrespect to an=\nyone please.\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\"=\n:false,\"followers_count\":49771,\"friends_count\":62,\"listed_count\":957,\"creat=\ned_at\":\"Tue Apr 02 20:17:13 +0000 2013\",\"favourites_count\":12,\"utc_offset\":=\nnull,\"time_zone\":null,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3=\n282,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 00:54:20 +0000 2013\",\"id=\n\":369623400546701312,\"id_str\":\"369623400546701312\",\"text\":\"@DelennDax7 Gene=\n was an atheist.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/blackberry.com\\/twitt=\ner\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"=\ntruncated\":false,\"in_reply_to_status_id\":369621517857865728,\"in_reply_to_st=\natus_id_str\":\"369621517857865728\",\"in_reply_to_user_id\":35424490,\"in_reply_=\nto_user_id_str\":\"35424490\",\"in_reply_to_screen_name\":\"DelennDax7\",\"geo\":nul=\nl,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"fa=\nvorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_ment=\nions\":[{\"screen_name\":\"DelennDax7\",\"name\":\"DelennDax7\",\"id\":35424490,\"id_st=\nr\":\"35424490\",\"indices\":[0,11]}]},\"favorited\":false,\"retweeted\":false,\"lang=\n\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgro=\nund_color\":\"642D8B\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nimages\\/themes\\/theme10\\/bg.gif\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/images\\/themes\\/theme10\\/bg.gif\",\"profile_background_t=\nile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/34701=\n70066\\/12630015f98fa0725b3188b829795e83_normal.jpeg\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3470170066\\/12630015f98fa0725=\nb3188b829795e83_normal.jpeg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar=\n_border_color\":\"65B0DA\",\"profile_sidebar_fill_color\":\"7AC3EE\",\"profile_text=\n_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":fals=\ne,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fal=\nse,\"notifications\":false},{\"id\":334321077,\"id_str\":\"334321077\",\"name\":\"alan=\n tudyk\",\"screen_name\":\"alan_tudyk\",\"location\":\"los angeles\",\"description\":\"=\ni am an actor and shit\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"=\nprotected\":false,\"followers_count\":228008,\"friends_count\":103,\"listed_count=\n\":4882,\"created_at\":\"Tue Jul 12 22:29:37 +0000 2011\",\"favourites_count\":10,=\n\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":=\nfalse,\"verified\":true,\"statuses_count\":856,\"lang\":\"en\",\"status\":{\"created_a=\nt\":\"Fri Aug 16 15:58:05 +0000 2013\",\"id\":368401283893305345,\"id_str\":\"36840=\n1283893305345\",\"text\":\"the probiotics and antibiotics will be debating toda=\ny in my colon. I will be moderating.\",\"source\":\"web\",\"truncated\":false,\"in_=\nreply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user=\n_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"ge=\no\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\"=\n:145,\"favorite_count\":237,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],=\n\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contr=\nibutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C6=\nE2EE\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgr=\nound_images\\/577360971\\/qw7rpqjovo4whp0n6eqd.jpeg\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/577360971=\n\\/qw7rpqjovo4whp0n6eqd.jpeg\",\"profile_background_tile\":true,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3635760119\\/ff0ce00b7b0cb98401=\n8e53ea5af4cb76_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_images\\/3635760119\\/ff0ce00b7b0cb984018e53ea5af4cb76_normal.jp=\neg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3343210=\n77\\/1353379084\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color=\n\":\"C6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B=\n12\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_pr=\nofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notificat=\nions\":false},{\"id\":325832193,\"id_str\":\"325832193\",\"name\":\"Jonathan Frakes\",=\n\"screen_name\":\"jonathansfrakes\",\"location\":\"\",\"description\":\"father, husban=\nd, director, reformed actor\",\"url\":null,\"entities\":{\"description\":{\"urls\":[=\n]}},\"protected\":false,\"followers_count\":173758,\"friends_count\":67,\"listed_c=\nount\":3679,\"created_at\":\"Tue Jun 28 23:12:18 +0000 2011\",\"favourites_count\"=\n:4,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enable=\nd\":false,\"verified\":true,\"statuses_count\":448,\"lang\":\"en\",\"status\":{\"create=\nd_at\":\"Tue Aug 20 00:49:05 +0000 2013\",\"id\":369622078116605953,\"id_str\":\"36=\n9622078116605953\",\"text\":\"Where am I? http:\\/\\/t.co\\/8OliIiVwhM\",\"source\":\"=\n\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\=\n\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_st=\natus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"=\nin_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"co=\nordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":12,\"favori=\nte_count\":50,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mention=\ns\":[],\"media\":[{\"id\":369622077936250880,\"id_str\":\"369622077936250880\",\"indi=\nces\":[12,34],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BSEpUlCIMAA0-V9.jp=\ng\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BSEpUlCIMAA0-V9.jpg\",=\n\"url\":\"http:\\/\\/t.co\\/8OliIiVwhM\",\"display_url\":\"pic.twitter.com\\/8OliIiVwh=\nM\",\"expanded_url\":\"http:\\/\\/twitter.com\\/jonathansfrakes\\/status\\/369622078=\n116605953\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150,\"resi=\nze\":\"crop\"},\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":=\n800,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"favorite=\nd\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DE=\nED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/=\ntheme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profil=\ne_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1421108285\\/image_norm=\nal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\=\n/1421108285\\/image_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sideb=\nar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_te=\nxt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":tr=\nue,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fa=\nlse,\"notifications\":false},{\"id\":180509355,\"id_str\":\"180509355\",\"name\":\"Kat=\nee Sackhoff\",\"screen_name\":\"kateesackhoff\",\"location\":\"Los Angeles \",\"descr=\niption\":\"Longmire - Season 2 on A&E | \\nRiddick - Sept 6th Theaters & IMAX =\n| \\nOculus - Showing Toronto Film Festival Sept 8th\",\"url\":\"http:\\/\\/t.co\\/=\ncZeytOFiAr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cZeytOFiAr\",\"=\nexpanded_url\":\"http:\\/\\/www.kateesackhoff.com\",\"display_url\":\"kateesackhoff=\n.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fol=\nlowers_count\":142619,\"friends_count\":217,\"listed_count\":3297,\"created_at\":\"=\nThu Aug 19 20:22:29 +0000 2010\",\"favourites_count\":1,\"utc_offset\":-25200,\"t=\nime_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,=\n\"statuses_count\":5445,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Aug 21 05:27:=\n56 +0000 2013\",\"id\":370054640320008192,\"id_str\":\"370054640320008192\",\"text\"=\n:\"Amazing! RT @redskies_design: @kateesackhoff Saw a screening of @RiddickT=\nheMovie last week! Loved (cont) http:\\/\\/t.co\\/4xaQctTGxC\",\"source\":\"\\u003c=\na href=3D\\\"http:\\/\\/tweetli.st\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweetList!\\u003c=\n\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_stat=\nus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"=\nin_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"c=\nontributors\":null,\"retweet_count\":3,\"favorite_count\":3,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4xaQctTGxC\",\"expanded_url=\n\":\"http:\\/\\/tl.gd\\/mhnr1v\",\"display_url\":\"tl.gd\\/mhnr1v\",\"indices\":[105,127=\n]}],\"user_mentions\":[{\"screen_name\":\"redskies_design\",\"name\":\"Allen Helbig\"=\n,\"id\":1051446140,\"id_str\":\"1051446140\",\"indices\":[12,28]},{\"screen_name\":\"k=\nateesackhoff\",\"name\":\"Katee Sackhoff\",\"id\":180509355,\"id_str\":\"180509355\",\"=\nindices\":[30,44]},{\"screen_name\":\"RiddickTheMovie\",\"name\":\"#RIDDICK\",\"id\":7=\n41500678,\"id_str\":\"741500678\",\"indices\":[64,80]}]},\"favorited\":false,\"retwe=\neted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":=\nfalse,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_ba=\nckground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/3914=\n89008\\/block2.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twim=\ng.com\\/profile_background_images\\/391489008\\/block2.jpg\",\"profile_backgroun=\nd_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37=\n8800000325797520\\/85a695255a76bd94b85f5095fdda93aa_normal.jpeg\",\"profile_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000325797520=\n\\/85a695255a76bd94b85f5095fdda93aa_normal.jpeg\",\"profile_banner_url\":\"https=\n:\\/\\/pbs.twimg.com\\/profile_banners\\/180509355\\/1374522433\",\"profile_link_c=\nolor\":\"003F91\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fil=\nl_color\":\"FFFCCF\",\"profile_text_color\":\"000000\",\"profile_use_background_ima=\nge\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":=\nfalse,\"follow_request_sent\":false,\"notifications\":false},{\"id\":171676161,\"i=\nd_str\":\"171676161\",\"name\":\"Joe Flanigan\",\"screen_name\":\"JoeFlanigan\",\"locat=\nion\":\"Los Angeles, CA\",\"description\":\"actor\\/writer\",\"url\":null,\"entities\":=\n{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":34044,\"frie=\nnds_count\":26,\"listed_count\":1608,\"created_at\":\"Tue Jul 27 22:29:05 +0000 2=\n010\",\"favourites_count\":1,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US=\n & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":392,\"lang=\n\":\"en\",\"status\":{\"created_at\":\"Sat Aug 17 20:27:14 +0000 2013\",\"id\":3688314=\n07763636224,\"id_str\":\"368831407763636224\",\"text\":\"This is the look I get wh=\nen I leave the house http:\\/\\/t.co\\/cZclSenWG2\",\"source\":\"\\u003ca href=3D\\\"=\nhttp:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter fo=\nr iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in=\n_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_=\nid_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"=\nplace\":null,\"contributors\":null,\"retweet_count\":29,\"favorite_count\":106,\"en=\ntities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[],\"media\":[{=\n\"id\":368831407608430592,\"id_str\":\"368831407608430592\",\"indices\":[46,68],\"me=\ndia_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BR5aNgiCAAAEfP3.jpg\",\"media_url_ht=\ntps\":\"https:\\/\\/pbs.twimg.com\\/media\\/BR5aNgiCAAAEfP3.jpg\",\"url\":\"http:\\/\\/=\nt.co\\/cZclSenWG2\",\"display_url\":\"pic.twitter.com\\/cZclSenWG2\",\"expanded_url=\n\":\"http:\\/\\/twitter.com\\/JoeFlanigan\\/status\\/368831407763636224\\/photo\\/1\"=\n,\"type\":\"photo\",\"sizes\":{\"small\":{\"w\":340,\"h\":511,\"resize\":\"fit\"},\"thumb\":{=\n\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":426,\"h\":640,\"resize\":\"fit\"},\"=\nmedium\":{\"w\":426,\"h\":640,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":=\nfalse,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,=\n\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/t=\nheme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_images\\/1629381992\\/image_normal.jpg\",\"profile_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1629381992\\/image_no=\nrmal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0D=\nEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"p=\nrofile_use_background_image\":true,\"default_profile\":true,\"default_profile_i=\nmage\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":f=\nalse},{\"id\":154663165,\"id_str\":\"154663165\",\"name\":\"Chris Gauthier\",\"screen_=\nname\":\"captaingauthier\",\"location\":\"\",\"description\":\"Rotund, jovial, half s=\nhark, alligator half man. Also acts in various film and T.V. shows. I belon=\ng to the city. I belong to the night.\",\"url\":\"http:\\/\\/t.co\\/KCtqifJFb8\",\"e=\nntities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/KCtqifJFb8\",\"expanded_url\":=\n\"http:\\/\\/www.imdb.com\\/name\\/nm0310240\\/\",\"display_url\":\"imdb.com\\/name\\/n=\nm0310240\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":4053,\"friends_count\":185,\"listed_count\":333,\"created_at=\n\":\"Fri Jun 11 21:45:08 +0000 2010\",\"favourites_count\":38,\"utc_offset\":null,=\n\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3466=\n,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Aug 21 01:55:27 +0000 2013\",\"id\":3=\n70001167142494208,\"id_str\":\"370001167142494208\",\"text\":\"@kenlawsonsauce why=\n, that mouth is gonna be big one day, see!?! #bigtimehollywoodmouth #gettha=\ntmouthitsownshow!\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/downloa=\nd\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"tru=\nncated\":false,\"in_reply_to_status_id\":369994157794021376,\"in_reply_to_statu=\ns_id_str\":\"369994157794021376\",\"in_reply_to_user_id\":561019506,\"in_reply_to=\n_user_id_str\":\"561019506\",\"in_reply_to_screen_name\":\"kenlawsonsauce\",\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,=\n\"favorite_count\":1,\"entities\":{\"hashtags\":[{\"text\":\"bigtimehollywoodmouth\",=\n\"indices\":[64,86]},{\"text\":\"getthatmouthitsownshow\",\"indices\":[87,110]}],\"s=\nymbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"kenlawsonsauce\",\"name=\n\":\"ken lawson\",\"id\":561019506,\"id_str\":\"561019506\",\"indices\":[0,15]}]},\"fav=\norited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"=\nis_translator\":false,\"profile_background_color\":\"8B542B\",\"profile_backgroun=\nd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/228280289\\/=\nIMG_0842.JPG\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_background_images\\/228280289\\/IMG_0842.JPG\",\"profile_background_t=\nile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/29208=\n58877\\/9d30b7cce2cc6b9411f8d93c6323dbe4_normal.jpeg\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2920858877\\/9d30b7cce2cc6b941=\n1f8d93c6323dbe4_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\=\n/profile_banners\\/154663165\\/1348211930\",\"profile_link_color\":\"9D582E\",\"pro=\nfile_sidebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"=\nprofile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_p=\nrofile\":false,\"default_profile_image\":false,\"following\":false,\"follow_reque=\nst_sent\":false,\"notifications\":false},{\"id\":151232686,\"id_str\":\"151232686\",=\n\"name\":\"Yvonne Strahovski\",\"screen_name\":\"Y_Strahovski\",\"location\":\"Los Ang=\neles, CA\",\"description\":\"Actor\",\"url\":\"http:\\/\\/t.co\\/fqt46j2omE\",\"entities=\n\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fqt46j2omE\",\"expanded_url\":\"http:\\=\n/\\/twitter.com\\/Y_Strahovski\",\"display_url\":\"twitter.com\\/Y_Strahovski\",\"in=\ndices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_co=\nunt\":292849,\"friends_count\":86,\"listed_count\":4878,\"created_at\":\"Wed Jun 02=\n 23:08:05 +0000 2010\",\"favourites_count\":6,\"utc_offset\":-25200,\"time_zone\":=\n\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_=\ncount\":1251,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Aug 21 00:42:59 +0000 2=\n013\",\"id\":369982930556162048,\"id_str\":\"369982930556162048\",\"text\":\"@LittleC=\nhuckFan too true;)\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/downlo=\nad\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"tr=\nuncated\":false,\"in_reply_to_status_id\":369981739843989504,\"in_reply_to_stat=\nus_id_str\":\"369981739843989504\",\"in_reply_to_user_id\":88793811,\"in_reply_to=\n_user_id_str\":\"88793811\",\"in_reply_to_screen_name\":\"LittleChuckFan\",\"geo\":n=\null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":3,\"=\nfavorite_count\":10,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_m=\nentions\":[{\"screen_name\":\"LittleChuckFan\",\"name\":\"Bailey\",\"id\":88793811,\"id=\n_str\":\"88793811\",\"indices\":[0,15]}]},\"favorited\":false,\"retweeted\":false,\"l=\nang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_back=\nground_color\":\"EDECE9\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_background_images\\/466502754\\/dirty.jpg\",\"profile_background_ima=\nge_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/46650275=\n4\\/dirty.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/3110845634\\/ba5af79f6a93b675078adecb2c9dd07c=\n_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/3110845634\\/ba5af79f6a93b675078adecb2c9dd07c_normal.jpeg\",\"profile_b=\nanner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/151232686\\/1372464573=\n\",\"profile_link_color\":\"088253\",\"profile_sidebar_border_color\":\"D3D2CF\",\"pr=\nofile_sidebar_fill_color\":\"E3E2DE\",\"profile_text_color\":\"634047\",\"profile_u=\nse_background_image\":true,\"default_profile\":false,\"default_profile_image\":f=\nalse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{=\n\"id\":144003355,\"id_str\":\"144003355\",\"name\":\"Jeri Ryan\",\"screen_name\":\"JeriL=\nRyan\",\"location\":\"Los Angeles\",\"description\":\"Actress, wife, mom, foodie, a=\nnd gardener. Not necessarily in that order. Occasional binge-tweeter. I ca=\nn't reply to everybody, but I try!\",\"url\":\"http:\\/\\/t.co\\/IMKzM18eiX\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/IMKzM18eiX\",\"expanded_url\":\"ht=\ntp:\\/\\/google.com\\/+JeriRyan\",\"display_url\":\"google.com\\/+JeriRyan\",\"indice=\ns\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\"=\n:178545,\"friends_count\":489,\"listed_count\":5273,\"created_at\":\"Sat May 15 01=\n:29:48 +0000 2010\",\"favourites_count\":197,\"utc_offset\":-25200,\"time_zone\":\"=\nPacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_c=\nount\":31239,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Aug 21 06:03:20 +0000 2=\n013\",\"id\":370063550032515073,\"id_str\":\"370063550032515073\",\"text\":\"@jeffunc=\nhained84 we have 2 dogs, but I\\u2019m actually much more of a cat person\",\"=\nsource\":\"\\u003ca href=3D\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=3D\\\"nofollow=\n\\\"\\u003eTweetbot for iOS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_sta=\ntus_id\":370022489318907904,\"in_reply_to_status_id_str\":\"370022489318907904\"=\n,\"in_reply_to_user_id\":771082860,\"in_reply_to_user_id_str\":\"771082860\",\"in_=\nreply_to_screen_name\":\"jeffunchained84\",\"geo\":null,\"coordinates\":null,\"plac=\ne\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_count\":1,\"entities\"=\n:{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"jef=\nfunchained84\",\"name\":\"Jeff Hensley\",\"id\":771082860,\"id_str\":\"771082860\",\"in=\ndices\":[0,16]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"35272=\n6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/734382248\\/c3ef32c0610f029e0d50b77fbf2169d1.jpeg\",\"profile_backgr=\nound_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/=\n734382248\\/c3ef32c0610f029e0d50b77fbf2169d1.jpeg\",\"profile_background_tile\"=\n:true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/295784172=\n7\\/a9b20e06d2248849977272e4dd614a85_normal.jpeg\",\"profile_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_images\\/2957841727\\/a9b20e06d224884997727=\n2e4dd614a85_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/144003355\\/1355162869\",\"profile_link_color\":\"D02B55\",\"profile=\n_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"prof=\nile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"default_profi=\nle\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_s=\nent\":false,\"notifications\":false},{\"id\":143988282,\"id_str\":\"143988282\",\"nam=\ne\":\"Colin Ferguson\",\"screen_name\":\"colinferg\",\"location\":\"Los Angeles\",\"des=\ncription\":\"Traveller. Hotel Liver. Emigrater. Actor. Director. Word Maker U=\npper.\",\"url\":\"http:\\/\\/t.co\\/qlEdGF39j0\",\"entities\":{\"url\":{\"urls\":[{\"url\":=\n\"http:\\/\\/t.co\\/qlEdGF39j0\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm=\n0272399\\/\",\"display_url\":\"imdb.com\\/name\\/nm0272399\\/\",\"indices\":[0,22]}]},=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":60050,\"frien=\nds_count\":57,\"listed_count\":2210,\"created_at\":\"Sat May 15 00:27:20 +0000 20=\n10\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Alaska\",\"geo_enab=\nled\":false,\"verified\":true,\"statuses_count\":2476,\"lang\":\"en\",\"status\":{\"cre=\nated_at\":\"Tue Aug 20 22:15:15 +0000 2013\",\"id\":369945754317500417,\"id_str\":=\n\"369945754317500417\",\"text\":\"@KrisAnne74 I did!!! You can't not have a fan=\ntasy about someday singing up there when you're RIGHT there :)\",\"source\":\"w=\neb\",\"truncated\":false,\"in_reply_to_status_id\":369943718557544448,\"in_reply_=\nto_status_id_str\":\"369943718557544448\",\"in_reply_to_user_id\":595075057,\"in_=\nreply_to_user_id_str\":\"595075057\",\"in_reply_to_screen_name\":\"KrisAnne74\",\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"us=\ner_mentions\":[{\"screen_name\":\"KrisAnne74\",\"name\":\"Kris Anne\",\"id\":595075057=\n,\"id_str\":\"595075057\",\"indices\":[0,11]}]},\"favorited\":false,\"retweeted\":fal=\nse,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile=\n_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_backgr=\nound_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images=\n\\/1123430419\\/cropped_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_images\\/1123430419\\/cropped_normal.jpg\",\"profile_link_co=\nlor\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill=\n_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_imag=\ne\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":f=\nalse,\"follow_request_sent\":false,\"notifications\":false},{\"id\":140233086,\"id=\n_str\":\"140233086\",\"name\":\"Tricia Helfer\",\"screen_name\":\"trutriciahelfer\",\"l=\nocation\":\"California\",\"description\":\"Official Twitter account for actress T=\nricia Helfer.\",\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"entities\":{\"url\":{\"urls\":=\n[{\"url\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"expanded_url\":\"http:\\/\\/www.triciahelf=\ner.com\",\"display_url\":\"triciahelfer.com\",\"indices\":[0,22]}]},\"description\":=\n{\"urls\":[]}},\"protected\":false,\"followers_count\":66817,\"friends_count\":246,=\n\"listed_count\":2220,\"created_at\":\"Tue May 04 23:56:01 +0000 2010\",\"favourit=\nes_count\":8,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"g=\neo_enabled\":false,\"verified\":true,\"statuses_count\":3745,\"lang\":\"en\",\"status=\n\":{\"created_at\":\"Wed Aug 21 05:32:15 +0000 2013\",\"id\":370055727923994624,\"i=\nd_str\":\"370055727923994624\",\"text\":\"@baumie83 @ImJamieBamber @kateesackhoff=\n Oh gosh...he's so cute! Looks like my Fiona.\",\"source\":\"web\",\"truncated\":=\nfalse,\"in_reply_to_status_id\":370052557130854400,\"in_reply_to_status_id_str=\n\":\"370052557130854400\",\"in_reply_to_user_id\":370493698,\"in_reply_to_user_id=\n_str\":\"370493698\",\"in_reply_to_screen_name\":\"baumie83\",\"geo\":null,\"coordina=\ntes\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_coun=\nt\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"sc=\nreen_name\":\"baumie83\",\"name\":\"Lauren Baum\",\"id\":370493698,\"id_str\":\"3704936=\n98\",\"indices\":[0,9]},{\"screen_name\":\"ImJamieBamber\",\"name\":\"Jamie Bamber\",\"=\nid\":1245247988,\"id_str\":\"1245247988\",\"indices\":[10,24]},{\"screen_name\":\"kat=\neesackhoff\",\"name\":\"Katee Sackhoff\",\"id\":180509355,\"id_str\":\"180509355\",\"in=\ndices\":[25,39]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFF=\nFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/=\ntheme19\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/images\\/themes\\/theme19\\/bg.gif\",\"profile_background_tile\":true,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2882677348\\/04a0d678a=\nae2c3ebed58e083518931c3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_n=\normal.png\",\"profile_link_color\":\"08348C\",\"profile_sidebar_border_color\":\"FF=\nFFFF\",\"profile_sidebar_fill_color\":\"858585\",\"profile_text_color\":\"000000\",\"=\nprofile_use_background_image\":true,\"default_profile\":false,\"default_profile=\n_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\"=\n:false},{\"id\":134668186,\"id_str\":\"134668186\",\"name\":\"Amy Acker\",\"screen_nam=\ne\":\"AmyAcker\",\"location\":\"LA\\/BK\",\"description\":\"Actress and Martha Stewart=\n wanna be\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":fa=\nlse,\"followers_count\":92204,\"friends_count\":42,\"listed_count\":3327,\"created=\n_at\":\"Mon Apr 19 03:28:05 +0000 2010\",\"favourites_count\":51,\"utc_offset\":nu=\nll,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":3=\n27,\"lang\":\"en\",\"status\":{\"created_at\":\"Sun Aug 18 22:30:33 +0000 2013\",\"id\"=\n:369224829091594242,\"id_str\":\"369224829091594242\",\"text\":\"\\u201c@DamonsFate=\n: I want to see Much Ado About Nothing in France. @josswhedon @clarkgregg @=\nAlexisDenisof @AmyAcker @NathanFillion\\u201d me too!\",\"source\":\"\\u003ca hre=\nf=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwit=\nter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":36=\n9061501547450368,\"in_reply_to_status_id_str\":\"369061501547450368\",\"in_reply=\n_to_user_id\":252050809,\"in_reply_to_user_id_str\":\"252050809\",\"in_reply_to_s=\ncreen_name\":\"DamonsFate\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contri=\nbutors\":null,\"retweet_count\":13,\"favorite_count\":13,\"entities\":{\"hashtags\":=\n[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"DamonsFate\",\"nam=\ne\":\"Waltzie.\",\"id\":252050809,\"id_str\":\"252050809\",\"indices\":[1,12]},{\"scree=\nn_name\":\"josswhedon\",\"name\":\"Joss Whedon\",\"id\":1424700757,\"id_str\":\"1424700=\n757\",\"indices\":[62,73]},{\"screen_name\":\"clarkgregg\",\"name\":\"Clark Gregg\",\"i=\nd\":48785884,\"id_str\":\"48785884\",\"indices\":[74,85]},{\"screen_name\":\"AlexisDe=\nnisof\",\"name\":\"Alexis Denisof\",\"id\":1486285009,\"id_str\":\"1486285009\",\"indic=\nes\":[86,100]},{\"screen_name\":\"AmyAcker\",\"name\":\"Amy Acker\",\"id\":134668186,\"=\nid_str\":\"134668186\",\"indices\":[101,110]},{\"screen_name\":\"NathanFillion\",\"na=\nme\":\"Nathan Fillion\",\"id\":31353077,\"id_str\":\"31353077\",\"indices\":[111,125]}=\n]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":=\nfalse,\"is_translator\":false,\"profile_background_color\":\"BADFCD\",\"profile_ba=\nckground_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme12\\/bg.gif=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/th=\nemes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_images\\/2425899600\\/image_normal.jpg\",\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2425899600\\/=\nimage_normal.jpg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_border_col=\nor\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_color\":\"0C=\n3E53\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_=\nprofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notific=\nations\":false},{\"id\":130600864,\"id_str\":\"130600864\",\"name\":\"Sean Maher\",\"sc=\nreen_name\":\"Sean_M_Maher\",\"location\":\"Los Angeles\",\"description\":\"Partner. =\nFather of two. Spiritual seeker. Actor. Lover of wine. Usually in that orde=\nr. \\n\\nNew Yorker at heart, but calls LA home.\",\"url\":null,\"entities\":{\"des=\ncription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":54269,\"friends_c=\nount\":85,\"listed_count\":2866,\"created_at\":\"Wed Apr 07 19:38:39 +0000 2010\",=\n\"favourites_count\":3,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false=\n,\"verified\":true,\"statuses_count\":2174,\"lang\":\"en\",\"status\":{\"created_at\":\"=\nWed Aug 14 18:28:00 +0000 2013\",\"id\":367714234802524160,\"id_str\":\"367714234=\n802524160\",\"text\":\"RT @JewelStaite: Live in the UK? Always wanted to go to =\nthe UK? This is going to be a hilarious all-weekend free for all party. Gam=\ne? http:\\u2026\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/=\niphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"trunca=\nted\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"i=\nn_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen=\n_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,=\n\"retweeted_status\":{\"created_at\":\"Wed Aug 14 18:04:20 +0000 2013\",\"id\":3677=\n08279071182849,\"id_str\":\"367708279071182849\",\"text\":\"Live in the UK? Always=\n wanted to go to the UK? This is going to be a hilarious all-weekend free f=\nor all party. Game? http:\\/\\/t.co\\/A9FsOxgs0U\",\"source\":\"\\u003ca href=3D\\\"h=\nttp:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for=\n iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_=\nreply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_i=\nd_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"p=\nlace\":null,\"contributors\":null,\"retweet_count\":49,\"favorite_count\":41,\"enti=\nties\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/A9FsOxgs0U=\n\",\"expanded_url\":\"http:\\/\\/www.starfury.co.uk\\/\",\"display_url\":\"starfury.co=\n.uk\",\"indices\":[117,139]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted=\n\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":49,\"favorit=\ne_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\"=\n:[{\"screen_name\":\"JewelStaite\",\"name\":\"Jewel Staite\",\"id\":34175976,\"id_str\"=\n:\"34175976\",\"indices\":[3,15]}]},\"favorited\":false,\"retweeted\":false,\"lang\":=\n\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgroun=\nd_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/im=\nages\\/themes\\/theme18\\/bg.gif\",\"profile_background_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/images\\/themes\\/theme18\\/bg.gif\",\"profile_background_til=\ne\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/362532=\n9449\\/ee586c408a4bd8a15184a48e5babc4f9_normal.jpeg\",\"profile_image_url_http=\ns\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3625329449\\/ee586c408a4bd8a151=\n84a48e5babc4f9_normal.jpeg\",\"profile_link_color\":\"038543\",\"profile_sidebar_=\nborder_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_=\ncolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fals=\ne,\"notifications\":false},{\"id\":115485051,\"id_str\":\"115485051\",\"name\":\"Conan=\n O'Brien\",\"screen_name\":\"ConanOBrien\",\"location\":\"Los Angeles\",\"description=\n\":\"The voice of the people. Sorry, people.\",\"url\":\"http:\\/\\/t.co\\/2MenU2MTO=\nS\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/2MenU2MTOS\",\"expanded_=\nurl\":\"http:\\/\\/teamcoco.com\",\"display_url\":\"teamcoco.com\",\"indices\":[0,22]}=\n]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":8681192,\"=\nfriends_count\":1,\"listed_count\":87541,\"created_at\":\"Thu Feb 18 20:17:16 +00=\n00 2010\",\"favourites_count\":0,\"utc_offset\":-28800,\"time_zone\":\"Alaska\",\"geo=\n_enabled\":false,\"verified\":true,\"statuses_count\":1359,\"lang\":\"en\",\"status\":=\n{\"created_at\":\"Tue Aug 20 21:42:33 +0000 2013\",\"id\":369937522417086464,\"id_=\nstr\":\"369937522417086464\",\"text\":\"Christian Bale has been offered $50 milli=\non to play Batman. Save your money, Hollywood, I\\u2019ll do it for $40 mill=\nion!\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_rep=\nly_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_s=\ntr\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"plac=\ne\":null,\"contributors\":null,\"retweet_count\":2567,\"favorite_count\":1897,\"ent=\nities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited=\n\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_tra=\nnslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/875682230\\/6957e7=\nd6efdd57c670277fce65043e40.jpeg\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/875682230\\/6957e7d6efdd57c6=\n70277fce65043e40.jpeg\",\"profile_background_tile\":false,\"profile_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_images\\/728337241\\/conan_4cred_normal.jpg\",=\n\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/7283372=\n41\\/conan_4cred_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_=\nborder_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_=\ncolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fals=\ne,\"notifications\":false},{\"id\":92352911,\"id_str\":\"92352911\",\"name\":\"Jon Hue=\nrtas\",\"screen_name\":\"Jon_Huertas\",\"location\":\"Venice, California\",\"descript=\nion\":\"...I've been known to make Nuns cry.\",\"url\":\"http:\\/\\/t.co\\/R6yHv4xPS=\nR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/R6yHv4xPSR\",\"expanded_=\nurl\":\"http:\\/\\/www.thejonhuertas.com\",\"display_url\":\"thejonhuertas.com\",\"in=\ndices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_co=\nunt\":206962,\"friends_count\":312,\"listed_count\":3049,\"created_at\":\"Tue Nov 2=\n4 20:07:40 +0000 2009\",\"favourites_count\":5,\"utc_offset\":-25200,\"time_zone\"=\n:\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses=\n_count\":5681,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 03:31:07 +0000 =\n2013\",\"id\":369662854372151296,\"id_str\":\"369662854372151296\",\"text\":\"@A_todo=\n_dar @NikkiFinke thanks to u both!!!\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/t=\napbots.com\\/tweetbot\\\" rel=3D\\\"nofollow\\\"\\u003eTweetbot for iOS\\u003c\\/a\\u0=\n03e\",\"truncated\":false,\"in_reply_to_status_id\":369652365730648065,\"in_reply=\n_to_status_id_str\":\"369652365730648065\",\"in_reply_to_user_id\":910896194,\"in=\n_reply_to_user_id_str\":\"910896194\",\"in_reply_to_screen_name\":\"A_todo_dar\",\"=\ngeo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_coun=\nt\":2,\"favorite_count\":2,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"u=\nser_mentions\":[{\"screen_name\":\"A_todo_dar\",\"name\":\"joana mcclellan\",\"id\":91=\n0896194,\"id_str\":\"910896194\",\"indices\":[0,11]},{\"screen_name\":\"NikkiFinke\",=\n\"name\":\"Nikki Finke\",\"id\":24980246,\"id_str\":\"24980246\",\"indices\":[12,23]}]}=\n,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":fa=\nlse,\"is_translator\":false,\"profile_background_color\":\"050505\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/426101=\n593\\/20111106_-_Jon_Huertas_4_088.jpg\",\"profile_background_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/426101593\\/20111106_-=\n_Jon_Huertas_4_088.jpg\",\"profile_background_tile\":false,\"profile_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_images\\/3428988457\\/550f863093d329dbaec803=\nb160d903f1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\=\n/profile_images\\/3428988457\\/550f863093d329dbaec803b160d903f1_normal.jpeg\",=\n\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/92352911\\/1=\n364227441\",\"profile_link_color\":\"CF5D10\",\"profile_sidebar_border_color\":\"18=\n1A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",\"=\nprofile_use_background_image\":true,\"default_profile\":false,\"default_profile=\n_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\"=\n:false},{\"id\":91279573,\"id_str\":\"91279573\",\"name\":\"Adam Baldwin\",\"screen_na=\nme\":\"AdamBaldwin\",\"location\":\"United States of America!\",\"description\":\"Ame=\nrican Individual. Amiable Skeptic.\",\"url\":\"http:\\/\\/t.co\\/CiwLvIz334\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CiwLvIz334\",\"expanded_url\":\"ht=\ntp:\\/\\/www.breitbart.com\\/Columnists\\/adam-baldwin\",\"display_url\":\"breitbar=\nt.com\\/Columnists\\/ada\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}=\n},\"protected\":false,\"followers_count\":140456,\"friends_count\":1010,\"listed_c=\nount\":7156,\"created_at\":\"Fri Nov 20 05:46:16 +0000 2009\",\"favourites_count\"=\n:626,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enab=\nled\":false,\"verified\":true,\"statuses_count\":15446,\"lang\":\"en\",\"status\":{\"cr=\neated_at\":\"Wed Aug 21 05:36:17 +0000 2013\",\"id\":370056742354173952,\"id_str\"=\n:\"370056742354173952\",\"text\":\"RT @EddieMcClintock: Australian baseball play=\ner killed by Okla. teens http:\\/\\/t.co\\/STllCrVZK7 (Pres. Obama, if you had=\n a son would he look l\\u2026\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tapbots.c=\nom\\/tweetbot\\\" rel=3D\\\"nofollow\\\"\\u003eTweetbot for iOS\\u003c\\/a\\u003e\",\"tr=\nuncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":nul=\nl,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_sc=\nreen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":n=\null,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 22:39:23 +0000 2013\",\"id\":=\n369951828164620288,\"id_str\":\"369951828164620288\",\"text\":\"Australian basebal=\nl player killed by Okla. teens http:\\/\\/t.co\\/STllCrVZK7 (Pres. Obama, if y=\nou had a son would he look like Christopher Lane?)\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/twitter.com\\/tweetbutton\\\" rel=3D\\\"nofollow\\\"\\u003eTweet Butt=\non\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply=\n_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str=\n\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\"=\n:null,\"contributors\":null,\"retweet_count\":62,\"favorite_count\":39,\"entities\"=\n:{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/STllCrVZK7\",\"ex=\npanded_url\":\"http:\\/\\/www.cnn.com\\/2013\\/08\\/20\\/justice\\/australia-student=\n-killed-oklahoma\\/index.html?sr=3Dsharebar_twitter\",\"display_url\":\"cnn.com\\=\n/2013\\/08\\/20\\/jus\\u2026\",\"indices\":[49,71]}],\"user_mentions\":[]},\"favorite=\nd\":false,\"retweeted\":false,\"possibly_sensitive\":true,\"lang\":\"en\"},\"retweet_=\ncount\":62,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":=\n[{\"url\":\"http:\\/\\/t.co\\/STllCrVZK7\",\"expanded_url\":\"http:\\/\\/www.cnn.com\\/2=\n013\\/08\\/20\\/justice\\/australia-student-killed-oklahoma\\/index.html?sr=3Dsh=\narebar_twitter\",\"display_url\":\"cnn.com\\/2013\\/08\\/20\\/jus\\u2026\",\"indices\":=\n[70,92]}],\"user_mentions\":[{\"screen_name\":\"EddieMcClintock\",\"name\":\"Eddie M=\ncClintock\",\"id\":50016578,\"id_str\":\"50016578\",\"indices\":[3,19]}]},\"favorited=\n\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"02233=\n0\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/443255614\\/Picture_1.png\",\"profile_background_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/profile_background_images\\/443255614\\/Picture_1.png=\n\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_images\\/378800000014876270\\/d98d865b35b48689817a1091ace70d29_norm=\nal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/378800000014876270\\/d98d865b35b48689817a1091ace70d29_normal.jpeg\",\"profil=\ne_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/91279573\\/13616072=\n95\",\"profile_link_color\":\"FF1C1C\",\"profile_sidebar_border_color\":\"A8C7F7\",\"=\nprofile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333333\",\"profile=\n_use_background_image\":true,\"default_profile\":false,\"default_profile_image\"=\n:false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}=\n,{\"id\":89604563,\"id_str\":\"89604563\",\"name\":\"Allison Scagliotti\",\"screen_nam=\ne\":\"allisonscag\",\"location\":\"Space ghost, coast to coast.\",\"description\":\"D=\neath to Videodrome. Long live the new flesh.\",\"url\":\"http:\\/\\/t.co\\/ERvXvsu=\nf8T\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ERvXvsuf8T\",\"expande=\nd_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1270095\\/\",\"display_url\":\"imdb.com\\/=\nname\\/nm1270095\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protecte=\nd\":false,\"followers_count\":77277,\"friends_count\":656,\"listed_count\":2643,\"c=\nreated_at\":\"Fri Nov 13 02:24:14 +0000 2009\",\"favourites_count\":196,\"utc_off=\nset\":-28800,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":false,\"stat=\nuses_count\":3820,\"lang\":\"en\",\"status\":{\"created_at\":\"Mon Aug 19 18:09:35 +0=\n000 2013\",\"id\":369521543430152192,\"id_str\":\"369521543430152192\",\"text\":\"Jus=\nt finished the final table read of #Warehouse13. It's the best episode of t=\nhe series, and I can't wait to share it with all of you.\",\"source\":\"\\u003ca=\n href=3D\\\"https:\\/\\/mobile.twitter.com\\\" rel=3D\\\"nofollow\\\"\\u003eMobile Web=\n (M5)\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_re=\nply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_=\nstr\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"pla=\nce\":null,\"contributors\":null,\"retweet_count\":114,\"favorite_count\":196,\"enti=\nties\":{\"hashtags\":[{\"text\":\"Warehouse13\",\"indices\":[38,50]}],\"symbols\":[],\"=\nurls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en=\n\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_c=\nolor\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_background_images\\/851841715\\/fcd13b0ff25abcc536f7c89a1e0bceb7.jpeg\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/851841715\\/fcd13b0ff25abcc536f7c89a1e0bceb7.jpeg\",\"profile_back=\nground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_image=\ns\\/3571817985\\/57df38b2fdc2b0f6201dfd7190fd5ee3_normal.jpeg\",\"profile_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3571817985\\/57df38b2f=\ndc2b0f6201dfd7190fd5ee3_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.tw=\nimg.com\\/profile_banners\\/89604563\\/1366867813\",\"profile_link_color\":\"0084B=\n4\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DD=\nEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"de=\nfault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follo=\nw_request_sent\":false,\"notifications\":false},{\"id\":86422542,\"id_str\":\"86422=\n542\",\"name\":\"Milla Jovovich\",\"screen_name\":\"MillaJovovich\",\"location\":\"Wuz =\nup Vitch?\",\"description\":\"pronounced mee-luh yo-vo-vitch \\u2026 http:\\/\\/t=\n.co\\/NX7IV85QEK\\r\\nhttp:\\/\\/t.co\\/IXc6mCtq4H\",\"url\":\"http:\\/\\/t.co\\/1Qh4epb=\nmOA\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/1Qh4epbmOA\",\"expande=\nd_url\":\"http:\\/\\/www.MillaJ.com\",\"display_url\":\"MillaJ.com\",\"indices\":[0,22=\n]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/NX7IV85QEK\",\"expanded_ur=\nl\":\"http:\\/\\/www.facebook.com\\/MillaJovovich\",\"display_url\":\"facebook.com\\/=\nMillaJovovich\",\"indices\":[34,56]},{\"url\":\"http:\\/\\/t.co\\/IXc6mCtq4H\",\"expan=\nded_url\":\"http:\\/\\/www.instagram.com\\/MillaJovovich\",\"display_url\":\"instagr=\nam.com\\/MillaJovovich\",\"indices\":[58,80]}]}},\"protected\":false,\"followers_c=\nount\":1234155,\"friends_count\":3178,\"listed_count\":17083,\"created_at\":\"Fri O=\nct 30 23:46:02 +0000 2009\",\"favourites_count\":177,\"utc_offset\":-28800,\"time=\n_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":11405,=\n\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Aug 16 22:23:04 +0000 2013\",\"id\":36=\n8498166959579138,\"id_str\":\"368498166959579138\",\"text\":\"also, check out the =\nrad photo shoot i did with the boys from Daft Punk! i hope you love the pic=\ns! xo m http:\\/\\/t.co\\/ZZNtm5rHSE\",\"source\":\"web\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":26=\n3,\"favorite_count\":269,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url=\n\":\"http:\\/\\/t.co\\/ZZNtm5rHSE\",\"expanded_url\":\"http:\\/\\/crfashionbook.com\\/p=\nost\\/58356929299\\/digital-love-a-tale-of-desire-starring-daft-punk\",\"displa=\ny_url\":\"crfashionbook.com\\/post\\/583569292\\u2026\",\"indices\":[103,125]}],\"us=\ner_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":f=\nalse,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profi=\nle_background_color\":\"10A8A8\",\"profile_background_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_background_images\\/679946683\\/b7cbee631daf3dfcd6580905f90=\nb2531.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_background_images\\/679946683\\/b7cbee631daf3dfcd6580905f90b2531.jpeg=\n\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_images\\/3251448147\\/efef36887919568382cafca061ca4f0a_normal.jpeg\"=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/325144=\n8147\\/efef36887919568382cafca061ca4f0a_normal.jpeg\",\"profile_banner_url\":\"h=\nttps:\\/\\/pbs.twimg.com\\/profile_banners\\/86422542\\/1349638523\",\"profile_lin=\nk_color\":\"B330BF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_=\nfill_color\":\"D1CFCF\",\"profile_text_color\":\"7E4E80\",\"profile_use_background_=\nimage\":true,\"default_profile\":false,\"default_profile_image\":false,\"followin=\ng\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":80468100,=\n\"id_str\":\"80468100\",\"name\":\"Amanda Tapping\",\"screen_name\":\"amandatapping\",\"=\nlocation\":\"Vangroovy, B.C.\",\"description\":\"mama, wife, actress, director, p=\nroducer, activist, and general goofball. :D\",\"url\":\"http:\\/\\/t.co\\/5W59mbxz=\nno\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5W59mbxzno\",\"expanded=\n_url\":\"http:\\/\\/www.amandatapping.com\",\"display_url\":\"amandatapping.com\",\"i=\nndices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_c=\nount\":108449,\"friends_count\":133,\"listed_count\":4181,\"created_at\":\"Wed Oct =\n07 02:18:05 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-25200,\"time_zone=\n\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuse=\ns_count\":1689,\"lang\":\"en\",\"status\":{\"created_at\":\"Wed Aug 21 04:07:06 +0000=\n 2013\",\"id\":370034297895284736,\"id_str\":\"370034297895284736\",\"text\":\"RT @Sh=\nannadc80: Go here https:\\/\\/t.co\\/OtESFAv4tb and vote for @amandatapping Su=\npport her amazing ... http:\\/\\/t.co\\/bLoVBhLGm8\",\"source\":\"\\u003ca href=3D\\=\n\"http:\\/\\/www.echofon.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eEchofon\\u003c\\/a\\u003=\ne\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_st=\nr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply=\n_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contribut=\nors\":null,\"retweet_count\":10,\"favorite_count\":10,\"entities\":{\"hashtags\":[],=\n\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OtESFAv4tb\",\"expanded_url\":\"ht=\ntps:\\/\\/thebille.com\\/r\\/5921z4eo\",\"display_url\":\"thebille.com\\/r\\/5921z4eo=\n\",\"indices\":[24,47]},{\"url\":\"http:\\/\\/t.co\\/bLoVBhLGm8\",\"expanded_url\":\"htt=\np:\\/\\/tmi.me\\/16n7IH\",\"display_url\":\"tmi.me\\/16n7IH\",\"indices\":[100,122]}],=\n\"user_mentions\":[{\"screen_name\":\"Shannadc80\",\"name\":\"Shay \",\"id\":63483055,\"=\nid_str\":\"63483055\",\"indices\":[3,14]},{\"screen_name\":\"amandatapping\",\"name\":=\n\"Amanda Tapping\",\"id\":80468100,\"id_str\":\"80468100\",\"indices\":[61,75]}]},\"fa=\nvorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"c=\nontributors_enabled\":false,\"is_translator\":false,\"profile_background_color\"=\n:\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ba=\nckground_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/425911126\\/Sanctu=\nary.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1608928806\\/=\nnepal_with_mankumari_normal.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sid=\nebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_=\ntext_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\"=\n:false,\"notifications\":false},{\"id\":74817489,\"id_str\":\"74817489\",\"name\":\"sa=\nsha roiz\",\"screen_name\":\"sasharoiz\",\"location\":\"LAX\\/PDX\",\"description\":\"ko=\nsher ham\",\"url\":\"http:\\/\\/t.co\\/kr6ks9gv2Y\",\"entities\":{\"url\":{\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/kr6ks9gv2Y\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/#=\n!\\/sasharoizfb\",\"display_url\":\"facebook.com\\/#!\\/sasharoizfb\",\"indices\":[0,=\n22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":33376=\n,\"friends_count\":179,\"listed_count\":903,\"created_at\":\"Wed Sep 16 19:40:11 +=\n0000 2009\",\"favourites_count\":1,\"utc_offset\":-25200,\"time_zone\":\"Pacific Ti=\nme (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":3080=\n,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Aug 15 00:40:35 +0000 2013\",\"id\":3=\n67808002088132609,\"id_str\":\"367808002088132609\",\"text\":\"\\u201c@RebeccaStarr=\n1: can you wish @dingosue a happy birthday? She runs @Grimm_Family for Aust=\nralia.\\u201d Happy birthday you Dingo.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\=\n/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone=\n\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":3677694459863490=\n56,\"in_reply_to_status_id_str\":\"367769445986349056\",\"in_reply_to_user_id\":3=\n31819938,\"in_reply_to_user_id_str\":\"331819938\",\"in_reply_to_screen_name\":\"R=\nebeccaStarr1\",\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":nul=\nl,\"retweet_count\":7,\"favorite_count\":14,\"entities\":{\"hashtags\":[],\"symbols\"=\n:[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"RebeccaStarr1\",\"name\":\"Rebec=\nca Starr\",\"id\":331819938,\"id_str\":\"331819938\",\"indices\":[1,15]},{\"screen_na=\nme\":\"dingosue\",\"name\":\"Sue Dingo\",\"id\":1038938557,\"id_str\":\"1038938557\",\"in=\ndices\":[30,39]},{\"screen_name\":\"Grimm_Family\",\"name\":\"GrimmAustralia\",\"id\":=\n1601112320,\"id_str\":\"1601112320\",\"indices\":[67,80]}]},\"favorited\":false,\"re=\ntweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":fa=\nlse,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/64614040\\/unicorns-rainbow.j=\npg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/64614040\\/unicorns-rainbow.jpg\",\"profile_background_tile=\n\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/30957962=\n21\\/c888b0e6d317228ed8ffa243dab96685_normal.jpeg\",\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/3095796221\\/c888b0e6d317228ed8ff=\na243dab96685_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_bo=\nrder_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_co=\nlor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"=\ndefault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,=\n\"notifications\":false}],\"next_cursor\":4611686018502205393,\"next_cursor_str\"=\n:\"4611686018502205393\",\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "52796", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:11 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:11 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577134732946; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:11 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066671", "x-transaction": "d8b89dbb47cccc21" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/list.json" }, "response": { "body_quoted_printable": "[{\"id\":94711160,\"id_str\":\"94711160\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tw=\neeps-33\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description=\n\":\"updated!\",\"slug\":\"tweeps-33\",\"full_name\":\"@tweepytest\\/tweeps-33\",\"creat=\ned_at\":\"Wed Aug 21 06:16:06 +0000 2013\",\"following\":true,\"user\":{\"id\":82301=\n637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\"=\n,\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:=\n28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cen=\ntral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_coun=\nt\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_bord=\ner_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_colo=\nr\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"=\nnotifications\":false}},{\"id\":94709026,\"id_str\":\"94709026\",\"name\":\"tweeps\",\"=\nuri\":\"\\/tweepytest\\/tweeps-32\",\"subscriber_count\":0,\"member_count\":0,\"mode\"=\n:\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-32\",\"full_name\":\"@tweepyt=\nest\\/tweeps-32\",\"created_at\":\"Wed Aug 21 05:03:16 +0000 2013\",\"following\":t=\nrue,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"scr=\neen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account f=\nor testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"=\ndisplay_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"prot=\nected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"creat=\ned_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-=\n18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified=\n\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_t=\nranslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test=\n.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"=\nprofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_im=\nages\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twim=\ng.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\"=\n,\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF=\n92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"def=\nault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow=\n_request_sent\":false,\"notifications\":false}},{\"id\":94638373,\"id_str\":\"94638=\n373\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-31\",\"subscriber_count\":0,\"=\nmember_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-31\"=\n,\"full_name\":\"@tweepytest\\/tweeps-31\",\"created_at\":\"Mon Aug 19 23:12:22 +00=\n00 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":=\n\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descript=\nion\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",=\n\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url=\n\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descripti=\non\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"=\nlisted_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_c=\nount\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_e=\nnabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributor=\ns_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_ba=\nckground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_im=\nages\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_ur=\nl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profil=\ne_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sid=\nebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgr=\nound_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"fo=\nllowing\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":94=\n629632,\"id_str\":\"94629632\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-30\",=\n\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"update=\nd!\",\"slug\":\"tweeps-30\",\"full_name\":\"@tweepytest\\/tweeps-30\",\"created_at\":\"M=\non Aug 19 19:19:50 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_s=\ntr\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"locatio=\nn\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:=\n\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9=\nbWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices=\n\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":=\n7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +00=\n00 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time=\n (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"l=\nang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backg=\nround_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\=\n/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0=\n.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.j=\npg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/8230163=\n7\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\"=\n:\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"00000=\n0\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_pr=\nofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notificat=\nions\":false}},{\"id\":94524769,\"id_str\":\"94524769\",\"name\":\"tweeps\",\"uri\":\"\\/t=\nweepytest\\/tweeps-29\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\"=\n,\"description\":\"updated!\",\"slug\":\"tweeps-29\",\"full_name\":\"@tweepytest\\/twee=\nps-29\",\"created_at\":\"Sat Aug 17 19:48:03 +0000 2013\",\"following\":true,\"user=\n\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\"=\n:\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testin=\ng stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_u=\nrl\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fa=\nlse,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"W=\ned Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"ti=\nme_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"=\nstatuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator=\n\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.j=\npg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/173=\n3327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pr=\nofile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile=\n_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"prof=\nile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_prof=\nile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_=\nsent\":false,\"notifications\":false}},{\"id\":94522241,\"id_str\":\"94522241\",\"nam=\ne\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-28\",\"subscriber_count\":0,\"member_co=\nunt\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-28\",\"full_name\":\"@tw=\neepytest\\/tweeps-28\",\"created_at\":\"Sat Aug 17 18:33:30 +0000 2013\",\"followi=\nng\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\"=\n,\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test acco=\nunt for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\"=\n:{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.c=\nom\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},=\n\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"=\ncreated_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offs=\net\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"ver=\nified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,=\n\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\=\n/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":fa=\nlse,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\=\n/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs=\n.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"00=\n00FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":=\n\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false=\n,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"f=\nollow_request_sent\":false,\"notifications\":false}},{\"id\":94501088,\"id_str\":\"=\n94501088\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-27\",\"subscriber_count=\n\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweep=\ns-27\",\"full_name\":\"@tweepytest\\/tweeps-27\",\"created_at\":\"Sat Aug 17 09:29:4=\n7 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"n=\name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"des=\ncription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVr=\nV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expande=\nd_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\"=\n:10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favouri=\ntes_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"=\ngeo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contri=\nbutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFF=\nFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profi=\nle_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_bann=\ner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"p=\nrofile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profil=\ne_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_b=\nackground_image\":false,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"i=\nd\":94498165,\"id_str\":\"94498165\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps=\n-26\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"u=\npdated!\",\"slug\":\"tweeps-26\",\"full_name\":\"@tweepytest\\/tweeps-26\",\"created_a=\nt\":\"Sat Aug 17 07:57:16 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,=\n\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"lo=\ncation\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"=\nhttp:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co=\n\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"in=\ndices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_co=\nunt\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:2=\n0 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central=\n Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1=\n26,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_=\nbackground_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/39434=\n5638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_nor=\nmal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82=\n301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_c=\nolor\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"=\n000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"defau=\nlt_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"noti=\nfications\":false}},{\"id\":94494046,\"id_str\":\"94494046\",\"name\":\"tweeps\",\"uri\"=\n:\"\\/tweepytest\\/tweeps-25\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"pu=\nblic\",\"description\":\"updated!\",\"slug\":\"tweeps-25\",\"full_name\":\"@tweepytest\\=\n/tweeps-25\",\"created_at\":\"Sat Aug 17 05:33:02 +0000 2013\",\"following\":true,=\n\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_=\nname\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for t=\nesting stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":=\n[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"disp=\nlay_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protecte=\nd\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_a=\nt\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-1800=\n0,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":fa=\nlse,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_trans=\nlator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"prof=\nile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_nor=\nmal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.co=\nm\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"pr=\nofile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",=\n\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default=\n_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_req=\nuest_sent\":false,\"notifications\":false}},{\"id\":94491953,\"id_str\":\"94491953\"=\n,\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-24\",\"subscriber_count\":0,\"memb=\ner_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-24\",\"fu=\nll_name\":\"@tweepytest\\/tweeps-24\",\"created_at\":\"Sat Aug 17 04:24:30 +0000 2=\n013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Twe=\nepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\"=\n:\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"ent=\nities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"h=\nttp:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":=\n{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"list=\ned_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count=\n\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabl=\ned\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_en=\nabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"pro=\nfile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_image=\ns\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgr=\nound_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images=\n\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"=\nhttps:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_li=\nnk_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar=\n_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background=\n_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"follow=\ning\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":943896=\n02,\"id_str\":\"94389602\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-23\",\"sub=\nscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"=\ntweeps-23\",\"full_name\":\"@tweepytest\\/tweeps-23\",\"created_at\":\"Thu Aug 15 06=\n:43:26 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"8230163=\n7\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\"=\n,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L=\n9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"ex=\npanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_c=\nount\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"fa=\nvourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canad=\na)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"c=\nontributors_enabled\":false,\"is_translator\":false,\"profile_background_color\"=\n:\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ba=\nckground_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"=\nprofile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile=\n_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137706554=\n6\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"p=\nrofile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_=\nuse_background_image\":false,\"default_profile\":false,\"default_profile_image\"=\n:false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}=\n},{\"id\":94387812,\"id_str\":\"94387812\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/t=\nweeps-22\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"descriptio=\nn\":\"\",\"slug\":\"tweeps-22\",\"full_name\":\"@tweepytest\\/tweeps-22\",\"created_at\":=\n\"Thu Aug 15 05:47:17 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id=\n_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"locat=\nion\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"htt=\np:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3=\nL9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indic=\nes\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count=\n\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +=\n0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Ti=\nme (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,=\n\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_bac=\nkground_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_ima=\nge_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/39434563=\n8\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal=\n.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301=\n637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_colo=\nr\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000=\n000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_=\nprofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notific=\nations\":false}},{\"id\":94387288,\"id_str\":\"94387288\",\"name\":\"tweeps\",\"uri\":\"\\=\n/tweepytest\\/tweeps-21\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"publi=\nc\",\"description\":\"updated!\",\"slug\":\"tweeps-21\",\"full_name\":\"@tweepytest\\/tw=\neeps-21\",\"created_at\":\"Thu Aug 15 05:31:50 +0000 2013\",\"following\":true,\"us=\ner\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_nam=\ne\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for test=\ning stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"=\nurl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display=\n_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":=\nfalse,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":=\n\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"=\ntime_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false=\n,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translat=\nor\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"=\nprofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backg=\nround_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal=\n.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1=\n733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/=\nprofile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profi=\nle_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"pr=\nofile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_pr=\nofile\":false,\"default_profile_image\":false,\"following\":false,\"follow_reques=\nt_sent\":false,\"notifications\":false}},{\"id\":91405323,\"id_str\":\"91405323\",\"n=\name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-15\",\"subscriber_count\":0,\"member_=\ncount\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-15\",\"full_=\nname\":\"@tweepytest\\/tweeps-15\",\"created_at\":\"Sun Jun 16 19:41:44 +0000 2013=\n\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy=\n test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A=\n test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http=\n:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"u=\nrls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_=\ncount\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2=\n,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\"=\n:true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabl=\ned\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.tw=\nimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgroun=\nd_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1=\n733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"htt=\nps:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_=\ncolor\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fi=\nll_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_im=\nage\":false,\"default_profile\":false,\"default_profile_image\":false,\"following=\n\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":91099797,=\n\"id_str\":\"91099797\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-8\",\"subscri=\nber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slu=\ng\":\"tweeps-8\",\"full_name\":\"@tweepytest\\/tweeps-8\",\"created_at\":\"Tue Jun 11 =\n03:35:49 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301=\n637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopi=\na\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/=\n3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"=\nexpanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]=\n},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends=\n_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"=\nfavourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Can=\nada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",=\n\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_colo=\nr\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nbackground_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\"=\n,\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profi=\nle_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065=\n546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",=\n\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profil=\ne_use_background_image\":false,\"default_profile\":false,\"default_profile_imag=\ne\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":fals=\ne}},{\"id\":91050771,\"id_str\":\"91050771\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\=\n/tweeps-7\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"descripti=\non\":\"updated!\",\"slug\":\"tweeps-7\",\"full_name\":\"@tweepytest\\/tweeps-7\",\"creat=\ned_at\":\"Mon Jun 10 05:45:38 +0000 2013\",\"following\":true,\"user\":{\"id\":82301=\n637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\"=\n,\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:=\n28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cen=\ntral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_coun=\nt\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_bord=\ner_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_colo=\nr\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"=\nnotifications\":false}},{\"id\":91032681,\"id_str\":\"91032681\",\"name\":\"tweeps\",\"=\nuri\":\"\\/tweepytest\\/tweeps-6\",\"subscriber_count\":0,\"member_count\":0,\"mode\":=\n\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-6\",\"full_name\":\"@tweepytes=\nt\\/tweeps-6\",\"created_at\":\"Sun Jun 09 19:54:45 +0000 2013\",\"following\":true=\n,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen=\n_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for =\ntesting stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\"=\n:[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"dis=\nplay_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protect=\ned\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_=\nat\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-180=\n00,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":f=\nalse,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_tran=\nslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image=\n_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jp=\ng\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_b=\nackground_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_no=\nrmal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_image=\ns\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.c=\nom\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"p=\nrofile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\"=\n,\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"defaul=\nt_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_re=\nquest_sent\":false,\"notifications\":false}},{\"id\":89965627,\"id_str\":\"89965627=\n\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-5\",\"subscriber_count\":0,\"memb=\ner_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-5\",\"ful=\nl_name\":\"@tweepytest\\/tweeps-5\",\"created_at\":\"Sun May 19 09:45:17 +0000 201=\n3\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweep=\ny test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"=\nA test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entit=\nies\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"htt=\np:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"=\nurls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"listed=\n_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":=\n2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled=\n\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enab=\nled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profi=\nle_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\=\n/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgrou=\nnd_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"ht=\ntps:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link=\n_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_f=\nill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_i=\nmage\":false,\"default_profile\":false,\"default_profile_image\":false,\"followin=\ng\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":89955738=\n,\"id_str\":\"89955738\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-4\",\"subscr=\niber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"twe=\neps-4\",\"full_name\":\"@tweepytest\\/tweeps-4\",\"created_at\":\"Sun May 19 04:47:1=\n3 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"n=\name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"des=\ncription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVr=\nV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expande=\nd_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\"=\n:10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favouri=\ntes_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"=\ngeo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contri=\nbutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFF=\nFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profi=\nle_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_bann=\ner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"p=\nrofile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profil=\ne_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_b=\nackground_image\":false,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"i=\nd\":89945987,\"id_str\":\"89945987\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps=\n-3\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"up=\ndated!\",\"slug\":\"tweeps-3\",\"full_name\":\"@tweepytest\\/tweeps-3\",\"created_at\":=\n\"Sat May 18 23:06:55 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id=\n_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"locat=\nion\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"htt=\np:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3=\nL9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indic=\nes\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count=\n\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +=\n0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Ti=\nme (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,=\n\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_bac=\nkground_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_ima=\nge_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/39434563=\n8\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal=\n.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301=\n637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_colo=\nr\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000=\n000\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_=\nprofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notific=\nations\":false}},{\"id\":89944877,\"id_str\":\"89944877\",\"name\":\"tweeps\",\"uri\":\"\\=\n/tweepytest\\/tweeps-2\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public=\n\",\"description\":\"updated!\",\"slug\":\"tweeps-2\",\"full_name\":\"@tweepytest\\/twee=\nps-2\",\"created_at\":\"Sat May 18 22:34:12 +0000 2013\",\"following\":true,\"user\"=\n:{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":=\n\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing=\n stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url=\n\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_ur=\nl\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fal=\nse,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"We=\nd Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"tim=\ne_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"s=\ntatuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\"=\n:false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pro=\nfile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgrou=\nnd_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jp=\ng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733=\n327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_=\nsidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profi=\nle_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profi=\nle\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_s=\nent\":false,\"notifications\":false}},{\"id\":85107784,\"id_str\":\"85107784\",\"name=\n\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-14\",\"subscriber_count\":0,\"member_cou=\nnt\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-14\",\"full_nam=\ne\":\"@tweepytest\\/tweeps-14\",\"created_at\":\"Sun Feb 10 21:32:06 +0000 2013\",\"=\nfollowing\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy te=\nst 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A te=\nst account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\"=\n:{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/=\n\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls=\n\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_cou=\nnt\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"u=\ntc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":tr=\nue,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\"=\n:false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_b=\nackground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394=\n345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_t=\nile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733=\n327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:=\n\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_col=\nor\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_=\ncolor\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image=\n\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":f=\nalse,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":84444465,\"id=\n_str\":\"84444465\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps\",\"subscriber_c=\nount\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"updated!\",\"slug\":\"t=\nweeps\",\"full_name\":\"@tweepytest\\/tweeps\",\"created_at\":\"Tue Jan 29 08:15:06 =\n+0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"nam=\ne\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descr=\niption\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0=\nb\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_=\nurl\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descri=\nption\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":1=\n0,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourite=\ns_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"ge=\no_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFF=\nF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile=\n_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner=\n_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"pro=\nfile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_=\nsidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_bac=\nkground_image\":false,\"default_profile\":false,\"default_profile_image\":false,=\n\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\"=\n:84443989,\"id_str\":\"84443989\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-2=\n0\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"=\nslug\":\"tweeps-20\",\"full_name\":\"@tweepytest\\/tweeps-20\",\"created_at\":\"Tue Ja=\nn 29 08:00:17 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"=\n82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"p=\nytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t=\n.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV=\n0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,=\n22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"fr=\niends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 20=\n09\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US =\n& Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":=\n\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background=\n_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test=\n.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_http=\ns\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"=\nprofile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/13=\n77065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87B=\nC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"p=\nrofile_use_background_image\":false,\"default_profile\":false,\"default_profile=\n_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\"=\n:false}},{\"id\":84443909,\"id_str\":\"84443909\",\"name\":\"tweeps\",\"uri\":\"\\/tweepy=\ntest\\/tweeps-19\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"des=\ncription\":\"\",\"slug\":\"tweeps-19\",\"full_name\":\"@tweepytest\\/tweeps-19\",\"creat=\ned_at\":\"Tue Jan 29 07:57:41 +0000 2013\",\"following\":true,\"user\":{\"id\":82301=\n637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\"=\n,\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:=\n28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cen=\ntral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_coun=\nt\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_bord=\ner_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_colo=\nr\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"=\nnotifications\":false}},{\"id\":84443825,\"id_str\":\"84443825\",\"name\":\"tweeps\",\"=\nuri\":\"\\/tweepytest\\/tweeps-18\",\"subscriber_count\":0,\"member_count\":0,\"mode\"=\n:\"public\",\"description\":\"updated!\",\"slug\":\"tweeps-18\",\"full_name\":\"@tweepyt=\nest\\/tweeps-18\",\"created_at\":\"Tue Jan 29 07:54:27 +0000 2013\",\"following\":t=\nrue,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"scr=\neen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account f=\nor testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"=\ndisplay_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"prot=\nected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"creat=\ned_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-=\n18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified=\n\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_t=\nranslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test=\n.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"=\nprofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_im=\nages\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twim=\ng.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\"=\n,\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF=\n92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"def=\nault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow=\n_request_sent\":false,\"notifications\":false}},{\"id\":84443758,\"id_str\":\"84443=\n758\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-17\",\"subscriber_count\":0,\"=\nmember_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-17\",\"full_n=\name\":\"@tweepytest\\/tweeps-17\",\"created_at\":\"Tue Jan 29 07:51:50 +0000 2013\"=\n,\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy =\ntest 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A =\ntest account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entitie=\ns\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:=\n\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"ur=\nls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_c=\nount\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,=\n\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":=\ntrue,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enable=\nd\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profile=\n_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background=\n_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/17=\n33327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"http=\ns:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_c=\nolor\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fil=\nl_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_ima=\nge\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\"=\n:false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":83999712,\"=\nid_str\":\"83999712\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-16\",\"subscri=\nber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"twee=\nps-16\",\"full_name\":\"@tweepytest\\/tweeps-16\",\"created_at\":\"Mon Jan 21 05:46:=\n44 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"=\nname\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"de=\nscription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWV=\nrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expand=\ned_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"des=\ncription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count=\n\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favour=\nites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",=\n\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contr=\nibutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FF=\nFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgr=\nound_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"prof=\nile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_ban=\nner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"=\nprofile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profi=\nle_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_=\nbackground_image\":false,\"default_profile\":false,\"default_profile_image\":fal=\nse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"=\nid\":83988296,\"id_str\":\"83988296\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweep=\ns-13\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"=\n\",\"slug\":\"tweeps-13\",\"full_name\":\"@tweepytest\\/tweeps-13\",\"created_at\":\"Sun=\n Jan 20 23:29:42 +0000 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str=\n\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\"=\n:\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/=\n\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bW=\nVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":=\n[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,=\n\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000=\n 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (=\nUS & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lan=\ng\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgro=\nund_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/t=\nest.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg=\n\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\=\n/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"=\n87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\"=\n,\"profile_use_background_image\":false,\"default_profile\":false,\"default_prof=\nile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notificatio=\nns\":false}},{\"id\":83987852,\"id_str\":\"83987852\",\"name\":\"tweeps\",\"uri\":\"\\/twe=\nepytest\\/tweeps-12\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",\"=\ndescription\":\"\",\"slug\":\"tweeps-12\",\"full_name\":\"@tweepytest\\/tweeps-12\",\"cr=\neated_at\":\"Sun Jan 20 23:16:59 +0000 2013\",\"following\":true,\"user\":{\"id\":82=\n301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepyte=\nst\",\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",=\n\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\=\n/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.c=\nom\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follo=\nwers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 =\n07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"=\nCentral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_c=\nount\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"p=\nrofile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_back=\nground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images=\n\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profi=\nle_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/t=\nest_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_bann=\ners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_b=\norder_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_c=\nolor\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fals=\ne,\"notifications\":false}},{\"id\":83987718,\"id_str\":\"83987718\",\"name\":\"tweeps=\n\",\"uri\":\"\\/tweepytest\\/tweeps-11\",\"subscriber_count\":0,\"member_count\":0,\"mo=\nde\":\"public\",\"description\":\"\",\"slug\":\"tweeps-11\",\"full_name\":\"@tweepytest\\/=\ntweeps-11\",\"created_at\":\"Sun Jan 20 23:13:25 +0000 2013\",\"following\":true,\"=\nuser\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_n=\name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for te=\nsting stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[=\n{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"displ=\nay_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected=\n\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at=\n\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000=\n,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":fal=\nse,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_transl=\nator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\"=\n,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_bac=\nkground_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_norm=\nal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\=\n/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com=\n\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"pro=\nfile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"=\nprofile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_=\nprofile\":false,\"default_profile_image\":false,\"following\":false,\"follow_requ=\nest_sent\":false,\"notifications\":false}},{\"id\":83987597,\"id_str\":\"83987597\",=\n\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-10\",\"subscriber_count\":0,\"membe=\nr_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-10\",\"full_name\":=\n\"@tweepytest\\/tweeps-10\",\"created_at\":\"Sun Jan 20 23:09:38 +0000 2013\",\"fol=\nlowing\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test =\n123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test =\naccount for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"=\nurl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/f=\noo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[=\n]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\"=\n:0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_=\noffset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,=\n\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":fa=\nlse,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345=\n638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_tile=\n\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327=\n710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\=\n/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\"=\n:\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_col=\nor\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":f=\nalse,\"default_profile\":false,\"default_profile_image\":false,\"following\":fals=\ne,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":83985543,\"id_st=\nr\":\"83985543\",\"name\":\"tweeps\",\"uri\":\"\\/tweepytest\\/tweeps-9\",\"subscriber_co=\nunt\":0,\"member_count\":0,\"mode\":\"public\",\"description\":\"\",\"slug\":\"tweeps-9\",=\n\"full_name\":\"@tweepytest\\/tweeps-9\",\"created_at\":\"Sun Jan 20 22:12:23 +0000=\n 2013\",\"following\":true,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"T=\nweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descriptio=\nn\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"e=\nntities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":=\n\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description=\n\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"li=\nsted_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_cou=\nnt\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_ena=\nbled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_=\nenabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/s=\ni0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_back=\nground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_imag=\nes\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\"=\n:\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_=\nlink_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sideb=\nar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgrou=\nnd_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"foll=\nowing\":false,\"follow_request_sent\":false,\"notifications\":false}},{\"id\":3021=\n021,\"id_str\":\"3021021\",\"name\":\"test\",\"uri\":\"\\/tweepytest\\/test\",\"subscriber=\n_count\":1,\"member_count\":1,\"mode\":\"public\",\"description\":\"This is a simple =\nlittle test list\",\"slug\":\"test\",\"full_name\":\"@tweepytest\\/test\",\"created_at=\n\":\"Sat Nov 14 04:48:53 +0000 2009\",\"following\":true,\"user\":{\"id\":82301637,\"=\nid_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"loc=\nation\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"h=\nttp:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\=\n/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"ind=\nices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_cou=\nnt\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20=\n +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central =\nTime (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12=\n6,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_b=\nackground_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_i=\nmage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345=\n638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_norm=\nal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/823=\n01637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_co=\nlor\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"0=\n00000\",\"profile_use_background_image\":false,\"default_profile\":false,\"defaul=\nt_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notif=\nications\":false}},{\"id\":1871314,\"id_str\":\"1871314\",\"name\":\"hello2\",\"uri\":\"\\=\n/tweepytest\\/hello2\",\"subscriber_count\":0,\"member_count\":0,\"mode\":\"public\",=\n\"description\":\"\",\"slug\":\"hello2\",\"full_name\":\"@tweepytest\\/hello2\",\"created=\n_at\":\"Tue Nov 03 00:18:35 +0000 2009\",\"following\":true,\"user\":{\"id\":8230163=\n7,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"=\nlocation\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\"=\n:\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.=\nco\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"=\nindices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_=\ncount\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28=\n:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Centr=\nal Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\"=\n:126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profil=\ne_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgroun=\nd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394=\n345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_n=\normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/=\n82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border=\n_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\"=\n:\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"def=\nault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"no=\ntifications\":false}}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "63621", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:11 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:11 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577166536726; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:11 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066671", "x-transaction": "3988393ff54f4ef9" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/memberships.json" }, "response": { "body_quoted_printable": "{\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor=\n_str\":\"0\",\"lists\":[]}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "96", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:12 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:12 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577199733307; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:12 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066672", "x-transaction": "86ef077876c5fd9a" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/subscriptions.json" }, "response": { "body_quoted_printable": "{\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cursor=\n_str\":\"0\",\"lists\":[]}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "96", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:12 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:12 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577218878860; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:12 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066672", "x-transaction": "307ce863f4191c6f" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/subscribers.json?slug=stars&owner_screen_name=applepie" }, "response": { "body_quoted_printable": "{\"users\":[{\"id\":29342013,\"id_str\":\"29342013\",\"name\":\"Victor Youk\",\"screen_n=\name\":\"RazorConcepts\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":15,\"friends_=\ncount\":18,\"listed_count\":0,\"created_at\":\"Tue Apr 07 00:43:46 +0000 2009\",\"f=\navourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"=\nverified\":false,\"statuses_count\":146,\"lang\":\"en\",\"status\":{\"created_at\":\"Su=\nn Dec 18 17:58:45 +0000 2011\",\"id\":148462215962431489,\"id_str\":\"14846221596=\n2431489\",\"text\":\"10 Must Have Games of 2011: Holiday Buying Guide #TLDGiftG=\nuide via @tldtoday http:\\/\\/t.co\\/PqIwXxgD\",\"source\":\"\\u003ca href=3D\\\"http=\n:\\/\\/twitter.com\\/tweetbutton\\\" rel=3D\\\"nofollow\\\"\\u003eTweet Button\\u003c\\=\n/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_statu=\ns_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"i=\nn_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"co=\nntributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags=\n\":[{\"text\":\"TLDGiftGuide\",\"indices\":[49,62]}],\"symbols\":[],\"urls\":[{\"url\":\"=\nhttp:\\/\\/t.co\\/PqIwXxgD\",\"expanded_url\":\"http:\\/\\/bit.ly\\/tYobBH\",\"display_=\nurl\":\"bit.ly\\/tYobBH\",\"indices\":[77,97]}],\"user_mentions\":[{\"screen_name\":\"=\ntldtoday\",\"name\":\"Jonathan - tldtoday \",\"id\":126124275,\"id_str\":\"126124275\"=\n,\"indices\":[67,76]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensiti=\nve\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile=\n_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/1453851247\\/untitled_normal.PNG\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/1453851247\\/untitled_normal.PNG\",\"profil=\ne_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sid=\nebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_backgr=\nound_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"foll=\nowing\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":19818=\n3079,\"id_str\":\"198183079\",\"name\":\"Keyur Parikh\",\"screen_name\":\"parikhkeyur\"=\n,\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls=\n\":[]}},\"protected\":false,\"followers_count\":0,\"friends_count\":2,\"listed_coun=\nt\":0,\"created_at\":\"Sun Oct 03 15:52:04 +0000 2010\",\"favourites_count\":0,\"ut=\nc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statu=\nses_count\":1,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Nov 02 20:06:33 +0000 =\n2010\",\"id\":29501133862,\"id_str\":\"29501133862\",\"text\":\"http:\\/\\/is.gd\\/g7tLL=\n\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/127.0.0.1\\\" rel=3D\\\"nofollow\\\"\\u003et=\nwitPythonAPITest\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":=\nnull,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_=\nto_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates=\n\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":=\n0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"fav=\norited\":false,\"retweeted\":false,\"lang\":\"und\"},\"contributors_enabled\":false,=\n\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/t=\nheme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.pn=\ng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_prof=\nile_images\\/default_profile_3_normal.png\",\"profile_link_color\":\"0084B4\",\"pr=\nofile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",=\n\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_=\nprofile\":true,\"default_profile_image\":true,\"following\":false,\"follow_reques=\nt_sent\":false,\"notifications\":false},{\"id\":20568161,\"id_str\":\"20568161\",\"na=\nme\":\"user5idd\",\"screen_name\":\"user5idd\",\"location\":\"\",\"description\":\"\",\"url=\n\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":true,\"followers_c=\nount\":1,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Wed Feb 11 03:20:1=\n2 +0000 2009\",\"favourites_count\":0,\"utc_offset\":-18000,\"time_zone\":\"Central=\n Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":=\n595,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile=\n_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_backgr=\nound_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images=\n\\/77421005\\/PA210009_sm_crop_normal.JPG\",\"profile_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_images\\/77421005\\/PA210009_sm_crop_normal.JPG\",\"p=\nrofile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profil=\ne_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_b=\nackground_image\":true,\"default_profile\":true,\"default_profile_image\":false,=\n\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":=\n95865857,\"id_str\":\"95865857\",\"name\":\"\\u30b7\\u30f3\",\"screen_name\":\"edoaru06\"=\n,\"location\":\"\\u4eac\\u90fd\\u5e9c\\u4eac\\u90fd\\u5e02\",\"description\":\"\\u65e5\\u3=\n005\\u306e\\u611f\\u3058\\u305f\\u4e8b\\u3001\\u601d\\u3063\\u305f\\u4e8b\\u3001\\u8003=\n\\u3048\\u305f\\u4e8b\\u306a\\u3069\\u3092\\u545f\\u3044\\u3066\\u304a\\u308a\\u307e\\u3=\n059\\uff3e\\uff3e\\r\\n\\u601d\\u8003\\u306e\\u3060\\u3060\\u6f0f\\u308c\\u3067\\u3059\\u=\n306a\\u7b11\\r\\n\\u8208\\u5473\\u95a2\\u5fc3\\uff1a python \\/ Ruby \\/ Web\\u95a2\\u9=\n023 \\/ \\u30cf\\u30ac\\u30ec\\u30f3 \\/ \\u30dd\\u30eb\\u30ce\\u30b0\\u30e9\\u30d5\\u30=\na3\\u30c6\\u30a3 \\/ \\u30a2\\u30f3\\u30c0\\u30fc\\u30b0\\u30e9\\u30d5 \\/ IT\\u60c5\\u5=\n831 \\/ \\u30e9\\u30a4\\u30d5\\u30cf\\u30c3\\u30af \\/ \\u30e9\\u30a4\\u30d5\\u30ed\\u30=\nb0 \\/ Evernote \\/ Toodledo \\/ MBA\",\"url\":null,\"entities\":{\"description\":{\"u=\nrls\":[]}},\"protected\":false,\"followers_count\":191,\"friends_count\":363,\"list=\ned_count\":8,\"created_at\":\"Thu Dec 10 09:35:49 +0000 2009\",\"favourites_count=\n\":29,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":false,\"verified\":=\nfalse,\"statuses_count\":5688,\"lang\":\"ja\",\"status\":{\"created_at\":\"Tue Aug 20 =\n21:19:24 +0000 2013\",\"id\":369931699360366592,\"id_str\":\"369931699360366592\",=\n\"text\":\"\\u30c7\\u30a4\\u30ea\\u30fc YOK is out! http:\\/\\/t.co\\/5OxPnm5r9z \\u25=\nb8 Top stories today via @a_yasui @sinc44 @hkato193\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/paper.li\\\" rel=3D\\\"nofollow\\\"\\u003ePaper.li\\u003c\\/a\\u003e\",\"=\ntruncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":n=\null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_=\nscreen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\"=\n:null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbo=\nls\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5OxPnm5r9z\",\"expanded_url\":\"http:\\/\\/=\npaper.li\\/edoaru06\",\"display_url\":\"paper.li\\/edoaru06\",\"indices\":[17,39]}],=\n\"user_mentions\":[{\"screen_name\":\"a_yasui\",\"name\":\"h1\\u30fe(:3\\uff89\\uff7c \\=\nu30fe)\\uff89\\uff7c\\/h1\",\"id\":4173581,\"id_str\":\"4173581\",\"indices\":[64,72]},=\n{\"screen_name\":\"sinc44\",\"name\":\"orihata\",\"id\":6428742,\"id_str\":\"6428742\",\"i=\nndices\":[73,80]},{\"screen_name\":\"hkato193\",\"name\":\"Hirohito Kato \\u2318\",\"i=\nd\":11453912,\"id_str\":\"11453912\",\"indices\":[81,90]}]},\"favorited\":false,\"ret=\nweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},\"contributors_enabled=\n\":false,\"is_translator\":false,\"profile_background_color\":\"BADFCD\",\"profile_=\nbackground_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme12\\/bg.g=\nif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/=\nthemes\\/theme12\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1636807022\\/__________normal.jpg\"=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/163680=\n7022\\/__________normal.jpg\",\"profile_link_color\":\"FF0000\",\"profile_sidebar_=\nborder_color\":\"F2E195\",\"profile_sidebar_fill_color\":\"FFF7CC\",\"profile_text_=\ncolor\":\"0C3E53\",\"profile_use_background_image\":true,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fals=\ne,\"notifications\":false},{\"id\":126201471,\"id_str\":\"126201471\",\"name\":\"howaw=\nong_mother_app\",\"screen_name\":\"howawong_ma\",\"location\":\"\",\"description\":\"\",=\n\"url\":\"http:\\/\\/t.co\\/fe1I0MsDyM\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\=\n/\\/t.co\\/fe1I0MsDyM\",\"expanded_url\":\"http:\\/\\/www.motherapp.com\",\"display_u=\nrl\":\"motherapp.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protect=\ned\":false,\"followers_count\":3,\"friends_count\":3,\"listed_count\":0,\"created_a=\nt\":\"Thu Mar 25 03:43:56 +0000 2010\",\"favourites_count\":1,\"utc_offset\":null,=\n\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":130,=\n\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Oct 18 04:34:03 +0000 2011\",\"id\":12=\n6154047609765888,\"id_str\":\"126154047609765888\",\"text\":\"Surface Mount Machin=\ne http:\\/\\/t.co\\/AiqAEu3L\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\=\n/tweetbutton\\\" rel=3D\\\"nofollow\\\"\\u003eTweet Button\\u003c\\/a\\u003e\",\"trunca=\nted\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"i=\nn_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen=\n_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,=\n\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[]=\n,\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AiqAEu3L\",\"expanded_url\":\"http:\\/\\/shar.es\\=\n/bswpf\",\"display_url\":\"shar.es\\/bswpf\",\"indices\":[22,42]}],\"user_mentions\":=\n[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"=\nen\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_background=\n_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/ima=\nges\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":=\nfalse,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/773733372=\n\\/motherapp_twitter6_bigger_normal.png\",\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/773733372\\/motherapp_twitter6_bigger_norma=\nl.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED=\n\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"prof=\nile_use_background_image\":true,\"default_profile\":true,\"default_profile_imag=\ne\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":fals=\ne},{\"id\":16557165,\"id_str\":\"16557165\",\"name\":\"OyvindM\",\"screen_name\":\"Oyvin=\ndM\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"u=\nrls\":[]}},\"protected\":false,\"followers_count\":2,\"friends_count\":2,\"listed_c=\nount\":0,\"created_at\":\"Thu Oct 02 09:14:15 +0000 2008\",\"favourites_count\":0,=\n\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"st=\natuses_count\":1,\"lang\":\"en\",\"status\":{\"created_at\":\"Thu Oct 02 09:18:06 +00=\n00 2008\",\"id\":943051394,\"id_str\":\"943051394\",\"text\":\"test\",\"source\":\"\\u003c=\na href=3D\\\"http:\\/\\/m.twitter.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003emobile web\\u0=\n03c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nul=\nl,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null=\n,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hash=\ntags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retw=\neeted\":false,\"lang\":\"und\"},\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"pro=\nfile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/sti=\ncky\\/default_profile_images\\/default_profile_2_normal.png\",\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_images\\/default=\n_profile_2_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_borde=\nr_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color=\n\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"defa=\nult_profile_image\":true,\"following\":false,\"follow_request_sent\":false,\"noti=\nfications\":false},{\"id\":120203330,\"id_str\":\"120203330\",\"name\":\"Say No to Bo=\nredom!!\",\"screen_name\":\"sweetdeals4me\",\"location\":\"The World Wide Web\",\"des=\ncription\":\"Take a little break from all your tweeting! Do something fun! Ho=\npe I can help!\",\"url\":\"http:\\/\\/t.co\\/ZTflwB3Uxk\",\"entities\":{\"url\":{\"urls\"=\n:[{\"url\":\"http:\\/\\/t.co\\/ZTflwB3Uxk\",\"expanded_url\":\"http:\\/\\/saynotoboredo=\nm.wordpress.com\\/\",\"display_url\":\"saynotoboredom.wordpress.com\",\"indices\":[=\n0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":0,\"=\nfriends_count\":0,\"listed_count\":0,\"created_at\":\"Fri Mar 05 19:43:54 +0000 2=\n010\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":=\nfalse,\"verified\":false,\"statuses_count\":654,\"lang\":\"en\",\"contributors_enabl=\ned\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n81010718\\/mqpro_fadedblocks.br.jpg\",\"profile_background_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/profile_background_images\\/81010718\\/mqpro_fadedblo=\ncks.br.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/2325857545\\/cljkmz70khh0vqxyhqhy_normal.jpeg\",=\n\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2325857=\n545\\/cljkmz70khh0vqxyhqhy_normal.jpeg\",\"profile_link_color\":\"888888\",\"profi=\nle_sidebar_border_color\":\"888888\",\"profile_sidebar_fill_color\":\"DDDDDD\",\"pr=\nofile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default_pro=\nfile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request=\n_sent\":false,\"notifications\":false}],\"next_cursor\":0,\"next_cursor_str\":\"0\",=\n\"previous_cursor\":0,\"previous_cursor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "14051", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:12 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:12 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577238867330; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:12 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066672", "x-transaction": "ee227f47006a96a3" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/statuses.json?slug=stars&owner_screen_name=applepie" }, "response": { "body_quoted_printable": "[{\"created_at\":\"Wed Aug 21 06:10:38 +0000 2013\",\"id\":370065388618645504,\"id=\n_str\":\"370065388618645504\",\"text\":\"You guys this moment was 8 years in the =\nmaking: I finished my bottle of olive oil\",\"source\":\"\\u003ca href=3D\\\"http:=\n\\/\\/www.whosay.com\\\" rel=3D\\\"nofollow\\\"\\u003eWhoSay\\u003c\\/a\\u003e\",\"trunca=\nted\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"i=\nn_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen=\n_name\":null,\"user\":{\"id\":30364057,\"id_str\":\"30364057\",\"name\":\"Sarah Silverm=\nan\",\"screen_name\":\"SarahKSilverman\",\"location\":\"Deh'Subz, Afghanistan\",\"des=\ncription\":\"We're all just molecules, Cutie.\",\"url\":\"http:\\/\\/t.co\\/dbeLhAks=\n6Y\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/dbeLhAks6Y\",\"expanded=\n_url\":\"http:\\/\\/youtube.com\\/sarahsilverman\",\"display_url\":\"youtube.com\\/sa=\nrahsilverman\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fa=\nlse,\"followers_count\":4571494,\"friends_count\":502,\"listed_count\":51343,\"cre=\nated_at\":\"Sat Apr 11 01:28:47 +0000 2009\",\"favourites_count\":1091,\"utc_offs=\net\":16200,\"time_zone\":\"Tehran\",\"geo_enabled\":false,\"verified\":true,\"statuse=\ns_count\":2944,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fals=\ne,\"profile_background_color\":\"0F1724\",\"profile_background_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_background_images\\/82352675\\/get-attachment.aspx.=\njpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_background_images\\/82352675\\/get-attachment.aspx.jpeg\",\"profile_backgroun=\nd_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1=\n742816691\\/AVATAR_1_normal.gif\",\"profile_image_url_https\":\"https:\\/\\/si0.tw=\nimg.com\\/profile_images\\/1742816691\\/AVATAR_1_normal.gif\",\"profile_link_col=\nor\":\"FF3300\",\"profile_sidebar_border_color\":\"86A4A6\",\"profile_sidebar_fill_=\ncolor\":\"A0C5C7\",\"profile_text_color\":\"333333\",\"profile_use_background_image=\n\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":nu=\nll,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinate=\ns\":null,\"place\":null,\"contributors\":null,\"retweet_count\":68,\"favorite_count=\n\":188,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},=\n\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 21 =\n06:08:01 +0000 2013\",\"id\":370064729848283136,\"id_str\":\"370064729848283136\",=\n\"text\":\"STUPID SEXY FLANDERS!\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tapbots.=\ncom\\/tweetbot\\\" rel=3D\\\"nofollow\\\"\\u003eTweetbot for iOS\\u003c\\/a\\u003e\",\"t=\nruncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":nu=\nll,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_s=\ncreen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"name\":\"Wil Wheato=\nn\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"description\":\"I'm just th=\nis guy, you know?\",\"url\":\"http:\\/\\/t.co\\/kU6QVOeSSA\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/kU6QVOeSSA\",\"expanded_url\":\"http:\\/\\/is.gd\\/wil=\nwheaton\",\"display_url\":\"is.gd\\/wilwheaton\",\"indices\":[0,22]}]},\"description=\n\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2388165,\"friends_count\":=\n310,\"listed_count\":35034,\"created_at\":\"Wed Mar 14 21:25:33 +0000 2007\",\"fav=\nourites_count\":293,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Cana=\nda)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":35163,\"lang\":\"en\"=\n,\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_col=\nor\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profi=\nle_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background=\n_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"profile_backgrou=\nnd_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2=\n449509523\\/f0gkhyhpwmv7m6ncyxbl_normal.png\",\"profile_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_images\\/2449509523\\/f0gkhyhpwmv7m6ncyxbl_norma=\nl.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1183=\n041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_colo=\nr\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_text_color\":\"333=\n333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_p=\nrofile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notificat=\nions\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,=\n\"retweet_count\":136,\"favorite_count\":122,\"entities\":{\"hashtags\":[],\"symbols=\n\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lan=\ng\":\"en\"},{\"created_at\":\"Wed Aug 21 05:27:56 +0000 2013\",\"id\":37005464032000=\n8192,\"id_str\":\"370054640320008192\",\"text\":\"Amazing! RT @redskies_design: @k=\nateesackhoff Saw a screening of @RiddickTheMovie last week! Loved (cont) ht=\ntp:\\/\\/t.co\\/4xaQctTGxC\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweetli.st\\/\\\"=\n rel=3D\\\"nofollow\\\"\\u003eTweetList!\\u003c\\/a\\u003e\",\"truncated\":false,\"in_r=\neply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_=\nid\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"use=\nr\":{\"id\":180509355,\"id_str\":\"180509355\",\"name\":\"Katee Sackhoff\",\"screen_nam=\ne\":\"kateesackhoff\",\"location\":\"Los Angeles \",\"description\":\"Longmire - Seas=\non 2 on A&E | \\nRiddick - Sept 6th Theaters & IMAX | \\nOculus - Showing Tor=\nonto Film Festival Sept 8th\",\"url\":\"http:\\/\\/t.co\\/cZeytOFiAr\",\"entities\":{=\n\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cZeytOFiAr\",\"expanded_url\":\"http:\\/\\/=\nwww.kateesackhoff.com\",\"display_url\":\"kateesackhoff.com\",\"indices\":[0,22]}]=\n},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":142619,\"fr=\niends_count\":217,\"listed_count\":3297,\"created_at\":\"Thu Aug 19 20:22:29 +000=\n0 2010\",\"favourites_count\":1,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time =\n(US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5445,\"l=\nang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backg=\nround_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_background_images\\/391489008\\/block2.jpg\",\"profile_background_ima=\nge_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/39148900=\n8\\/block2.jpg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/378800000325797520\\/85a695255a76bd94b85f5095=\nfdda93aa_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_images\\/378800000325797520\\/85a695255a76bd94b85f5095fdda93aa_normal.=\njpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18050=\n9355\\/1374522433\",\"profile_link_color\":\"003F91\",\"profile_sidebar_border_col=\nor\":\"000000\",\"profile_sidebar_fill_color\":\"FFFCCF\",\"profile_text_color\":\"00=\n0000\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_=\nprofile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifica=\ntions\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null=\n,\"retweet_count\":3,\"favorite_count\":3,\"entities\":{\"hashtags\":[],\"symbols\":[=\n],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4xaQctTGxC\",\"expanded_url\":\"http:\\/\\/tl.gd=\n\\/mhnr1v\",\"display_url\":\"tl.gd\\/mhnr1v\",\"indices\":[105,127]}],\"user_mention=\ns\":[{\"screen_name\":\"redskies_design\",\"name\":\"Allen Helbig\",\"id\":1051446140,=\n\"id_str\":\"1051446140\",\"indices\":[12,28]},{\"screen_name\":\"kateesackhoff\",\"na=\nme\":\"Katee Sackhoff\",\"id\":180509355,\"id_str\":\"180509355\",\"indices\":[30,44]}=\n,{\"screen_name\":\"RiddickTheMovie\",\"name\":\"#RIDDICK\",\"id\":741500678,\"id_str\"=\n:\"741500678\",\"indices\":[64,80]}]},\"favorited\":false,\"retweeted\":false,\"poss=\nibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 21 05:24:30 +0000=\n 2013\",\"id\":370053778130497536,\"id_str\":\"370053778130497536\",\"text\":\". @Rid=\ndickTheMovie is everywhere! It's amazing! I just saw the movie & you wi=\nll be blown away! 100% http:\\/\\/t.co\\/bigzCwxbbx\",\"source\":\"\\u003ca href=3D=\n\\\"http:\\/\\/tweetli.st\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweetList!\\u003c\\/a\\u003e=\n\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str=\n\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_=\nto_screen_name\":null,\"user\":{\"id\":180509355,\"id_str\":\"180509355\",\"name\":\"Ka=\ntee Sackhoff\",\"screen_name\":\"kateesackhoff\",\"location\":\"Los Angeles \",\"desc=\nription\":\"Longmire - Season 2 on A&E | \\nRiddick - Sept 6th Theaters & IMAX=\n | \\nOculus - Showing Toronto Film Festival Sept 8th\",\"url\":\"http:\\/\\/t.co\\=\n/cZeytOFiAr\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cZeytOFiAr\",=\n\"expanded_url\":\"http:\\/\\/www.kateesackhoff.com\",\"display_url\":\"kateesackhof=\nf.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fo=\nllowers_count\":142619,\"friends_count\":217,\"listed_count\":3297,\"created_at\":=\n\"Thu Aug 19 20:22:29 +0000 2010\",\"favourites_count\":1,\"utc_offset\":-25200,\"=\ntime_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true=\n,\"statuses_count\":5445,\"lang\":\"en\",\"contributors_enabled\":false,\"is_transla=\ntor\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/391489008\\/block2.jpg=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/391489008\\/block2.jpg\",\"profile_background_tile\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000325797520\\=\n/85a695255a76bd94b85f5095fdda93aa_normal.jpeg\",\"profile_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/profile_images\\/378800000325797520\\/85a695255a76bd9=\n4b85f5095fdda93aa_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.co=\nm\\/profile_banners\\/180509355\\/1374522433\",\"profile_link_color\":\"003F91\",\"p=\nrofile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"FFFCCF\"=\n,\"profile_text_color\":\"000000\",\"profile_use_background_image\":true,\"default=\n_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_requ=\nest_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\"=\n:null,\"contributors\":null,\"retweet_count\":19,\"favorite_count\":33,\"entities\"=\n:{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"Rid=\ndickTheMovie\",\"name\":\"#RIDDICK\",\"id\":741500678,\"id_str\":\"741500678\",\"indice=\ns\":[2,18]}],\"media\":[{\"id\":370053777971093504,\"id_str\":\"370053777971093504\"=\n,\"indices\":[104,126],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BSKx80_CIA=\nAsWY5.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BSKx80_CIAAsW=\nY5.jpg\",\"url\":\"http:\\/\\/t.co\\/bigzCwxbbx\",\"display_url\":\"pic.twitter.com\\/b=\nigzCwxbbx\",\"expanded_url\":\"http:\\/\\/twitter.com\\/kateesackhoff\\/status\\/370=\n053778130497536\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"thumb\":{\"w\":150,\"h\":150=\n,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":453,\"resize\":\"fit\"},\"medium\":{\"w\":60=\n0,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":768,\"h\":1024,\"resize\":\"fit\"}}}]},\"fa=\nvorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"=\ncreated_at\":\"Wed Aug 21 05:19:12 +0000 2013\",\"id\":370052443062558720,\"id_st=\nr\":\"370052443062558720\",\"text\":\"\\u201c@nigelakam: @indielynne glad you like=\nd it David. Was a lot of fun to shoot\\u201d Well done man, Fanomenon looke=\nd great! We must connect in T.O.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/itune=\ns.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u00=\n3eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\"=\n:null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply=\n_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":5802762,\"=\nid_str\":\"5802762\",\"name\":\"David Hewlett\",\"screen_name\":\"dhewlett\",\"location=\n\":\"Toronto, Canada\",\"description\":\"Daddy-Nerd, Actor-Nerd, Writer\\/Director=\n-Nerd\\u2026and all round Geek! Yes, I'm also that irritating guy from Starg=\nate Atlantis.\",\"url\":\"http:\\/\\/t.co\\/AXXJNwoT4D\",\"entities\":{\"url\":{\"urls\":=\n[{\"url\":\"http:\\/\\/t.co\\/AXXJNwoT4D\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/=\nname\\/nm0382110\\/\",\"display_url\":\"imdb.com\\/name\\/nm0382110\\/\",\"indices\":[0=\n,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7931=\n8,\"friends_count\":347,\"listed_count\":3878,\"created_at\":\"Sun May 06 06:53:21=\n +0000 2007\",\"favourites_count\":0,\"utc_offset\":-25200,\"time_zone\":\"Pacific =\nTime (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":49=\n21,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_=\nbackground_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_backgro=\nund_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\=\n/644512199\\/wideye_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_images\\/644512199\\/wideye_normal.jpg\",\"profile_link_color\":=\n\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_colo=\nr\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":tr=\nue,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"=\nfollow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":n=\null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"=\nentities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_n=\name\":\"nigelakam\",\"name\":\"Nigel Akam\",\"id\":519952301,\"id_str\":\"519952301\",\"i=\nndices\":[1,11]},{\"screen_name\":\"indielynne\",\"name\":\"Indie\",\"id\":58651406,\"i=\nd_str\":\"58651406\",\"indices\":[13,24]}]},\"favorited\":false,\"retweeted\":false,=\n\"lang\":\"en\"},{\"created_at\":\"Wed Aug 21 05:14:42 +0000 2013\",\"id\":3700513111=\n87664898,\"id_str\":\"370051311187664898\",\"text\":\"\\u201c@BlueLemoNADZ: hi :D I=\n love you soo much and it's my birthday today so hihi can a get a greeting?=\n :)\\u201d Greetings now-older earthling!\",\"source\":\"\\u003ca href=3D\\\"http:\\=\n/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofoll=\now\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_st=\natus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"=\nin_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":5=\n802762,\"id_str\":\"5802762\",\"name\":\"David Hewlett\",\"screen_name\":\"dhewlett\",\"=\nlocation\":\"Toronto, Canada\",\"description\":\"Daddy-Nerd, Actor-Nerd, Writer\\/=\nDirector-Nerd\\u2026and all round Geek! Yes, I'm also that irritating guy fr=\nom Stargate Atlantis.\",\"url\":\"http:\\/\\/t.co\\/AXXJNwoT4D\",\"entities\":{\"url\":=\n{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AXXJNwoT4D\",\"expanded_url\":\"http:\\/\\/www.im=\ndb.com\\/name\\/nm0382110\\/\",\"display_url\":\"imdb.com\\/name\\/nm0382110\\/\",\"ind=\nices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_cou=\nnt\":79318,\"friends_count\":347,\"listed_count\":3878,\"created_at\":\"Sun May 06 =\n06:53:21 +0000 2007\",\"favourites_count\":0,\"utc_offset\":-25200,\"time_zone\":\"=\nPacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_c=\nount\":4921,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"9AE4E8\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile=\n_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/644512199\\/wideye_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_images\\/644512199\\/wideye_normal.jpg\",\"profile_link=\n_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_f=\nill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_i=\nmage\":true,\"default_profile\":false,\"default_profile_image\":false,\"following=\n\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordi=\nnates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_co=\nunt\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"=\nscreen_name\":\"BlueLemoNADZ\",\"name\":\"nadine\",\"id\":323180343,\"id_str\":\"323180=\n343\",\"indices\":[1,14]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{=\n\"created_at\":\"Wed Aug 21 05:08:09 +0000 2013\",\"id\":370049662985572354,\"id_s=\ntr\":\"370049662985572354\",\"text\":\"Seamus has joined the #OccupyTheCouch move=\nment. http:\\/\\/t.co\\/A1viN9mMSr\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitte=\nr.com\\/download\\/android\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Android\\u003=\nc\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_sta=\ntus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,=\n\"in_reply_to_screen_name\":null,\"user\":{\"id\":1183041,\"id_str\":\"1183041\",\"nam=\ne\":\"Wil Wheaton\",\"screen_name\":\"wilw\",\"location\":\"Los Angeles\",\"description=\n\":\"I'm just this guy, you know?\",\"url\":\"http:\\/\\/t.co\\/kU6QVOeSSA\",\"entitie=\ns\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/kU6QVOeSSA\",\"expanded_url\":\"http:=\n\\/\\/is.gd\\/wilwheaton\",\"display_url\":\"is.gd\\/wilwheaton\",\"indices\":[0,22]}]=\n},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2388165,\"f=\nriends_count\":310,\"listed_count\":35034,\"created_at\":\"Wed Mar 14 21:25:33 +0=\n000 2007\",\"favourites_count\":293,\"utc_offset\":-25200,\"time_zone\":\"Pacific T=\nime (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":351=\n63,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_=\nbackground_color\":\"022330\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646c=\ndb.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_background_images\\/871683408\\/62c85b46792dfe6bfd16420b71646cdb.png\",\"pr=\nofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/2449509523\\/f0gkhyhpwmv7m6ncyxbl_normal.png\",\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2449509523\\/f0gkhyhpwmv7=\nm6ncyxbl_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/1183041\\/1368668860\",\"profile_link_color\":\"0084B4\",\"profile_sideb=\nar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"C0DFEC\",\"profile_te=\nxt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fa=\nlse,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":fa=\nlse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contr=\nibutors\":null,\"retweet_count\":23,\"favorite_count\":131,\"entities\":{\"hashtags=\n\":[{\"text\":\"OccupyTheCouch\",\"indices\":[22,37]}],\"symbols\":[],\"urls\":[],\"use=\nr_mentions\":[],\"media\":[{\"id\":370049662834601985,\"id_str\":\"3700496628346019=\n85\",\"indices\":[48,70],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BSKuNS6Cc=\nAE8E07.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BSKuNS6CcAE8=\nE07.jpg\",\"url\":\"http:\\/\\/t.co\\/A1viN9mMSr\",\"display_url\":\"pic.twitter.com\\/=\nA1viN9mMSr\",\"expanded_url\":\"http:\\/\\/twitter.com\\/wilw\\/status\\/37004966298=\n5572354\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1022,\"h\":768,\"resiz=\ne\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":598,\"h\":4=\n50,\"resize\":\"fit\"},\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"}}}]},\"favorited\"=\n:false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_=\nat\":\"Wed Aug 21 05:06:39 +0000 2013\",\"id\":370049286836219905,\"id_str\":\"3700=\n49286836219905\",\"text\":\"Will I be seeing any of you at @FanExpoCanada (in o=\nur soon to be home-town of Toronto) this weekend? http:\\/\\/t.co\\/Dx1NRcZPhq=\n\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/i=\nd409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e=\n\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str=\n\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_=\nto_screen_name\":null,\"user\":{\"id\":5802762,\"id_str\":\"5802762\",\"name\":\"David =\nHewlett\",\"screen_name\":\"dhewlett\",\"location\":\"Toronto, Canada\",\"description=\n\":\"Daddy-Nerd, Actor-Nerd, Writer\\/Director-Nerd\\u2026and all round Geek! Y=\nes, I'm also that irritating guy from Stargate Atlantis.\",\"url\":\"http:\\/\\/t=\n.co\\/AXXJNwoT4D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/AXXJNwoT=\n4D\",\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm0382110\\/\",\"display_url\"=\n:\"imdb.com\\/name\\/nm0382110\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]=\n}},\"protected\":false,\"followers_count\":79318,\"friends_count\":347,\"listed_co=\nunt\":3878,\"created_at\":\"Sun May 06 06:53:21 +0000 2007\",\"favourites_count\":=\n0,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled=\n\":false,\"verified\":true,\"statuses_count\":4921,\"lang\":\"en\",\"contributors_ena=\nbled\":false,\"is_translator\":false,\"profile_background_color\":\"9AE4E8\",\"prof=\nile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/b=\ng.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/image=\ns\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/644512199\\/wideye_normal.jpg\",\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/64451219=\n9\\/wideye_normal.jpg\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border=\n_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\"=\n:\"000000\",\"profile_use_background_image\":true,\"default_profile\":false,\"defa=\nult_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"noti=\nfications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":=\nnull,\"retweet_count\":4,\"favorite_count\":4,\"entities\":{\"hashtags\":[],\"symbol=\ns\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Dx1NRcZPhq\",\"expanded_url\":\"http:\\/\\/w=\nww.fanexpocanada.com\\/horror-attractions\\/sneak-peek-darknet-series\\/\",\"dis=\nplay_url\":\"fanexpocanada.com\\/horror-attract\\u2026\",\"indices\":[101,123]}],\"=\nuser_mentions\":[{\"screen_name\":\"FanExpoCanada\",\"name\":\"Fan Expo Canada\",\"id=\n\":22153171,\"id_str\":\"22153171\",\"indices\":[31,45]}]},\"favorited\":false,\"retw=\neeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug=\n 21 04:59:27 +0000 2013\",\"id\":370047473454440448,\"id_str\":\"3700474734544404=\n48\",\"text\":\"A 70 year old man shoved a fork up his penis for sexual pleasur=\ne. Have a good night! http:\\/\\/t.co\\/G1jcnVWz2e\",\"source\":\"\\u003ca href=3D\\=\n\"http:\\/\\/instagram.com\\\" rel=3D\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u003e\"=\n,\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\"=\n:null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_t=\no_screen_name\":null,\"user\":{\"id\":21154526,\"id_str\":\"21154526\",\"name\":\"Jorda=\nn Hinson\",\"screen_name\":\"jordandanger\",\"location\":\"Los Angeles, CA\",\"descri=\nption\":\"Actress, writer, Anti-Peta activist with a love for tattoos and Die=\nt Coke.\\r\\n\\r\\nhttp:\\/\\/t.co\\/RI89IWth\",\"url\":\"http:\\/\\/t.co\\/QWZU8xf4UT\",\"=\nentities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/QWZU8xf4UT\",\"expanded_url\"=\n:\"http:\\/\\/www.jordanhinson.com\\/\",\"display_url\":\"jordanhinson.com\",\"indice=\ns\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/RI89IWth\",\"expan=\nded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1836666\\/\",\"display_url\":\"imdb.com=\n\\/name\\/nm1836666\\/\",\"indices\":[78,98]}]}},\"protected\":false,\"followers_cou=\nnt\":14431,\"friends_count\":167,\"listed_count\":688,\"created_at\":\"Wed Feb 18 0=\n1:08:52 +0000 2009\",\"favourites_count\":1,\"utc_offset\":-25200,\"time_zone\":\"P=\nacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_co=\nunt\":3877,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"p=\nrofile_background_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/734744288\\/4a5b71aabcfd82df97a7898=\n093c8ff14.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_background_images\\/734744288\\/4a5b71aabcfd82df97a7898093c8ff14.=\njpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/378800000074418492\\/56192cbe56abc8c6a9fb87ccd0ea0d98_=\nnormal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_im=\nages\\/378800000074418492\\/56192cbe56abc8c6a9fb87ccd0ea0d98_normal.jpeg\",\"pr=\nofile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/21154526\\/1363=\n759855\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFF=\nF\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"000000\",\"pro=\nfile_use_background_image\":true,\"default_profile\":false,\"default_profile_im=\nage\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":nul=\nl},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_=\ncount\":1,\"favorite_count\":5,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[=\n{\"url\":\"http:\\/\\/t.co\\/G1jcnVWz2e\",\"expanded_url\":\"http:\\/\\/instagram.com\\/=\np\\/dQz7MYgya0\\/\",\"display_url\":\"instagram.com\\/p\\/dQz7MYgya0\\/\",\"indices\":[=\n85,107]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly=\n_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 21 04:53:41 +0000 201=\n3\",\"id\":370046021440524289,\"id_str\":\"370046021440524289\",\"text\":\"The cutest=\n pics of @xandertarigo 30th bday by @ronysphotobooth on my Instagram @Bambo=\nlaBambina #Instagram #ronysphotobooth\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/=\ntwitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\=\nu003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to=\n_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":n=\null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":24508000,\"id_str\":\"24508000=\n\",\"name\":\"Alessandra Torresani\",\"screen_name\":\"BambolaBambina\",\"location\":\"=\nCaprica\",\"description\":\"ALESSANDRA TORRESANI'S \\r\\n\\r\\nhttps:\\/\\/t.co\\/spd6=\n4NMK\\r\\n\\r\\nhttp:\\/\\/t.co\\/mVKl2j1D\",\"url\":\"http:\\/\\/t.co\\/26Pf1B8L\",\"entit=\nies\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/26Pf1B8L\",\"expanded_url\":\"http:=\n\\/\\/www.imdb.com\\/name\\/nm0003779\\/\",\"display_url\":\"imdb.com\\/name\\/nm00037=\n79\\/\",\"indices\":[0,20]}]},\"description\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/sp=\nd64NMK\",\"expanded_url\":\"https:\\/\\/www.facebook.com\\/OfficialAlessandraTorre=\nsani\",\"display_url\":\"facebook.com\\/OfficialAlessa\\u2026\",\"indices\":[27,48]}=\n,{\"url\":\"http:\\/\\/t.co\\/mVKl2j1D\",\"expanded_url\":\"http:\\/\\/www.thebambolafa=\nctory.tumblr.com\",\"display_url\":\"thebambolafactory.tumblr.com\",\"indices\":[5=\n2,72]}]}},\"protected\":false,\"followers_count\":27257,\"friends_count\":337,\"li=\nsted_count\":1362,\"created_at\":\"Sun Mar 15 10:17:14 +0000 2009\",\"favourites_=\ncount\":9,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_=\nenabled\":false,\"verified\":true,\"statuses_count\":13749,\"lang\":\"en\",\"contribu=\ntors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"17131=\n6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/886650637\\/4949ab6d9104a57871953a94b9164f73.jpeg\",\"profile_backgr=\nound_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/=\n886650637\\/4949ab6d9104a57871953a94b9164f73.jpeg\",\"profile_background_tile\"=\n:true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/376019640=\n4\\/860e912a60deb51e1bc82ed3db964ff8_normal.png\",\"profile_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_images\\/3760196404\\/860e912a60deb51e1bc82e=\nd3db964ff8_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/24508000\\/1370467515\",\"profile_link_color\":\"F01834\",\"profile_si=\ndebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"050101\",\"profile=\n_text_color\":\"DB2A07\",\"profile_use_background_image\":true,\"default_profile\"=\n:false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\"=\n:false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"co=\nntributors\":null,\"retweet_count\":1,\"favorite_count\":1,\"entities\":{\"hashtags=\n\":[{\"text\":\"Instagram\",\"indices\":[95,105]},{\"text\":\"ronysphotobooth\",\"indic=\nes\":[106,122]}],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"xan=\ndertarigo\",\"name\":\"xander tarigo\",\"id\":36117204,\"id_str\":\"36117204\",\"indice=\ns\":[19,32]},{\"screen_name\":\"ronysphotobooth\",\"name\":\"Rony's Photobooth\",\"id=\n\":18522310,\"id_str\":\"18522310\",\"indices\":[46,62]},{\"screen_name\":\"BambolaBa=\nmbina\",\"name\":\"Alessandra Torresani\",\"id\":24508000,\"id_str\":\"24508000\",\"ind=\nices\":[79,94]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created=\n_at\":\"Wed Aug 21 04:39:05 +0000 2013\",\"id\":370042347557376001,\"id_str\":\"370=\n042347557376001\",\"text\":\"Testing out @MichaelTrucco 's beauty 2day. Heehee =\n@realsandrahess I made it sound dirty! http:\\/\\/t.co\\/76044Qf8cD\",\"source\":=\n\"\\u003ca href=3D\\\"http:\\/\\/www.apple.com\\\" rel=3D\\\"nofollow\\\"\\u003eiOS\\u003=\nc\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_sta=\ntus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,=\n\"in_reply_to_screen_name\":null,\"user\":{\"id\":140233086,\"id_str\":\"140233086\",=\n\"name\":\"Tricia Helfer\",\"screen_name\":\"trutriciahelfer\",\"location\":\"Californ=\nia\",\"description\":\"Official Twitter account for actress Tricia Helfer.\",\"ur=\nl\":\"http:\\/\\/t.co\\/sabOtx3UpB\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/sabOtx3UpB\",\"expanded_url\":\"http:\\/\\/www.triciahelfer.com\",\"display_u=\nrl\":\"triciahelfer.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"prot=\nected\":false,\"followers_count\":66817,\"friends_count\":246,\"listed_count\":222=\n0,\"created_at\":\"Tue May 04 23:56:01 +0000 2010\",\"favourites_count\":8,\"utc_o=\nffset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,=\n\"verified\":true,\"statuses_count\":3745,\"lang\":\"en\",\"contributors_enabled\":fa=\nlse,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme19\\/bg.gif\",=\n\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/them=\nes\\/theme19\\/bg.gif\",\"profile_background_tile\":true,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/2882677348\\/04a0d678aae2c3ebed58e08351=\n8931c3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_images\\/2882677348\\/04a0d678aae2c3ebed58e083518931c3_normal.png\",\"profi=\nle_link_color\":\"08348C\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_si=\ndebar_fill_color\":\"858585\",\"profile_text_color\":\"000000\",\"profile_use_backg=\nround_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"fo=\nllowing\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,=\n\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":7,\"favo=\nrite_count\":19,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_menti=\nons\":[{\"screen_name\":\"MichaelTrucco\",\"name\":\"Michael Trucco\",\"id\":516062567=\n,\"id_str\":\"516062567\",\"indices\":[12,26]},{\"screen_name\":\"realsandrahess\",\"n=\name\":\"Sandra Hess\",\"id\":437985503,\"id_str\":\"437985503\",\"indices\":[50,65]}],=\n\"media\":[{\"id\":370042347364442112,\"id_str\":\"370042347364442112\",\"indices\":[=\n89,111],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BSKnjeqCYAAVtie.jpg\",\"m=\nedia_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BSKnjeqCYAAVtie.jpg\",\"url\"=\n:\"http:\\/\\/t.co\\/76044Qf8cD\",\"display_url\":\"pic.twitter.com\\/76044Qf8cD\",\"e=\nxpanded_url\":\"http:\\/\\/twitter.com\\/trutriciahelfer\\/status\\/37004234755737=\n6001\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":450,\"resize\":=\n\"fit\"},\"large\":{\"w\":1024,\"h\":768,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"=\nresize\":\"crop\"},\"small\":{\"w\":340,\"h\":255,\"resize\":\"fit\"}}}]},\"favorited\":fa=\nlse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\"=\n:\"Wed Aug 21 04:31:07 +0000 2013\",\"id\":370040342394834944,\"id_str\":\"3700403=\n42394834944\",\"text\":\"Who wants to play??? http:\\/\\/t.co\\/HnNruRNRYb\",\"sourc=\ne\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofol=\nlow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_t=\no_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nu=\nll,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"i=\nd\":16941646,\"id_str\":\"16941646\",\"name\":\"Greg Grunberg\",\"screen_name\":\"gregg=\nrunberg\",\"location\":\"Hollywood, CA\",\"description\":\"#BigAssSpider & #TheClie=\nntList #BabyDaddy. My App @Yowza!! http:\\/\\/t.co\\/Irfd5iKDk3, http:\\/\\/t.co=\n\\/57SvY3BrUy, http:\\/\\/t.co\\/cLA0xUZJBk http:\\/\\/t.co\\/Y0PUupRzqR\",\"url\":\"h=\nttp:\\/\\/t.co\\/Y0PUupRzqR\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\=\n/Y0PUupRzqR\",\"expanded_url\":\"http:\\/\\/Bandwagon-Media.com\",\"display_url\":\"B=\nandwagon-Media.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http=\n:\\/\\/t.co\\/Irfd5iKDk3\",\"expanded_url\":\"http:\\/\\/GetYowza.com\",\"display_url\"=\n:\"GetYowza.com\",\"indices\":[59,81]},{\"url\":\"http:\\/\\/t.co\\/57SvY3BrUy\",\"expa=\nnded_url\":\"http:\\/\\/BandFromTV.org\",\"display_url\":\"BandFromTV.org\",\"indices=\n\":[83,105]},{\"url\":\"http:\\/\\/t.co\\/cLA0xUZJBk\",\"expanded_url\":\"http:\\/\\/Tal=\nkAboutIt.org\",\"display_url\":\"TalkAboutIt.org\",\"indices\":[107,129]},{\"url\":\"=\nhttp:\\/\\/t.co\\/Y0PUupRzqR\",\"expanded_url\":\"http:\\/\\/Bandwagon-Media.com\",\"d=\nisplay_url\":\"Bandwagon-Media.com\",\"indices\":[130,152]}]}},\"protected\":false=\n,\"followers_count\":1462778,\"friends_count\":2869,\"listed_count\":9198,\"create=\nd_at\":\"Fri Oct 24 02:27:18 +0000 2008\",\"favourites_count\":19,\"utc_offset\":-=\n28800,\"time_zone\":\"Alaska\",\"geo_enabled\":false,\"verified\":true,\"statuses_co=\nunt\":8585,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"p=\nrofile_background_color\":\"8B542B\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/20432361\\/GrunnyBG4.png\",\"profile_=\nbackground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_im=\nages\\/20432361\\/GrunnyBG4.png\",\"profile_background_tile\":false,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000078732890\\/db5e7cc=\nc0eb0bfa73cc186dcd11baaf1_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_images\\/378800000078732890\\/db5e7ccc0eb0bfa73cc186d=\ncd11baaf1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/16941646\\/1375541256\",\"profile_link_color\":\"9D582E\",\"profile_si=\ndebar_border_color\":\"D9B17E\",\"profile_sidebar_fill_color\":\"EADEAA\",\"profile=\n_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\"=\n:false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\"=\n:false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"co=\nntributors\":null,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags=\n\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HnNruRNRYb\",\"expanded_url\"=\n:\"http:\\/\\/www.ringsoforbis.com\\/\",\"display_url\":\"ringsoforbis.com\",\"indice=\ns\":[21,43]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possi=\nbly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 21 04:10:11 +0000 =\n2013\",\"id\":370035073728258048,\"id_str\":\"370035073728258048\",\"text\":\"Dear @J=\nesseHeiman,\\nI believe you have something that belongs to me...?\",\"source\":=\n\"\\u003ca href=3D\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=3D\\\"nofollow\\\"\\u003e=\nTweetbot for iOS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":=\nnull,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_=\nto_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":31353077,\"=\nid_str\":\"31353077\",\"name\":\"Nathan Fillion\",\"screen_name\":\"NathanFillion\",\"l=\nocation\":\"Los Angeles\",\"description\":\"It costs nothing to say something kin=\nd. Even less to shut up altogether.\",\"url\":null,\"entities\":{\"description\":{=\n\"urls\":[]}},\"protected\":false,\"followers_count\":1904755,\"friends_count\":427=\n,\"listed_count\":34946,\"created_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"favour=\nites_count\":125,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)=\n\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5147,\"lang\":\"en\",\"co=\nntributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":=\n\"131516\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/the=\nmes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"=\nprofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3788000002288120=\n95\\/523df67b08e07f4bde1ba442a7e931fa_normal.jpeg\",\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000228812095\\/523df67b08e0=\n7f4bde1ba442a7e931fa_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg=\n.com\\/profile_banners\\/31353077\\/1375475379\",\"profile_link_color\":\"009999\",=\n\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFE=\nF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"defau=\nlt_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_re=\nquest_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"plac=\ne\":null,\"contributors\":null,\"retweet_count\":17,\"favorite_count\":44,\"entitie=\ns\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"J=\nesseHeiman\",\"name\":\"Jesse Heiman \",\"id\":24197313,\"id_str\":\"24197313\",\"indic=\nes\":[5,17]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at=\n\":\"Wed Aug 21 04:07:16 +0000 2013\",\"id\":370034339930574848,\"id_str\":\"370034=\n339930574848\",\"text\":\"\\u201c@michelledevlin: Thought about heading 2 #yegfr=\ninge tonight but not the same w\\/out bumping into @NathanFillion\\u201d\\n\\nB=\nump.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tapbots.com\\/tweetbot\\\" rel=3D\\\"n=\nofollow\\\"\\u003eTweetbot for iOS\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply=\n_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":=\nnull,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{=\n\"id\":31353077,\"id_str\":\"31353077\",\"name\":\"Nathan Fillion\",\"screen_name\":\"Na=\nthanFillion\",\"location\":\"Los Angeles\",\"description\":\"It costs nothing to sa=\ny something kind. Even less to shut up altogether.\",\"url\":null,\"entities\":{=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1904755,\"fri=\nends_count\":427,\"listed_count\":34946,\"created_at\":\"Wed Apr 15 05:57:40 +000=\n0 2009\",\"favourites_count\":125,\"utc_offset\":-25200,\"time_zone\":\"Pacific Tim=\ne (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":5147,=\n\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_bac=\nkground_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_backgrou=\nnd_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3=\n78800000228812095\\/523df67b08e07f4bde1ba442a7e931fa_normal.jpeg\",\"profile_i=\nmage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/37880000022881209=\n5\\/523df67b08e07f4bde1ba442a7e931fa_normal.jpeg\",\"profile_banner_url\":\"http=\ns:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"profile_link_c=\nolor\":\"009999\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fil=\nl_color\":\"EFEFEF\",\"profile_text_color\":\"333333\",\"profile_use_background_ima=\nge\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":=\nnull,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordina=\ntes\":null,\"place\":null,\"contributors\":null,\"retweet_count\":10,\"favorite_cou=\nnt\":57,\"entities\":{\"hashtags\":[{\"text\":\"yegfringe\",\"indices\":[42,52]}],\"sym=\nbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"michelledevlin\",\"name\":=\n\"MichelleDevlin\",\"id\":18603744,\"id_str\":\"18603744\",\"indices\":[1,16]},{\"scre=\nen_name\":\"NathanFillion\",\"name\":\"Nathan Fillion\",\"id\":31353077,\"id_str\":\"31=\n353077\",\"indices\":[97,111]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"e=\nn\"},{\"created_at\":\"Wed Aug 21 04:07:06 +0000 2013\",\"id\":370034297895284736,=\n\"id_str\":\"370034297895284736\",\"text\":\"RT @Shannadc80: Go here https:\\/\\/t.c=\no\\/OtESFAv4tb and vote for @amandatapping Support her amazing ... http:\\/\\/=\nt.co\\/bLoVBhLGm8\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.echofon.com\\/\\\" r=\nel=3D\\\"nofollow\\\"\\u003eEchofon\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_=\nto_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":n=\null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"=\nid\":80468100,\"id_str\":\"80468100\",\"name\":\"Amanda Tapping\",\"screen_name\":\"ama=\nndatapping\",\"location\":\"Vangroovy, B.C.\",\"description\":\"mama, wife, actress=\n, director, producer, activist, and general goofball. :D\",\"url\":\"http:\\/\\/t=\n.co\\/5W59mbxzno\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5W59mbxz=\nno\",\"expanded_url\":\"http:\\/\\/www.amandatapping.com\",\"display_url\":\"amandata=\npping.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false=\n,\"followers_count\":108449,\"friends_count\":133,\"listed_count\":4181,\"created_=\nat\":\"Wed Oct 07 02:18:05 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-252=\n00,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":=\ntrue,\"statuses_count\":1689,\"lang\":\"en\",\"contributors_enabled\":false,\"is_tra=\nnslator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/425911126\\/Sanctu=\nary.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_background_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_tile\"=\n:true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/160892880=\n6\\/nepal_with_mankumari_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"=\nprofile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profi=\nle_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_=\nbackground_image\":true,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":10=\n,\"favorite_count\":10,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":=\n\"https:\\/\\/t.co\\/OtESFAv4tb\",\"expanded_url\":\"https:\\/\\/thebille.com\\/r\\/592=\n1z4eo\",\"display_url\":\"thebille.com\\/r\\/5921z4eo\",\"indices\":[24,47]},{\"url\":=\n\"http:\\/\\/t.co\\/bLoVBhLGm8\",\"expanded_url\":\"http:\\/\\/tmi.me\\/16n7IH\",\"displ=\nay_url\":\"tmi.me\\/16n7IH\",\"indices\":[100,122]}],\"user_mentions\":[{\"screen_na=\nme\":\"Shannadc80\",\"name\":\"Shay \",\"id\":63483055,\"id_str\":\"63483055\",\"indices\"=\n:[3,14]},{\"screen_name\":\"amandatapping\",\"name\":\"Amanda Tapping\",\"id\":804681=\n00,\"id_str\":\"80468100\",\"indices\":[61,75]}]},\"favorited\":false,\"retweeted\":f=\nalse,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 21 03:3=\n6:49 +0000 2013\",\"id\":370026677721526274,\"id_str\":\"370026677721526274\",\"tex=\nt\":\"The Poetry of Leonard Cohen Illustrated by Two Short Films. Things of b=\neauty. http:\\/\\/t.co\\/3NsqaaGPS4 \\/via @openculture\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/stone.com\\/Twittelator\\\" rel=3D\\\"nofollow\\\"\\u003eTwittelator\\=\nu003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to=\n_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":n=\null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":26642006,\"id_str\":\"26642006=\n\",\"name\":\"Alyssa Milano\",\"screen_name\":\"Alyssa_Milano\",\"location\":\"Los Ange=\nles\",\"description\":\"\\u262e, \\u2665, and BASEBALL. I tweet a lot. Consider y=\nourself forewarned. My other accounts\\u279b @AlyssaDotCom @TouchByAM!\",\"url=\n\":\"http:\\/\\/t.co\\/WMP1toazEQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t=\n.co\\/WMP1toazEQ\",\"expanded_url\":\"http:\\/\\/Alyssa.com\",\"display_url\":\"Alyssa=\n.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fol=\nlowers_count\":2526754,\"friends_count\":1291,\"listed_count\":36618,\"created_at=\n\":\"Thu Mar 26 00:34:20 +0000 2009\",\"favourites_count\":277,\"utc_offset\":-252=\n00,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":=\ntrue,\"statuses_count\":25644,\"lang\":\"en\",\"contributors_enabled\":false,\"is_tr=\nanslator\":false,\"profile_background_color\":\"260808\",\"profile_background_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/661959433\\/xe6d7=\n63cc8cba668262cc59c090da580.jpg\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/661959433\\/xe6d763cc8cba668=\n262cc59c090da580.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_images\\/378800000029143130\\/631dded31b56072f=\n4716ef04836ee6a7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twim=\ng.com\\/profile_images\\/378800000029143130\\/631dded31b56072f4716ef04836ee6a7=\n_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banner=\ns\\/26642006\\/1370386710\",\"profile_link_color\":\"18A183\",\"profile_sidebar_bor=\nder_color\":\"77BF56\",\"profile_sidebar_fill_color\":\"A5C44F\",\"profile_text_col=\nor\":\"EBE18F\",\"profile_use_background_image\":true,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"n=\notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributor=\ns\":null,\"retweet_count\":36,\"favorite_count\":42,\"entities\":{\"hashtags\":[],\"s=\nymbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3NsqaaGPS4\",\"expanded_url\":\"http:=\n\\/\\/cultr.me\\/1aTC7lA\",\"display_url\":\"cultr.me\\/1aTC7lA\",\"indices\":[78,100]=\n}],\"user_mentions\":[{\"screen_name\":\"openculture\",\"name\":\"Open Culture\",\"id\"=\n:19826509,\"id_str\":\"19826509\",\"indices\":[106,118]}]},\"favorited\":false,\"ret=\nweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Au=\ng 21 03:35:01 +0000 2013\",\"id\":370026224732864512,\"id_str\":\"370026224732864=\n512\",\"text\":\"Someplace. http:\\/\\/t.co\\/ePZHvtptcH\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/instagram.com\\\" rel=3D\\\"nofollow\\\"\\u003eInstagram\\u003c\\/a\\u0=\n03e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_=\nstr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_rep=\nly_to_screen_name\":null,\"user\":{\"id\":34747631,\"id_str\":\"34747631\",\"name\":\"E=\nliza Dushku\",\"screen_name\":\"elizadushku\",\"location\":\"Around the World\",\"des=\ncription\":\"Official Eliza Dushku. Be forewarned: I'm accused of speaking my=\n own language here... Enjoy\",\"url\":\"http:\\/\\/t.co\\/B1vzPLjjlm\",\"entities\":{=\n\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/B1vzPLjjlm\",\"expanded_url\":\"http:\\/\\/=\nwww.ElizaPatriciaDushku.com\",\"display_url\":\"ElizaPatriciaDushku.com\",\"indic=\nes\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count=\n\":1490555,\"friends_count\":852,\"listed_count\":19858,\"created_at\":\"Thu Apr 23=\n 22:09:01 +0000 2009\",\"favourites_count\":1198,\"utc_offset\":-25200,\"time_zon=\ne\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"status=\nes_count\":12052,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fa=\nlse,\"profile_background_color\":\"E051E0\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/204862752\\/elizadushku-twitt=\ner_1_.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_background_images\\/204862752\\/elizadushku-twitter_1_.jpg\",\"profile_b=\nackground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/3494939418\\/0a740f09ed3e66d7c6d446981ee904b1_normal.jpeg\",\"profile_i=\nmage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3494939418\\/0a740=\nf09ed3e66d7c6d446981ee904b1_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pb=\ns.twimg.com\\/profile_banners\\/34747631\\/1348348590\",\"profile_link_color\":\"9=\n90000\",\"profile_sidebar_border_color\":\"69D658\",\"profile_sidebar_fill_color\"=\n:\"EAF72D\",\"profile_text_color\":\"01010A\",\"profile_use_background_image\":true=\n,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"fo=\nllow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":nul=\nl,\"place\":null,\"contributors\":null,\"retweet_count\":15,\"favorite_count\":28,\"=\nentities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/ePZHvt=\nptcH\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/dQqLOit9uY\\/\",\"display_url=\n\":\"instagram.com\\/p\\/dQqLOit9uY\\/\",\"indices\":[11,33]}],\"user_mentions\":[]},=\n\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}=\n,{\"created_at\":\"Wed Aug 21 03:21:06 +0000 2013\",\"id\":370022723524624384,\"id=\n_str\":\"370022723524624384\",\"text\":\"Hello moon so full\",\"source\":\"\\u003ca hr=\nef=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwi=\ntter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":n=\null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_t=\no_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":64621799,\"i=\nd_str\":\"64621799\",\"name\":\"DAWN OLIVIERI\",\"screen_name\":\"DawnOlivieri\",\"loca=\ntion\":\"Source-ress\",\"description\":\"Enough talking ...\",\"url\":\"http:\\/\\/t.co=\n\\/cYek5L1P5C\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/cYek5L1P5C\"=\n,\"expanded_url\":\"http:\\/\\/www.imdb.com\\/name\\/nm1685408\\/\",\"display_url\":\"i=\nmdb.com\\/name\\/nm1685408\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},=\n\"protected\":false,\"followers_count\":34331,\"friends_count\":117,\"listed_count=\n\":874,\"created_at\":\"Tue Aug 11 04:11:41 +0000 2009\",\"favourites_count\":32,\"=\nutc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":f=\nalse,\"verified\":true,\"statuses_count\":3390,\"lang\":\"en\",\"contributors_enable=\nd\":false,\"is_translator\":false,\"profile_background_color\":\"1C360B\",\"profile=\n_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/1=\n60455192\\/37smaller.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_background_images\\/160455192\\/37smaller.jpg\",\"profile_=\nbackground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/2280057749\\/n4x7jx9biauceyxii36z_normal.jpeg\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2280057749\\/n4x7jx9biauceyxii=\n36z_normal.jpeg\",\"profile_link_color\":\"FF0AC6\",\"profile_sidebar_border_colo=\nr\":\"6B3112\",\"profile_sidebar_fill_color\":\"E0CF16\",\"profile_text_color\":\"0A0=\n909\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_p=\nrofile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notificat=\nions\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,=\n\"retweet_count\":3,\"favorite_count\":4,\"entities\":{\"hashtags\":[],\"symbols\":[]=\n,\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"=\nen\"},{\"created_at\":\"Wed Aug 21 02:48:57 +0000 2013\",\"id\":370014631881744384=\n,\"id_str\":\"370014631881744384\",\"text\":\"Home from #SHCHI. It was amazing! Th=\nanks to all the fans and staff. I had a great time! So many lovely people. =\nXoxo\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.echofon.com\\/\\\" rel=3D\\\"nofol=\nlow\\\"\\u003eEchofon\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id=\n\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_repl=\ny_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":80468100=\n,\"id_str\":\"80468100\",\"name\":\"Amanda Tapping\",\"screen_name\":\"amandatapping\",=\n\"location\":\"Vangroovy, B.C.\",\"description\":\"mama, wife, actress, director, =\nproducer, activist, and general goofball. :D\",\"url\":\"http:\\/\\/t.co\\/5W59mbx=\nzno\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5W59mbxzno\",\"expande=\nd_url\":\"http:\\/\\/www.amandatapping.com\",\"display_url\":\"amandatapping.com\",\"=\nindices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_=\ncount\":108449,\"friends_count\":133,\"listed_count\":4181,\"created_at\":\"Wed Oct=\n 07 02:18:05 +0000 2009\",\"favourites_count\":4,\"utc_offset\":-25200,\"time_zon=\ne\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"status=\nes_count\":1689,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/425911126\\/Sanctuary.jpg\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/425911126\\/Sanctuary.jpg\",\"profile_background_tile\":true,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1608928806\\/nepal_wit=\nh_mankumari_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\=\n/profile_images\\/1608928806\\/nepal_with_mankumari_normal.jpg\",\"profile_link=\n_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_f=\nill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_i=\nmage\":true,\"default_profile\":false,\"default_profile_image\":false,\"following=\n\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordi=\nnates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":12,\"favorite_c=\nount\":26,\"entities\":{\"hashtags\":[{\"text\":\"SHCHI\",\"indices\":[10,16]}],\"symbo=\nls\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"l=\nang\":\"en\"},{\"created_at\":\"Wed Aug 21 02:45:34 +0000 2013\",\"id\":370013778986=\n795008,\"id_str\":\"370013778986795008\",\"text\":\"Elvis and John Lennon http:\\/\\=\n/t.co\\/0bx0SZTU0E \\/via @HistoryInPics\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\=\n/stone.com\\/Twittelator\\\" rel=3D\\\"nofollow\\\"\\u003eTwittelator\\u003c\\/a\\u003=\ne\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_st=\nr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply=\n_to_screen_name\":null,\"user\":{\"id\":26642006,\"id_str\":\"26642006\",\"name\":\"Aly=\nssa Milano\",\"screen_name\":\"Alyssa_Milano\",\"location\":\"Los Angeles\",\"descrip=\ntion\":\"\\u262e, \\u2665, and BASEBALL. I tweet a lot. Consider yourself forew=\narned. My other accounts\\u279b @AlyssaDotCom @TouchByAM!\",\"url\":\"http:\\/\\/t=\n.co\\/WMP1toazEQ\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WMP1toaz=\nEQ\",\"expanded_url\":\"http:\\/\\/Alyssa.com\",\"display_url\":\"Alyssa.com\",\"indice=\ns\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\"=\n:2526754,\"friends_count\":1291,\"listed_count\":36618,\"created_at\":\"Thu Mar 26=\n 00:34:20 +0000 2009\",\"favourites_count\":277,\"utc_offset\":-25200,\"time_zone=\n\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuse=\ns_count\":25644,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"260808\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/661959433\\/xe6d763cc8cba66826=\n2cc59c090da580.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/661959433\\/xe6d763cc8cba668262cc59c090da=\n580.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_images\\/378800000029143130\\/631dded31b56072f4716ef04836ee=\n6a7_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_images\\/378800000029143130\\/631dded31b56072f4716ef04836ee6a7_normal.jpeg\"=\n,\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/26642006\\/=\n1370386710\",\"profile_link_color\":\"18A183\",\"profile_sidebar_border_color\":\"7=\n7BF56\",\"profile_sidebar_fill_color\":\"A5C44F\",\"profile_text_color\":\"EBE18F\",=\n\"profile_use_background_image\":true,\"default_profile\":false,\"default_profil=\ne_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\"=\n:null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retw=\neet_count\":224,\"favorite_count\":190,\"entities\":{\"hashtags\":[],\"symbols\":[],=\n\"urls\":[],\"user_mentions\":[{\"screen_name\":\"HistoryInPics\",\"name\":\"History I=\nn Pictures\",\"id\":1582853809,\"id_str\":\"1582853809\",\"indices\":[50,64]}],\"medi=\na\":[{\"id\":369906839519248385,\"id_str\":\"369906839519248385\",\"indices\":[22,44=\n],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BSIsT4mIQAEf6lg.jpg\",\"media_u=\nrl_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BSIsT4mIQAEf6lg.jpg\",\"url\":\"http=\n:\\/\\/t.co\\/0bx0SZTU0E\",\"display_url\":\"pic.twitter.com\\/0bx0SZTU0E\",\"expande=\nd_url\":\"http:\\/\\/twitter.com\\/HistoryInPics\\/status\\/369906839674433536\\/ph=\noto\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":419,\"h\":302,\"resize\":\"fit\"},\"=\nlarge\":{\"w\":419,\"h\":302,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"=\ncrop\"},\"small\":{\"w\":340,\"h\":245,\"resize\":\"fit\"}},\"source_status_id\":3699068=\n39674433536,\"source_status_id_str\":\"369906839674433536\"}]},\"favorited\":fals=\ne,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "54272", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:13 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:13 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577345640359; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:13 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066673", "x-transaction": "90d026f497131bdf" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/lookup.json?user_id=6844292%2C6253282" }, "response": { "body_quoted_printable": "[{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Twitter Engin=\neering\",\"profile_background_tile\":false,\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.pn=\ng\",\"profile_sidebar_fill_color\":\"DAECF4\",\"friends_count\":0,\"url\":\"http:\\/\\/=\nt.co\\/oEmYlYDquC\",\"id\":6844292,\"followers_count\":442256,\"time_zone\":\"Pacifi=\nc Time (US & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"entities\":{\"url\":{\"urls\":[{\"indi=\nces\":[0,22],\"url\":\"http:\\/\\/t.co\\/oEmYlYDquC\",\"display_url\":\"engineering.tw=\nitter.com\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\"}]},\"descriptio=\nn\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"retweeted\":fals=\ne,\"id_str\":\"368508567092875266\",\"possibly_sensitive\":false,\"in_reply_to_sta=\ntus_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http=\n:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofo=\nllow\\\"\\u003ETwitter for Mac\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"i=\nd\":368508567092875266,\"created_at\":\"Fri Aug 16 23:04:23 +0000 2013\",\"trunca=\nted\":false,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"tex=\nt\":\"An inside (and detailed) look at re-architecting Twitter. Plus, a new T=\nweets-per-second peak: 143,199 Tweets. https:\\/\\/t.co\\/LKH4UdScFi\",\"coordin=\nates\":null,\"retweet_count\":588,\"in_reply_to_user_id_str\":null,\"entities\":{\"=\nhashtags\":[],\"user_mentions\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LKH4UdScFi\"=\n,\"indices\":[110,133],\"display_url\":\"blog.twitter.com\\/2013\\/new-tweet\\u2026=\n\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/new-tweets-per-second-r=\necord-and-how\"}]}},\"default_profile\":false,\"location\":\"San Francisco, CA\",\"=\nprofile_background_color\":\"C6E2EE\",\"statuses_count\":179,\"lang\":\"en\",\"listed=\n_count\":2667,\"utc_offset\":-28800,\"profile_background_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"geo_enabled\":true,\"profile_li=\nnk_color\":\"1F98C7\",\"follow_request_sent\":false,\"id_str\":\"6844292\",\"protecte=\nd\":false,\"description\":\"The official account for Twitter Engineering.\",\"pro=\nfile_use_background_image\":true,\"profile_text_color\":\"663B12\",\"created_at\":=\n\"Sat Jun 16 00:14:36 +0000 2007\",\"verified\":true,\"profile_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.p=\nng\",\"following\":true,\"screen_name\":\"TwitterEng\",\"favourites_count\":0,\"profi=\nle_sidebar_border_color\":\"C6E2EE\",\"is_translator\":false,\"contributors_enabl=\ned\":false},{\"notifications\":false,\"followers_count\":1802622,\"time_zone\":\"Pa=\ncific Time (US & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/t=\nwimg0-a.akamaihd.net\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w=\n3d4vj.png\",\"default_profile\":false,\"name\":\"Twitter API\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_=\nbackground_color\":\"C0DEED\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"statuses_coun=\nt\":3442,\"id\":6253282,\"entities\":{\"url\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/d=\nev.twitter.com\",\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"display=\n_url\":\"dev.twitter.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"place\":nul=\nl,\"retweet_count\":96,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"re=\ntweeted\":false,\"id_str\":\"369507257500712960\",\"source\":\"web\",\"possibly_sensi=\ntive\":false,\"in_reply_to_status_id\":null,\"geo\":null,\"in_reply_to_screen_nam=\ne\":null,\"id\":369507257500712960,\"created_at\":\"Mon Aug 19 17:12:49 +0000 201=\n3\",\"favorited\":false,\"truncated\":false,\"text\":\"Introducing Twitter Headline=\ns for Embedded Tweets: https:\\/\\/t.co\\/pGWYU9Qrty\",\"coordinates\":null,\"in_r=\neply_to_status_id_str\":null,\"entities\":{\"urls\":[{\"expanded_url\":\"https:\\/\\/=\ndev.twitter.com\\/blog\\/headlines-tell-story-behind-tweet\",\"url\":\"https:\\/\\/=\nt.co\\/pGWYU9Qrty\",\"indices\":[51,74],\"display_url\":\"dev.twitter.com\\/blog\\/h=\neadlines\\u2026\"}],\"hashtags\":[],\"user_mentions\":[]},\"in_reply_to_user_id\":n=\null},\"listed_count\":11918,\"location\":\"San Francisco, CA\",\"profile_backgroun=\nd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/656927849\\/=\nmiyt9dpjz77sc0w3d4vj.png\",\"geo_enabled\":true,\"profile_link_color\":\"0084B4\",=\n\"follow_request_sent\":false,\"id_str\":\"6253282\",\"lang\":\"en\",\"utc_offset\":-28=\n800,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"prof=\nile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174872\\/7df3h38z=\nabcvjylnyfe3_normal.png\",\"protected\":false,\"verified\":true,\"description\":\"T=\nhe Real Twitter API. I tweet about API changes, service issues and happily =\nanswer questions about Twitter and our API. Don't get an answer? It's on my=\n website.\",\"favourites_count\":25,\"profile_sidebar_border_color\":\"C0DEED\",\"i=\ns_translator\":false,\"contributors_enabled\":false,\"created_at\":\"Wed May 23 0=\n6:01:13 +0000 2007\",\"default_profile_image\":false,\"profile_background_tile\"=\n:true,\"following\":false,\"screen_name\":\"twitterapi\",\"profile_sidebar_fill_co=\nlor\":\"DDEEF6\",\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/p=\nrofile_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"friends_count\"=\n:35}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "5024", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:13 GMT", "etag": "\"4f93bd4f8b4ebe3863993be03352fdcf\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:13 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:13 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCAErhJ9AAToHaWQiJWM5NWNiM2ExNTQ2NDll%250AYjllZDU1YTY2NTYzYzc1NWZk--1ca8c7bc3785de595e38300d4492ab68a7af9294; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706577379732910; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:13 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "d917bf8a4686c523c1afe28301783c7db365d0be", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066673", "x-runtime": "0.09757", "x-transaction": "a0485eb0d0662243", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/lookup.json?screen_name=twitterapi%2Ctwitter" }, "response": { "body_quoted_printable": "[{\"notifications\":false,\"followers_count\":1802622,\"time_zone\":\"Pacific Time=\n (US & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.ak=\namaihd.net\\/profile_background_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\"=\n,\"default_profile\":false,\"name\":\"Twitter API\",\"profile_banner_url\":\"https:\\=\n/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_background=\n_color\":\"C0DEED\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"statuses_count\":3442,\"i=\nd\":6253282,\"entities\":{\"url\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/dev.twitter=\n.com\",\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"display_url\":\"dev=\n.twitter.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"place\":null,\"retweet=\n_count\":96,\"in_reply_to_user_id_str\":null,\"contributors\":null,\"retweeted\":f=\nalse,\"id_str\":\"369507257500712960\",\"source\":\"web\",\"possibly_sensitive\":fals=\ne,\"in_reply_to_status_id\":null,\"geo\":null,\"in_reply_to_screen_name\":null,\"i=\nd\":369507257500712960,\"created_at\":\"Mon Aug 19 17:12:49 +0000 2013\",\"favori=\nted\":false,\"truncated\":false,\"text\":\"Introducing Twitter Headlines for Embe=\ndded Tweets: https:\\/\\/t.co\\/pGWYU9Qrty\",\"coordinates\":null,\"in_reply_to_st=\natus_id_str\":null,\"entities\":{\"urls\":[{\"expanded_url\":\"https:\\/\\/dev.twitte=\nr.com\\/blog\\/headlines-tell-story-behind-tweet\",\"url\":\"https:\\/\\/t.co\\/pGWY=\nU9Qrty\",\"indices\":[51,74],\"display_url\":\"dev.twitter.com\\/blog\\/headlines\\u=\n2026\"}],\"hashtags\":[],\"user_mentions\":[]},\"in_reply_to_user_id\":null},\"list=\ned_count\":11918,\"location\":\"San Francisco, CA\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/656927849\\/miyt9dpjz7=\n7sc0w3d4vj.png\",\"geo_enabled\":true,\"profile_link_color\":\"0084B4\",\"follow_re=\nquest_sent\":false,\"id_str\":\"6253282\",\"lang\":\"en\",\"utc_offset\":-28800,\"profi=\nle_use_background_image\":true,\"profile_text_color\":\"333333\",\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjylnyf=\ne3_normal.png\",\"protected\":false,\"verified\":true,\"description\":\"The Real Tw=\nitter API. I tweet about API changes, service issues and happily answer que=\nstions about Twitter and our API. Don't get an answer? It's on my website.\"=\n,\"favourites_count\":25,\"profile_sidebar_border_color\":\"C0DEED\",\"is_translat=\nor\":false,\"contributors_enabled\":false,\"created_at\":\"Wed May 23 06:01:13 +0=\n000 2007\",\"default_profile_image\":false,\"profile_background_tile\":true,\"fol=\nlowing\":false,\"screen_name\":\"twitterapi\",\"profile_sidebar_fill_color\":\"DDEE=\nF6\",\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_ima=\nges\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"friends_count\":35},{\"not=\nifications\":false,\"default_profile_image\":false,\"name\":\"Twitter\",\"profile_b=\nackground_tile\":true,\"profile_sidebar_fill_color\":\"F6F6F6\",\"friends_count\":=\n131,\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"id\":783214,\"followers_count\":2260147=\n4,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/657090062=\n\\/l1uqey5sy82r9ijhke1i.png\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"u=\nrl\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"display_url\":\"blog.twitter.com\",\"expanded_=\nurl\":\"http:\\/\\/blog.twitter.com\\/\"}]},\"description\":{\"urls\":[]}},\"status\":{=\n\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"36991501215794=\n3808\",\"in_reply_to_status_id_str\":null,\"in_reply_to_status_id\":null,\"in_rep=\nly_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/www.tweetdeck.c=\nom\\\" rel=3D\\\"nofollow\\\"\\u003ETweetDeck\\u003C\\/a\\u003E\",\"in_reply_to_user_id=\n_str\":null,\"geo\":null,\"favorited\":false,\"id\":369915012157943808,\"created_at=\n\":\"Tue Aug 20 20:13:06 +0000 2013\",\"truncated\":false,\"retweeted_status\":{\"c=\nontributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"3699117397829468=\n16\",\"in_reply_to_status_id_str\":null,\"in_reply_to_status_id\":null,\"in_reply=\n_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/itunes.apple.com\\=\n/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter fo=\nr Mac\\u003C\\/a\\u003E\",\"in_reply_to_user_id_str\":null,\"geo\":null,\"favorited\"=\n:false,\"id\":369911739782946816,\"created_at\":\"Tue Aug 20 20:00:06 +0000 2013=\n\",\"truncated\":false,\"in_reply_to_user_id\":null,\"text\":\"We've said this befo=\nre and we'll say it again: this community - now more than 40 million of you=\n - is amazing. Thank you for inspiring us.\",\"coordinates\":null,\"retweet_cou=\nnt\":603,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]}},\"in_reply_=\nto_user_id\":null,\"text\":\"RT @vineapp: We've said this before and we'll say =\nit again: this community - now more than 40 million of you - is amazing. Th=\nank you for in\\u2026\",\"coordinates\":null,\"retweet_count\":603,\"entities\":{\"h=\nashtags\":[],\"user_mentions\":[{\"id_str\":\"586671909\",\"screen_name\":\"vineapp\",=\n\"id\":586671909,\"indices\":[3,11],\"name\":\"Vine\"}],\"urls\":[]}},\"default_profil=\ne\":false,\"location\":\"San Francisco, CA\",\"profile_banner_url\":\"https:\\/\\/pbs=\n.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_background_color\"=\n:\"ACDED6\",\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profi=\nle_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"statuses_count\":16=\n32,\"lang\":\"en\",\"listed_count\":79289,\"utc_offset\":-28800,\"profile_background=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l=\n1uqey5sy82r9ijhke1i.png\",\"geo_enabled\":true,\"profile_link_color\":\"038543\",\"=\nis_translator\":false,\"follow_request_sent\":false,\"id_str\":\"783214\",\"protect=\ned\":false,\"description\":\"Your official source for news, updates and tips fr=\nom Twitter, Inc.\",\"profile_use_background_image\":true,\"profile_text_color\":=\n\"333333\",\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"verified\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7=\nfxn47qv9nectx_normal.png\",\"following\":false,\"screen_name\":\"twitter\",\"favour=\nites_count\":22,\"profile_sidebar_border_color\":\"EEEEEE\",\"contributors_enable=\nd\":false}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "5775", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:14 GMT", "etag": "\"a29773e86a8e094233a575698485717e\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:14 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:14 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCD0shJ9AAToHaWQiJWNiZTQ5YzgyYzIzYmU2%250AYzlhN2I3MGVmZDM0ZjA3YmM0--68f631d6cb1d2748645a690397c7a0e82bd96f71; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706577411260571; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:14 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "6a66555cec2f853d1a0f4d8df4687a6bbbf9e342", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "178", "x-rate-limit-reset": "1377066673", "x-runtime": "0.05715", "x-transaction": "2357fb9e480b6eb7", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/account/verify_credentials.json" }, "response": { "body_quoted_printable": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"=\ntweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing =\nstuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url=\n\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed=\n Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time=\n_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"st=\natuses_count\":126,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 04:44:02 +=\n0000 2013\",\"id\":369681207279108096,\"id_str\":\"369681207279108096\",\"text\":\"OC=\nkuXhbwKzAZnwuoJAJaEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSOD=\nHhzMWwaltJhk\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\n=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,=\n\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_m=\nentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},\"contributors=\n_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_bac=\nkground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ima=\nges\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile=\n_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_side=\nbar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgro=\nund_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"fol=\nlowing\":false,\"follow_request_sent\":false,\"notifications\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2235", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:14 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:14 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577484153140; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:14 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066674", "x-transaction": "8e06c3ae5ca57d5a" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/show.json?screen_name=tweepytest" }, "response": { "body_quoted_printable": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"=\ntweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing =\nstuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url=\n\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed=\n Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time=\n_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"st=\natuses_count\":126,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 04:44:02 +=\n0000 2013\",\"id\":369681207279108096,\"id_str\":\"369681207279108096\",\"text\":\"OC=\nkuXhbwKzAZnwuoJAJaEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSOD=\nHhzMWwaltJhk\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\n=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,=\n\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_m=\nentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},\"contributors=\n_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_bac=\nkground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ima=\nges\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile=\n_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_side=\nbar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgro=\nund_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"fol=\nlowing\":false,\"follow_request_sent\":false,\"notifications\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2235", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:15 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:15 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577509815820; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:15 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "177", "x-rate-limit-reset": "1377066670", "x-transaction": "ea6f692ee7199c75" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/mentions_timeline.json" }, "response": { "body_quoted_printable": "[]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:15 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:15 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577530998953; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:15 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066675", "x-transaction": "26ab2153b2112031" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/application/rate_limit_status.json" }, "response": { "body_quoted_printable": "{\"rate_limit_context\":{\"access_token\":\"82301637-drQpl2FK4ZzMAeTxerDN05QWqjy=\nOwJB4VZTcTFnwj\"},\"resources\":{\"lists\":{\"/lists/subscribers\":{\"limit\":180,\"r=\nemaining\":179,\"reset\":1377066672},\"/lists/memberships\":{\"limit\":15,\"remaini=\nng\":14,\"reset\":1377066672},\"/lists/list\":{\"limit\":15,\"remaining\":14,\"reset\"=\n:1377066671},\"/lists/ownerships\":{\"limit\":15,\"remaining\":15,\"reset\":1377066=\n675},\"/lists/subscriptions\":{\"limit\":15,\"remaining\":14,\"reset\":1377066672},=\n\"/lists/members\":{\"limit\":180,\"remaining\":179,\"reset\":1377066671},\"/lists/s=\nubscribers/show\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/lists/sta=\ntuses\":{\"limit\":180,\"remaining\":179,\"reset\":1377066673},\"/lists/show\":{\"lim=\nit\":15,\"remaining\":14,\"reset\":1377066669},\"/lists/members/show\":{\"limit\":15=\n,\"remaining\":15,\"reset\":1377066675}},\"application\":{\"/application/rate_limi=\nt_status\":{\"limit\":180,\"remaining\":179,\"reset\":1377066675}},\"friendships\":{=\n\"/friendships/incoming\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/fr=\niendships/lookup\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/friendsh=\nips/outgoing\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/friendships/=\nno_retweets/ids\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/friendshi=\nps/show\":{\"limit\":180,\"remaining\":180,\"reset\":1377066675}},\"blocks\":{\"/bloc=\nks/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1377066659},\"/blocks/list\":{\"lim=\nit\":15,\"remaining\":14,\"reset\":1377066659}},\"geo\":{\"/geo/similar_places\":{\"l=\nimit\":15,\"remaining\":14,\"reset\":1377066669},\"/geo/search\":{\"limit\":15,\"rema=\nining\":15,\"reset\":1377066675},\"/geo/reverse_geocode\":{\"limit\":15,\"remaining=\n\":14,\"reset\":1377066669},\"/geo/id/:place_id\":{\"limit\":15,\"remaining\":14,\"re=\nset\":1377066669}},\"users\":{\"/users/profile_banner\":{\"limit\":180,\"remaining\"=\n:180,\"reset\":1377066675},\"/users/suggestions/:slug/members\":{\"limit\":15,\"re=\nmaining\":15,\"reset\":1377066675},\"/users/show/:id\":{\"limit\":180,\"remaining\":=\n177,\"reset\":1377066670},\"/users/suggestions\":{\"limit\":15,\"remaining\":15,\"re=\nset\":1377066675},\"/users/lookup\":{\"limit\":180,\"remaining\":178,\"reset\":13770=\n66673},\"/users/search\":{\"limit\":180,\"remaining\":180,\"reset\":1377066675},\"/u=\nsers/contributors\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/users/c=\nontributees\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/users/suggest=\nions/:slug\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675}},\"prompts\":{\"/pr=\nompts/record_event\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/prompt=\ns/suggest\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675}},\"followers\":{\"/f=\nollowers/list\":{\"limit\":15,\"remaining\":14,\"reset\":1377066668},\"/followers/i=\nds\":{\"limit\":15,\"remaining\":14,\"reset\":1377066668}},\"statuses\":{\"/statuses/=\nmentions_timeline\":{\"limit\":15,\"remaining\":14,\"reset\":1377066675},\"/statuse=\ns/show/:id\":{\"limit\":180,\"remaining\":179,\"reset\":1377066670},\"/statuses/oem=\nbed\":{\"limit\":180,\"remaining\":179,\"reset\":1377066670},\"/statuses/home_timel=\nine\":{\"limit\":15,\"remaining\":14,\"reset\":1377066671},\"/statuses/retweeters/i=\nds\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/statuses/user_timeline=\n\":{\"limit\":180,\"remaining\":180,\"reset\":1377066675},\"/statuses/retweets_of_m=\ne\":{\"limit\":15,\"remaining\":15,\"reset\":1377066675},\"/statuses/retweets/:id\":=\n{\"limit\":15,\"remaining\":15,\"reset\":1377066675}},\"help\":{\"/help/privacy\":{\"l=\nimit\":15,\"remaining\":15,\"reset\":1377066675},\"/help/tos\":{\"limit\":15,\"remain=\ning\":15,\"reset\":1377066675},\"/help/configuration\":{\"limit\":15,\"remaining\":1=\n5,\"reset\":1377066675},\"/help/languages\":{\"limit\":15,\"remaining\":15,\"reset\":=\n1377066675}},\"friends\":{\"/friends/ids\":{\"limit\":15,\"remaining\":14,\"reset\":1=\n377066669},\"/friends/list\":{\"limit\":15,\"remaining\":14,\"reset\":1377066668}},=\n\"direct_messages\":{\"/direct_messages/show\":{\"limit\":15,\"remaining\":15,\"rese=\nt\":1377066675},\"/direct_messages/sent_and_received\":{\"limit\":15,\"remaining\"=\n:15,\"reset\":1377066675},\"/direct_messages/sent\":{\"limit\":15,\"remaining\":15,=\n\"reset\":1377066675},\"/direct_messages\":{\"limit\":15,\"remaining\":14,\"reset\":1=\n377066668}},\"account\":{\"/account/verify_credentials\":{\"limit\":15,\"remaining=\n\":14,\"reset\":1377066674},\"/account/settings\":{\"limit\":15,\"remaining\":15,\"re=\nset\":1377066675}},\"favorites\":{\"/favorites/list\":{\"limit\":15,\"remaining\":14=\n,\"reset\":1377066668}},\"saved_searches\":{\"/saved_searches/destroy/:id\":{\"lim=\nit\":15,\"remaining\":15,\"reset\":1377066675},\"/saved_searches/list\":{\"limit\":1=\n5,\"remaining\":15,\"reset\":1377066675},\"/saved_searches/show/:id\":{\"limit\":15=\n,\"remaining\":15,\"reset\":1377066675}},\"search\":{\"/search/tweets\":{\"limit\":18=\n0,\"remaining\":180,\"reset\":1377066675}},\"trends\":{\"/trends/available\":{\"limi=\nt\":15,\"remaining\":15,\"reset\":1377066675},\"/trends/place\":{\"limit\":15,\"remai=\nning\":15,\"reset\":1377066675},\"/trends/closest\":{\"limit\":15,\"remaining\":15,\"=\nreset\":1377066675}}}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "4671", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:15 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:15 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577551118941; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:15 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066675", "x-transaction": "49df568107b61264" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/retweeters/ids.json?id=266367358078169089" }, "response": { "body_quoted_printable": "{\"ids\":[1360513801,1362034669,1458196202,1387371619,1183016636,188937623,11=\n56915609,1206961129,396722289,755584388,838471987,82301637,1032012109,89283=\n4280,998346594,98585322,183140821,831618858,601235246,569558338,451776898,9=\n65210341,532092216,831618858,712469083,562549745,144683557,965210341,942200=\n450,184662037,620862766,899643482,870248461,16482751,605168279,955312028,95=\n7010932,531917206,856105045,948683221,935491596,946377140,848197370,6041248=\n3,444389332,877388418,942234878,943352540,941760217,942234530,393226522,104=\n938500,940243159,527197982,794327168,913965085,938792107,547911317,54500460=\n7,937135218,932267131,936550507,559934189,832543117,297861279,911901686,532=\n505398,893340481,828583268,911730324,139532123,17916539,56933470,36912323,3=\n0592580,835617390,548741348,760957819,824311056,934584805,517135684,2928372=\n39],\"next_cursor\":0,\"next_cursor_str\":\"0\",\"previous_cursor\":0,\"previous_cur=\nsor_str\":\"0\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "913", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:15 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:15 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577571328196; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:15 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066675", "x-transaction": "f9f8e92ae0c864cf" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/retweets/266367358078169089.json" }, "response": { "body_quoted_printable": "[{\"created_at\":\"Tue Aug 13 00:28:57 +0000 2013\",\"id\":367080297436684289,\"id=\n_str\":\"367080297436684289\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering =\nour infrastructure. \\\"As usage patterns change, Twitter can remain resilie=\nnt.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_t=\no_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nu=\nll,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"i=\nd\":1360513801,\"id_str\":\"1360513801\",\"name\":\"Renan S\\u00e1tiro\",\"screen_name=\n\":\"renan_satiro\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"des=\ncription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":264,\"friends_cou=\nnt\":426,\"listed_count\":0,\"created_at\":\"Wed Apr 17 22:38:09 +0000 2013\",\"fav=\nourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"ve=\nrified\":false,\"statuses_count\":863,\"lang\":\"pt\",\"contributors_enabled\":false=\n,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_backgro=\nund_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"pro=\nfile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/=\ntheme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.p=\nng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_pro=\nfile_images\\/default_profile_3_normal.png\",\"profile_link_color\":\"0084B4\",\"p=\nrofile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\"=\n,\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default=\n_profile\":true,\"default_profile_image\":true,\"following\":null,\"follow_reques=\nt_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":n=\null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:=\n41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\"=\n:\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns chang=\ne, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",=\n\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":=\nnull,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to=\n_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"=\nscreen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your o=\nfficial source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\=\n/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRh=\ny7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.tw=\nitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false=\n,\"followers_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"creat=\ned_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":=\n-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verifie=\nd\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_=\ntranslator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1u=\nqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",=\n\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fx=\nn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/prof=\nile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sid=\nebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_=\ntext_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":=\nfalse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"con=\ntributors\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{=\n\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expand=\ned_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrast=\nructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u202=\n6\",\"indices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name=\n\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]}=\n,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"=\n},\"retweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols=\n\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engi=\nneering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display=\n_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]=\n}],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"=\nid_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twit=\nter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favo=\nrited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"cr=\neated_at\":\"Fri Jun 07 21:51:17 +0000 2013\",\"id\":343123019683733505,\"id_str\"=\n:\"343123019683733505\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our i=\nnfrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\"=\n http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_sta=\ntus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"i=\nn_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":13=\n62034669,\"id_str\":\"1362034669\",\"name\":\"\\u10e6\\u256cAMO MII JEVA\\u10e6\\u256c=\n \",\"screen_name\":\"Diime_juniOor\",\"location\":\"\",\"description\":\"(( AMO MII ES=\nTILO)) DAME BACK Y TE DEBUELVO \\u2665\\u2665 \\u25c4---- @juniOor3008 -----\\=\nu25ba RD \\u2665\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protect=\ned\":false,\"followers_count\":1452,\"friends_count\":864,\"listed_count\":14,\"cre=\nated_at\":\"Thu Apr 18 14:08:17 +0000 2013\",\"favourites_count\":41,\"utc_offset=\n\":-25200,\"time_zone\":\"Arizona\",\"geo_enabled\":false,\"verified\":false,\"status=\nes_count\":9020,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"EB1717\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000052438503\\/9b906e534=\nf7033ff72dcae6c878daf5d.jpeg\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/378800000052438503\\/9b906e534f=\n7033ff72dcae6c878daf5d.jpeg\",\"profile_background_tile\":true,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000231884212\\/c19d56eddb=\n03e537a669c7f13f995cc2_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_images\\/378800000231884212\\/c19d56eddb03e537a669c7f13f=\n995cc2_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_=\nbanners\\/1362034669\\/1370989410\",\"profile_link_color\":\"4811DE\",\"profile_sid=\nebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_=\ntext_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":=\nfalse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"con=\ntributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000=\n 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @Tw=\nitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitt=\ner can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncat=\ned\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in=\n_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_=\nname\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_n=\name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your official =\nsource for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\=\n/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",=\n\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.co=\nm\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follow=\ners_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"=\nTue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"=\ntime_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,=\n\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translat=\nor\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82=\nr9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile=\n_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9ne=\nctx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_bann=\ners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_bor=\nder_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_col=\nor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"n=\notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributor=\ns\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":=\n\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.=\nhtml\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indi=\nces\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitt=\ner Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favori=\nted\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retwe=\net_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.=\ntwitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"e=\nngineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"user=\n_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":=\n\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engi=\nneering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorited\":f=\nalse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at=\n\":\"Thu Jun 06 02:42:07 +0000 2013\",\"id\":342471436390240256,\"id_str\":\"342471=\n436390240256\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastru=\ncture. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/=\n\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":=\nnull,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_=\nto_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1458196202=\n,\"id_str\":\"1458196202\",\"name\":\"dora\",\"screen_name\":\"dora85997583\",\"location=\n\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"pr=\notected\":false,\"followers_count\":672,\"friends_count\":1086,\"listed_count\":0,=\n\"created_at\":\"Sat May 25 22:30:22 +0000 2013\",\"favourites_count\":1,\"utc_off=\nset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_c=\nount\":1764,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile=\n_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/3719980194\\/0e838a54ff82eba1e4b8642f2e08dd6d_normal.jpeg\",\"profile=\n_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3719980194\\/0e8=\n38a54ff82eba1e4b8642f2e08dd6d_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"p=\nrofile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\"=\n,\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default=\n_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_reque=\nst_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":=\nnull,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31=\n:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text=\n\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns chan=\nge, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\"=\n,\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\"=\n:null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_t=\no_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",=\n\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your =\nofficial source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:=\n\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iR=\nhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.t=\nwitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"crea=\nted_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\"=\n:-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verifi=\ned\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is=\n_translator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1=\nuqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\"=\n,\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7f=\nxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_si=\ndebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile=\n_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\"=\n:false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\"=\n:false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"co=\nntributors\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":=\n{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expan=\nded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infras=\ntructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u20=\n26\",\"indices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"nam=\ne\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]=\n},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en=\n\"},\"retweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbol=\ns\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/eng=\nineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"displa=\ny_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139=\n]}],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,=\n\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twi=\ntter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"fav=\norited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"c=\nreated_at\":\"Mon Apr 29 02:18:44 +0000 2013\",\"id\":328694811790024704,\"id_str=\n\":\"328694811790024704\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our =\ninfrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\=\n\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\=\n/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u00=\n3e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_s=\ntr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_repl=\ny_to_screen_name\":null,\"user\":{\"id\":1387371619,\"id_str\":\"1387371619\",\"name\"=\n:\"Chris\\u2122\",\"screen_name\":\"chrisskates317\",\"location\":\"Valduz,Leichstein=\n\",\"description\":\"My youtube channels are chrisskates317,chrisdoesreviews317=\n,chrisexphazed99, and ExphazedGames. Instagram is Chris_VanDermark Kik is C=\nhris_V317\",\"url\":\"http:\\/\\/t.co\\/n8lftdUUo1\",\"entities\":{\"url\":{\"urls\":[{\"u=\nrl\":\"http:\\/\\/t.co\\/n8lftdUUo1\",\"expanded_url\":\"http:\\/\\/ask.fm\\/chrisv3170=\n0\",\"display_url\":\"ask.fm\\/chrisv31700\",\"indices\":[0,22]}]},\"description\":{\"=\nurls\":[]}},\"protected\":false,\"followers_count\":93,\"friends_count\":120,\"list=\ned_count\":0,\"created_at\":\"Sun Apr 28 16:36:45 +0000 2013\",\"favourites_count=\n\":63,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":fals=\ne,\"statuses_count\":153,\"lang\":\"en\",\"contributors_enabled\":false,\"is_transla=\ntor\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.p=\nng\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.=\ncom\\/profile_images\\/3586685753\\/31264dfec8b7ad59e626af57b50a3df4_normal.jp=\neg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/358=\n6685753\\/31264dfec8b7ad59e626af57b50a3df4_normal.jpeg\",\"profile_banner_url\"=\n:\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1387371619\\/1367778474\",\"profil=\ne_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sid=\nebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_backgr=\nound_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"foll=\nowing\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"crea=\nted_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"=\n266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. =\n\\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\=\n/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"i=\nn_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user=\n_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"=\n783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco,=\n CA\",\"description\":\"Your official source for news, updates and tips from Tw=\nitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{=\n\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com=\n\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"ur=\nls\":[]}},\"protected\":false,\"followers_count\":22601490,\"friends_count\":131,\"=\nlisted_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourit=\nes_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"=\ngeo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contri=\nbutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACD=\nED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/=\nl1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_=\nnormal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ima=\nges\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"htt=\nps:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_co=\nlor\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill=\n_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_imag=\ne\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":n=\null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinat=\nes\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":212,\"favori=\nte_count\":130,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\=\n/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/=\n11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.=\ncom\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}],\"user_mentions\":[{\"scree=\nn_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"68=\n44292\",\"indices\":[3,14]}]},\"favorited\":false,\"retweeted\":false,\"possibly_se=\nnsitive\":false,\"lang\":\"en\"},\"retweet_count\":212,\"favorite_count\":0,\"entitie=\ns\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"ex=\npanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-inf=\nrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\=\nu2026\",\"indices\":[119,139]}],\"user_mentions\":[{\"screen_name\":\"twitter\",\"nam=\ne\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\"=\n:\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",=\n\"indices\":[16,27]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitiv=\ne\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Mar 30 17:55:40 +0000 2013\",\"id\":3=\n18058960919855104,\"id_str\":\"318058960919855104\",\"text\":\"RT @twitter: RT @Tw=\nitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitt=\ner can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncat=\ned\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in=\n_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_=\nname\":null,\"user\":{\"id\":1183016636,\"id_str\":\"1183016636\",\"name\":\"\\u266bAlex=\nander\\u266a\\u2122\",\"screen_name\":\"Gucci_alexRD\",\"location\":\"Los Alcarrizos\"=\n,\"description\":\"| Dios,Vida,Salud | l\\u2665basketball | Sentimiento herido =\n| #LoveGirs | |Estoy solo| soltero\\u2665 | Mus=\nic |\\nRep. Dominicana ;] T.Q.M\",\"url\":\"http:\\/\\/t.co\\/7bmJVeCjCD\",\"entities=\n\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7bmJVeCjCD\",\"expanded_url\":\"http:\\=\n/\\/www.facebook.com\\/alex.pena.3760430\",\"display_url\":\"facebook.com\\/alex.p=\nena.3760\\u2026\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":=\nfalse,\"followers_count\":320,\"friends_count\":260,\"listed_count\":0,\"created_a=\nt\":\"Fri Feb 15 15:50:00 +0000 2013\",\"favourites_count\":133,\"utc_offset\":720=\n0,\"time_zone\":\"Amsterdam\",\"geo_enabled\":false,\"verified\":false,\"statuses_co=\nunt\":7153,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"p=\nrofile_background_color\":\"B20AF5\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/378800000018454601\\/d5c6a6dc9eb73b=\n5272fd0892ff44824d.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_background_images\\/378800000018454601\\/d5c6a6dc9eb73b52=\n72fd0892ff44824d.png\",\"profile_background_tile\":true,\"profile_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_images\\/378800000103175044\\/5d5bc8db3f91d083a=\n8ec574fd90e8f1b_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_images\\/378800000103175044\\/5d5bc8db3f91d083a8ec574fd90e8f1b_=\nnormal.jpeg\",\"profile_link_color\":\"8C03DB\",\"profile_sidebar_border_color\":\"=\n000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\"=\n,\"profile_use_background_image\":true,\"default_profile\":false,\"default_profi=\nle_image\":false,\"following\":null,\"follow_request_sent\":false,\"notifications=\n\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"ret=\nweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":26636735=\n8078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering=\n our infrastructure. \\\"As usage patterns change, Twitter can remain resili=\nent.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_=\nto_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":n=\null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"=\nid\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"loca=\ntion\":\"San Francisco, CA\",\"description\":\"Your official source for news, upd=\nates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http=\n:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}=\n]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601490,=\n\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 =\n+0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific =\nTime (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":163=\n2,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_b=\nackground_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":tr=\nue,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/=\nv65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"pro=\nfile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405=\n327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",=\n\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profil=\ne_use_background_image\":true,\"default_profile\":false,\"default_profile_image=\n\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":null},=\n\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[14192329],\"retwe=\net_count\":212,\"favorite_count\":130,\"entities\":{\"hashtags\":[],\"symbols\":[],\"=\nurls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineerin=\ng.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":=\n\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}],\"us=\ner_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\"=\n:6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favorited\":false,\"retweete=\nd\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":212,\"favor=\nite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/=\n\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/1=\n1\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.c=\nom\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"user_mentions\":[{\"screen=\n_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[=\n3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":684429=\n2,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorited\":false,\"retweeted\":fal=\nse,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Mar 02 19:18:=\n21 +0000 2013\",\"id\":307932909124337664,\"id_str\":\"307932909124337664\",\"text\"=\n:\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage p=\natterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"s=\nource\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"n=\nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\"=\n:{\"id\":188937623,\"id_str\":\"188937623\",\"name\":\"Just little monster!\",\"screen=\n_name\":\"thebestgagafan\",\"location\":\"Fenda do Bikini \",\"description\":\"When l=\nife gives you Bad Romance, show everyone your Poker Face, buy a new Telepho=\nne, call Alejandro & Just Dance. Paulistano,Moreno,17 anos e amo meus amigo=\ns :p\",\"url\":\"http:\\/\\/t.co\\/6aB32lgVnu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"=\nhttp:\\/\\/t.co\\/6aB32lgVnu\",\"expanded_url\":\"http:\\/\\/ladygaga.com\",\"display_=\nurl\":\"ladygaga.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protect=\ned\":false,\"followers_count\":908,\"friends_count\":94,\"listed_count\":68,\"creat=\ned_at\":\"Thu Sep 09 23:32:32 +0000 2010\",\"favourites_count\":888,\"utc_offset\"=\n:-14400,\"time_zone\":\"Santiago\",\"geo_enabled\":true,\"verified\":false,\"statuse=\ns_count\":446922,\"lang\":\"pt\",\"contributors_enabled\":false,\"is_translator\":fa=\nlse,\"profile_background_color\":\"B2DFDA\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/594142227\\/h8cu9a4lzjaianf4d=\nadg.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pr=\nofile_background_images\\/594142227\\/h8cu9a4lzjaianf4dadg.jpeg\",\"profile_bac=\nkground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_imag=\nes\\/378800000035016877\\/b53be4c72b14491cf2236cf92c713626_normal.jpeg\",\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000035=\n016877\\/b53be4c72b14491cf2236cf92c713626_normal.jpeg\",\"profile_banner_url\":=\n\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/188937623\\/1354754960\",\"profile_=\nlink_color\":\"93A644\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sideb=\nar_fill_color\":\"FFFFFF\",\"profile_text_color\":\"333333\",\"profile_use_backgrou=\nnd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follo=\nwing\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"co=\nordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"creat=\ned_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"2=\n66367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\=\n\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/=\nuML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in=\n_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_=\nid_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"7=\n83214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, =\nCA\",\"description\":\"Your official source for news, updates and tips from Twi=\ntter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"=\nurl\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\=\n/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"url=\ns\":[]}},\"protected\":false,\"followers_count\":22601490,\"friends_count\":131,\"l=\nisted_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourite=\ns_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"g=\neo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDE=\nD6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgrou=\nnd_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l=\n1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_n=\normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_imag=\nes\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"http=\ns:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_col=\nor\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_=\ncolor\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image=\n\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":nu=\nll,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinate=\ns\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":212,\"favorit=\ne_count\":130,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/=\n\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/1=\n1\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.twitter.c=\nom\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}],\"user_mentions\":[{\"screen=\n_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"684=\n4292\",\"indices\":[3,14]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sen=\nsitive\":false,\"lang\":\"en\"},\"retweet_count\":212,\"favorite_count\":0,\"entities=\n\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"exp=\nanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infr=\nastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u=\n2026\",\"indices\":[119,139]}],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name=\n\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":=\n\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"=\nindices\":[16,27]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive=\n\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Feb 23 16:32:01 +0000 2013\",\"id\":30=\n5354334500171776,\"id_str\":\"305354334500171776\",\"text\":\"RT @twitter: RT @Twi=\ntterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitte=\nr can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitt=\ner for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":nul=\nl,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_=\nuser_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1156915609,\"i=\nd_str\":\"1156915609\",\"name\":\"Curtis Axel\",\"screen_name\":\"alexfis51577603\",\"l=\nocation\":\"EveryWhere \",\"description\":\"|18|, Fan Of Curtis Axel Follow Him @=\nRealCurtisAxel Also A Huge Member Of #TBI, Follow Me For WWE News ,#TeamFol=\nlowBack I RT & Tweet Alot !!\",\"url\":\"http:\\/\\/t.co\\/3pzcyEH4gd\",\"entities\":=\n{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3pzcyEH4gd\",\"expanded_url\":\"http:\\/\\=\n/ask.fm\\/AlexFis51577603\",\"display_url\":\"ask.fm\\/AlexFis51577603\",\"indices\"=\n:[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2=\n227,\"friends_count\":1642,\"listed_count\":0,\"created_at\":\"Thu Feb 07 11:48:37=\n +0000 2013\",\"favourites_count\":71,\"utc_offset\":null,\"time_zone\":null,\"geo_=\nenabled\":false,\"verified\":false,\"statuses_count\":24582,\"lang\":\"ar\",\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"1315=\n16\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/=\ntheme14\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_tile\":true,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000009041092\\/2=\n1b2e85dd2529e756c2a736b0c17922e_normal.jpeg\",\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/378800000009041092\\/21b2e85dd2529e756=\nc2a736b0c17922e_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\=\n/profile_banners\\/1156915609\\/1371527044\",\"profile_link_color\":\"131516\",\"pr=\nofile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",=\n\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_=\nprofile\":false,\"default_profile_image\":false,\"following\":null,\"follow_reque=\nst_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":=\nnull,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31=\n:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text=\n\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns chan=\nge, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\"=\n,\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\"=\n:null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_t=\no_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",=\n\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your =\nofficial source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:=\n\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iR=\nhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.t=\nwitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"crea=\nted_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\"=\n:-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verifi=\ned\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is=\n_translator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1=\nuqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\"=\n,\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7f=\nxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_si=\ndebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile=\n_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\"=\n:false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\"=\n:false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"co=\nntributors\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":=\n{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expan=\nded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infras=\ntructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u20=\n26\",\"indices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"nam=\ne\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]=\n},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en=\n\"},\"retweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbol=\ns\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/eng=\nineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"displa=\ny_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139=\n]}],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,=\n\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twi=\ntter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"fav=\norited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"c=\nreated_at\":\"Sat Feb 23 10:09:12 +0000 2013\",\"id\":305257994990542848,\"id_str=\n\":\"305257994990542848\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our =\ninfrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\=\n\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_st=\natus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"=\nin_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":1=\n206961129,\"id_str\":\"1206961129\",\"name\":\"AntoninoPetraroia\",\"screen_name\":\"p=\netraroia_p\",\"location\":\"\",\"description\":\"\",\"url\":null,\"entities\":{\"descript=\nion\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3,\"friends_count\":47,=\n\"listed_count\":0,\"created_at\":\"Fri Feb 22 05:48:07 +0000 2013\",\"favourites_=\ncount\":6,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":=\nfalse,\"statuses_count\":127,\"lang\":\"it\",\"contributors_enabled\":false,\"is_tra=\nnslator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_bac=\nkground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/=\nbg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/sticky\\/default_profile_images\\/default_profile_3_normal.png\",\"pro=\nfile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/sticky\\/default_profile_ima=\nges\\/default_profile_3_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_s=\nidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profil=\ne_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile=\n\":true,\"default_profile_image\":true,\"following\":null,\"follow_request_sent\":=\nfalse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"con=\ntributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000=\n 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @Tw=\nitterEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitt=\ner can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncat=\ned\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in=\n_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_=\nname\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_n=\name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your official =\nsource for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\=\n/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",=\n\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.co=\nm\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follow=\ners_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"=\nTue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"=\ntime_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,=\n\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translat=\nor\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82=\nr9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile=\n_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9ne=\nctx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_bann=\ners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_bor=\nder_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_col=\nor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"n=\notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributor=\ns\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":=\n\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.=\nhtml\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indi=\nces\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitt=\ner Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favori=\nted\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retwe=\net_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.=\ntwitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"e=\nngineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"user=\n_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":=\n\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engi=\nneering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorited\":f=\nalse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at=\n\":\"Mon Feb 04 22:56:07 +0000 2013\",\"id\":298565626501398528,\"id_str\":\"298565=\n626501398528\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastru=\ncture. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/=\n\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/blackberry.com\\/twitt=\ner\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"=\ntruncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":n=\null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_=\nscreen_name\":null,\"user\":{\"id\":396722289,\"id_str\":\"396722289\",\"name\":\"~~ArM=\naNdiTo~~ \",\"screen_name\":\"arman2lio\",\"location\":\"Laionel Ariel \",\"descripti=\non\":\"cada bebe es un milagro unico e imposible de repetir \\r (s=\nelenia)+(armando)=3DLaiOneL AriEL \\u2665\",\"url\":null,\"entities\":{\"descripti=\non\":{\"urls\":[]}},\"protected\":false,\"followers_count\":134,\"friends_count\":80=\n,\"listed_count\":0,\"created_at\":\"Sun Oct 23 17:42:44 +0000 2011\",\"favourites=\n_count\":7,\"utc_offset\":7200,\"time_zone\":\"Amsterdam\",\"geo_enabled\":false,\"ve=\nrified\":false,\"statuses_count\":13171,\"lang\":\"es\",\"contributors_enabled\":fal=\nse,\"is_translator\":false,\"profile_background_color\":\"1A1B1F\",\"profile_backg=\nround_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"p=\nrofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes=\n\\/theme9\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/378800000068900873\\/ed97908acce4c375a9bb=\n979376490bb0_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/profile_images\\/378800000068900873\\/ed97908acce4c375a9bb979376490bb0_nor=\nmal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3=\n96722289\\/1372612620\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border=\n_color\":\"181A1E\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\"=\n:\"666666\",\"profile_use_background_image\":true,\"default_profile\":false,\"defa=\nult_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"noti=\nfications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":=\nnull,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\"=\n:266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: B=\nolstering our infrastructure. \\\"As usage patterns change, Twitter can rema=\nin resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"=\nin_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_u=\nser_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,=\n\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitt=\ner\",\"location\":\"San Francisco, CA\",\"description\":\"Your official source for =\nnews, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_u=\nrl\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices=\n\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":=\n22601490,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 =\n14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":=\n\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_c=\nount\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.p=\nng\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background=\n_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/228=\n4174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.=\npng\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214=\n\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":=\n\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333=\n\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_prof=\nile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notification=\ns\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[1419232=\n9],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"hashtags\":[],\"symb=\nols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/e=\nngineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"disp=\nlay_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,1=\n26]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineer=\ning\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favorited\":false,=\n\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":2=\n12,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com=\n\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.=\ntwitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"user_mentions\":=\n[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"i=\nndices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"i=\nd\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorited\":false,\"retwe=\neted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Jan =\n12 21:17:59 +0000 2013\",\"id\":290206010734424065,\"id_str\":\"29020601073442406=\n5\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As=\n usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML=\n86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_re=\nply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_=\nstr\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":755584388,\"id_str\":\"7=\n55584388\",\"name\":\"Cristiano Ronaldo\",\"screen_name\":\"cristiano9977\",\"locatio=\nn\":\"portugal\",\"description\":\"This Privacy Policy addresses the collection a=\nnd use of personal information - http:\\/\\/t.co\\/57J2L3Dt \\r\\n\\r\\nMadrid \\u0=\n0b7 http:\\/\\/t.co\\/nTtfFr7U\",\"url\":\"https:\\/\\/t.co\\/OlSt0cyGCL\",\"entities\":=\n{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/OlSt0cyGCL\",\"expanded_url\":\"https:\\=\n/\\/twitter.com\\/\\/cristiano9977\",\"display_url\":\"twitter.com\\/\\/cristiano997=\n7\",\"indices\":[0,23]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/57J2L3=\nDt\",\"expanded_url\":\"http:\\/\\/bit.ly\\/UA4ayw\",\"display_url\":\"bit.ly\\/UA4ayw\"=\n,\"indices\":[79,99]},{\"url\":\"http:\\/\\/t.co\\/nTtfFr7U\",\"expanded_url\":\"http:\\=\n/\\/www.facebook.com\\/cristiano\",\"display_url\":\"facebook.com\\/cristiano\",\"in=\ndices\":[113,133]}]}},\"protected\":false,\"followers_count\":132,\"friends_count=\n\":536,\"listed_count\":0,\"created_at\":\"Mon Aug 13 18:12:22 +0000 2012\",\"favou=\nrites_count\":17,\"utc_offset\":3600,\"time_zone\":\"London\",\"geo_enabled\":true,\"=\nverified\":false,\"statuses_count\":1208,\"lang\":\"en\",\"contributors_enabled\":fa=\nlse,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/881668=\n446\\/31e5047a70885b83dce4b148f522b12b.jpeg\",\"profile_background_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/881668446\\/31e50=\n47a70885b83dce4b148f522b12b.jpeg\",\"profile_background_tile\":false,\"profile_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3723162408\\/063176f71cbd=\nd4e5e35bf35baf56fa99_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_images\\/3723162408\\/063176f71cbdd4e5e35bf35baf56fa99_nor=\nmal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/7=\n55584388\\/1369750958\",\"profile_link_color\":\"000CF7\",\"profile_sidebar_border=\n_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\"=\n:\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"defa=\nult_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"noti=\nfications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":=\nnull,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\"=\n:266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: B=\nolstering our infrastructure. \\\"As usage patterns change, Twitter can rema=\nin resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"=\nin_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_u=\nser_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,=\n\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitt=\ner\",\"location\":\"San Francisco, CA\",\"description\":\"Your official source for =\nnews, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_u=\nrl\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices=\n\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":=\n22601490,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 =\n14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":=\n\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_c=\nount\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.p=\nng\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background=\n_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/228=\n4174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.=\npng\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214=\n\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":=\n\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333=\n\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_prof=\nile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notification=\ns\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":[1419232=\n9],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"hashtags\":[],\"symb=\nols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/e=\nngineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"disp=\nlay_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,1=\n26]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineer=\ning\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favorited\":false,=\n\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":2=\n12,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com=\n\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.=\ntwitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"user_mentions\":=\n[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"i=\nndices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"i=\nd\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorited\":false,\"retwe=\neted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Jan =\n11 21:14:27 +0000 2013\",\"id\":289842734292926464,\"id_str\":\"28984273429292646=\n4\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructure. \\\"As=\n usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML=\n86B6s\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/politwoops.sunlightfoundation.co=\nm\\\" rel=3D\\\"nofollow\\\"\\u003epolitwoopsdev2\\u003c\\/a\\u003e\",\"truncated\":fals=\ne,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_t=\no_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":nu=\nll,\"user\":{\"id\":838471987,\"id_str\":\"838471987\",\"name\":\"Politwoops Dev Acct\"=\n,\"screen_name\":\"politwoopsdev2\",\"location\":\"\",\"description\":\"\",\"url\":\"http:=\n\\/\\/t.co\\/yUEHMqf5\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/yUEHM=\nqf5\",\"expanded_url\":\"http:\\/\\/www.example.com\",\"display_url\":\"example.com\",=\n\"indices\":[0,20]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers=\n_count\":3,\"friends_count\":1,\"listed_count\":0,\"created_at\":\"Fri Sep 21 19:54=\n:09 +0000 2012\",\"favourites_count\":0,\"utc_offset\":-10800,\"time_zone\":\"Atlan=\ntic Time (Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":9,=\n\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_bac=\nkground_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background=\n_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/26=\n34778600\\/f8e8d2631bea7d97d6e87f4a5bac73bc_normal.png\",\"profile_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2634778600\\/f8e8d2631bea7d9=\n7d6e87f4a5bac73bc_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sideba=\nr_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_tex=\nt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fal=\nse,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":fal=\nse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contri=\nbutors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 20=\n12\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT @Twitt=\nerEng: Bolstering our infrastructure. \\\"As usage patterns change, Twitter =\ncan remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\"=\n:false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_re=\nply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_nam=\ne\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name=\n\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your official sou=\nrce for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5i=\nRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"ex=\npanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",=\n\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers=\n_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue=\n Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"tim=\ne_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"st=\natuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\"=\n:false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9i=\njhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_ba=\nckground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ima=\nges\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx=\n_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border=\n_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\"=\n:\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"defa=\nult_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"noti=\nfications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":=\n[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"hashtags\":=\n[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"ht=\ntp:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.htm=\nl\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices=\n\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter =\nEngineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favorited=\n\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"retweet_=\ncount\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\"=\n:[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twi=\ntter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engi=\nneering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"user_me=\nntions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"78=\n3214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Enginee=\nring\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorited\":fals=\ne,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"=\nWed Jan 09 20:52:36 +0000 2013\",\"id\":289112458445078528,\"id_str\":\"289112458=\n445078528\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infrastructu=\nre. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\/\\/t=\n.co\\/uML86B6s\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" re=\nl=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_re=\nply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_i=\nd\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user=\n\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\"=\n:\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testin=\ng stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_u=\nrl\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fa=\nlse,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"W=\ned Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"ti=\nme_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"=\nstatuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator=\n\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.j=\npg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/173=\n3327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pr=\nofile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile=\n_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"prof=\nile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_prof=\nile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_=\nsent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":nu=\nll,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:4=\n1 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":=\n\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change=\n, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"=\ntruncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":n=\null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_=\nscreen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"s=\ncreen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your of=\nficial source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/=\n\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy=\n7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twi=\ntter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,=\n\"followers_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"create=\nd_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-=\n25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified=\n\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_t=\nranslator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uq=\ney5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"=\nprofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn=\n47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_side=\nbar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_t=\next_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":f=\nalse,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":f=\nalse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"cont=\nributors\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"=\nhashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expande=\nd_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastr=\nucture.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026=\n\",\"indices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\"=\n:\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},=\n\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}=\n,\"retweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\"=\n:[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engin=\neering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_=\nurl\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}=\n],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"i=\nd_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitt=\ner Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favor=\nited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"cre=\nated_at\":\"Sat Jan 05 14:44:39 +0000 2013\",\"id\":287570311786950657,\"id_str\":=\n\"287570311786950657\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our in=\nfrastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" =\nhttp:\\/\\/t.co\\/uML86B6s\",\"source\":\"\\u003ca href=3D\\\"https:\\/\\/twitter.com\\/=\nTheWorld_JP\\\" rel=3D\\\"nofollow\\\"\\u003eTheWorld for iOS\\u003c\\/a\\u003e\",\"tru=\nncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null=\n,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scr=\neen_name\":null,\"user\":{\"id\":1032012109,\"id_str\":\"1032012109\",\"name\":\"\\u30af=\n\\u30a4\\u30bf\\u2161\\u4e16\",\"screen_name\":\"guida_2sei\",\"location\":\"\",\"descrip=\ntion\":\"\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":5,\"friends_count\":2,\"listed_count\":0,\"created_at\":\"Mon =\nDec 24 05:34:25 +0000 2012\",\"favourites_count\":228,\"utc_offset\":null,\"time_=\nzone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":150,\"lang\"=\n:\"ja\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgroun=\nd_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/im=\nages\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\"=\n:false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/30733153=\n57\\/e1c55a6f43460bac09641ac255eb828d_normal.jpeg\",\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/3073315357\\/e1c55a6f43460bac0964=\n1ac255eb828d_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pr=\nofile_banners\\/1032012109\\/1356327612\",\"profile_link_color\":\"0084B4\",\"profi=\nle_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"pr=\nofile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_pro=\nfile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_s=\nent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null=\n,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 =\n+0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"R=\nT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, =\nTwitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"tr=\nuncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":nul=\nl,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_sc=\nreen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"scr=\neen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your offi=\ncial source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/=\nt.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7w=\nTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitt=\ner.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"f=\nollowers_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"created_=\nat\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25=\n200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":=\ntrue,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_tra=\nnslator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey=\n5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"pr=\nofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47=\nqv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sideba=\nr_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_tex=\nt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fal=\nse,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":fal=\nse,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contri=\nbutors\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"ha=\nshtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_=\nurl\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastruc=\nture.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",=\n\"indices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"=\nTwitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"f=\navorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"=\nretweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[=\n],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/enginee=\nring.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_ur=\nl\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],=\n\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_=\nstr\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter=\n Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorit=\ned\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"creat=\ned_at\":\"Fri Dec 21 12:12:54 +0000 2012\",\"id\":282096304388194304,\"id_str\":\"2=\n82096304388194304\",\"text\":\"RT @twitter: RT @TwitterEng: Bolstering our infr=\nastructure. \\\"As usage patterns change, Twitter can remain resilient.\\\" ht=\ntp:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status=\n_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_r=\neply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":89283=\n4280,\"id_str\":\"892834280\",\"name\":\"\\u03b9\\u2113\\u2113\\u03c5\\u043c\\u03b9\\u03b=\n7\\u0394\\u0442\\u0454\",\"screen_name\":\"ArfanCruise\",\"location\":\"In ur mind\",\"d=\nescription\":\"Love to cook, watchin Horror movies, listening music, reading =\nhorror story. Hate math and teacher! I also love @katyperry\",\"url\":null,\"en=\ntities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":118=\n4,\"friends_count\":1780,\"listed_count\":1,\"created_at\":\"Sat Oct 20 09:05:47 +=\n0000 2012\",\"favourites_count\":34,\"utc_offset\":-25200,\"time_zone\":\"Pacific T=\nime (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":22=\n31,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_=\nbackground_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_background_images\\/752087920\\/f3d75920fee2edd8a8d4d56407e2c4=\na9.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_background_images\\/752087920\\/f3d75920fee2edd8a8d4d56407e2c4a9.png\",\"pr=\nofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/378800000268438818\\/4dbcb81459f7d7f5dd7c4293e0ad340f_normal.jp=\neg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378=\n800000268438818\\/4dbcb81459f7d7f5dd7c4293e0ad340f_normal.jpeg\",\"profile_ban=\nner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/892834280\\/1371532016\",=\n\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"prof=\nile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use=\n_background_image\":true,\"default_profile\":false,\"default_profile_image\":fal=\nse,\"following\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\"=\n:null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status=\n\":{\"created_at\":\"Thu Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"i=\nd_str\":\"266367358078169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastr=\nucture. \\\"As usage patterns change, Twitter can remain resilient.\\\" http:\\=\n/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\"=\n:null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply=\n_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"i=\nd_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Fr=\nancisco, CA\",\"description\":\"Your official source for news, updates and tips=\n from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"=\nurls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twi=\ntter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"descripti=\non\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601490,\"friends_coun=\nt\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"=\nfavourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Ca=\nnada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\"=\n,\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_col=\nor\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_backgroun=\nd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657=\n090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47q=\nv9nectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_u=\nrl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile=\n_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_side=\nbar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_backgro=\nund_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"foll=\nowing\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":[14192329],\"retweet_count\":212=\n,\"favorite_count\":130,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com=\n\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url\":\"engineering.=\ntwitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[106,126]}],\"user_mentions\":=\n[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_=\nstr\":\"6844292\",\"indices\":[3,14]}]},\"favorited\":false,\"retweeted\":false,\"pos=\nsibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":212,\"favorite_count\":0,=\n\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86=\nB6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering=\n-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\=\n/bolste\\u2026\",\"indices\":[119,139]}],\"user_mentions\":[{\"screen_name\":\"twitt=\ner\",\"name\":\"Twitter\",\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"scre=\nen_name\":\"TwitterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6=\n844292\",\"indices\":[16,27]}]},\"favorited\":false,\"retweeted\":false,\"possibly_=\nsensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Dec 21 05:29:00 +0000 2012=\n\",\"id\":281994657473384450,\"id_str\":\"281994657473384450\",\"text\":\"RT @twitter=\n: RT @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns chang=\ne, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",=\n\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":=\nnull,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to=\n_screen_name\":null,\"user\":{\"id\":998346594,\"id_str\":\"998346594\",\"name\":\"mega=\n\",\"screen_name\":\"simegaM\",\"location\":\"Semarang\",\"description\":\"@aisahaisaa\"=\n,\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"follo=\nwers_count\":101,\"friends_count\":57,\"listed_count\":0,\"created_at\":\"Sun Dec 0=\n9 01:36:04 +0000 2012\",\"favourites_count\":11,\"utc_offset\":25200,\"time_zone\"=\n:\"Bangkok\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1952,\"lang\"=\n:\"id\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgroun=\nd_color\":\"FF6699\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/im=\nages\\/themes\\/theme11\\/bg.gif\",\"profile_background_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/images\\/themes\\/theme11\\/bg.gif\",\"profile_background_til=\ne\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3788000=\n00272495296\\/6f2ff296c16e980c858ef97465789e31_normal.jpeg\",\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000272495296\\/6f2=\nff296c16e980c858ef97465789e31_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/=\npbs.twimg.com\\/profile_banners\\/998346594\\/1376191549\",\"profile_link_color\"=\n:\"D61BE0\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_col=\nor\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_background_image\":t=\nrue,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,=\n\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":=\nnull,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu=\n Nov 08 02:31:41 +0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078=\n169089\",\"text\":\"RT @TwitterEng: Bolstering our infrastructure. \\\"As usage =\npatterns change, Twitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"=\nsource\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nul=\nl,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"nam=\ne\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"descri=\nption\":\"Your official source for news, updates and tips from Twitter, Inc.\"=\n,\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:=\n\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display=\n_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"pr=\notected\":false,\"followers_count\":22601490,\"friends_count\":131,\"listed_count=\n\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22=\n,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\"=\n:true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabl=\ned\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r=\n9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",=\n\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174=\n758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.t=\nwimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543=\n\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F=\n6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"def=\nault_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_=\nrequest_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"pl=\nace\":null,\"contributors\":[14192329],\"retweet_count\":212,\"favorite_count\":13=\n0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML=\n86B6s\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolsteri=\nng-our-infrastructure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/1=\n1\\/bolste\\u2026\",\"indices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"Twi=\ntterEng\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indi=\nces\":[3,14]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":fal=\nse,\"lang\":\"en\"},\"retweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":=\n\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.=\nhtml\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indi=\nces\":[119,139]}],\"user_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\"=\n,\"id\":783214,\"id_str\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng=\n\",\"name\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[1=\n6,27]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"la=\nng\":\"en\"},{\"created_at\":\"Sat Dec 15 08:32:12 +0000 2012\",\"id\":2798664350717=\n87008,\"id_str\":\"279866435071787008\",\"text\":\"RT @twitter: RT @TwitterEng: Bo=\nlstering our infrastructure. \\\"As usage patterns change, Twitter can remai=\nn resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"truncated\":false,\"i=\nn_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_us=\ner_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"=\nuser\":{\"id\":98585322,\"id_str\":\"98585322\",\"name\":\"Victor Anindia\",\"screen_na=\nme\":\"victoranindia\",\"location\":\"\",\"description\":\"BUY MY NEW SINGLE 'APPLAUS=\nE' AND PRE-ORDER MY ALBUM 'ARTPOP' HERE NOW! http:\\/\\/t.co\\/POGU8VGPEd\",\"ur=\nl\":\"http:\\/\\/t.co\\/POGU8VGPEd\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/POGU8VGPEd\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Applause\",\"display_=\nurl\":\"smarturl.it\\/Applause\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"u=\nrl\":\"http:\\/\\/t.co\\/POGU8VGPEd\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Appla=\nuse\",\"display_url\":\"smarturl.it\\/Applause\",\"indices\":[71,93]}]}},\"protected=\n\":false,\"followers_count\":18742,\"friends_count\":1007,\"listed_count\":5,\"crea=\nted_at\":\"Tue Dec 22 08:18:50 +0000 2009\",\"favourites_count\":6,\"utc_offset\":=\n-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verifie=\nd\":false,\"statuses_count\":82336,\"lang\":\"en\",\"contributors_enabled\":false,\"i=\ns_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000050=\n570194\\/67d7b14cc5dcd55af27d4a0cd7730bae.jpeg\",\"profile_background_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3788000000505=\n70194\\/67d7b14cc5dcd55af27d4a0cd7730bae.jpeg\",\"profile_background_tile\":tru=\ne,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3788000003105=\n37392\\/4841b35fc7fab478b1d40e0e0494c456_normal.jpeg\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000310537392\\/4841b35fc=\n7fab478b1d40e0e0494c456_normal.jpeg\",\"profile_link_color\":\"0084B4\",\"profile=\n_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"99CC33\",\"prof=\nile_text_color\":\"3E4415\",\"profile_use_background_image\":true,\"default_profi=\nle\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_se=\nnt\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,=\n\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Nov 08 02:31:41 +=\n0000 2012\",\"id\":266367358078169089,\"id_str\":\"266367358078169089\",\"text\":\"RT=\n @TwitterEng: Bolstering our infrastructure. \\\"As usage patterns change, T=\nwitter can remain resilient.\\\" http:\\/\\/t.co\\/uML86B6s\",\"source\":\"web\",\"tru=\nncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null=\n,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scr=\neen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"scre=\nen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your offic=\nial source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t=\n.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wT=\ngu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitte=\nr.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fo=\nllowers_count\":22601490,\"friends_count\":131,\"listed_count\":79291,\"created_a=\nt\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-252=\n00,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":t=\nrue,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_tran=\nslator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image=\n_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5=\nsy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twim=\ng.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"pro=\nfile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47q=\nv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_=\nbanners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar=\n_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text=\n_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fals=\ne,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":fals=\ne,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contrib=\nutors\":[14192329],\"retweet_count\":212,\"favorite_count\":130,\"entities\":{\"has=\nhtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_u=\nrl\":\"http:\\/\\/engineering.twitter.com\\/2012\\/11\\/bolstering-our-infrastruct=\nure.html\",\"display_url\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"=\nindices\":[106,126]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"T=\nwitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"fa=\nvorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"r=\netweet_count\":212,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[]=\n,\"urls\":[{\"url\":\"http:\\/\\/t.co\\/uML86B6s\",\"expanded_url\":\"http:\\/\\/engineer=\ning.twitter.com\\/2012\\/11\\/bolstering-our-infrastructure.html\",\"display_url=\n\":\"engineering.twitter.com\\/2012\\/11\\/bolste\\u2026\",\"indices\":[119,139]}],\"=\nuser_mentions\":[{\"screen_name\":\"twitter\",\"name\":\"Twitter\",\"id\":783214,\"id_s=\ntr\":\"783214\",\"indices\":[3,11]},{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter =\nEngineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[16,27]}]},\"favorite=\nd\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "86285", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:16 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:15 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577596363429; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:16 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066675", "x-transaction": "a2cff0de723dfeee" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/retweets_of_me.json" }, "response": { "body_quoted_printable": "[]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:16 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:16 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577683916896; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:16 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066676", "x-transaction": "c62adb47ad222adf" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/saved_searches/create.json?query=test" }, "response": { "body_quoted_printable": "{\"id_str\":\"296198941\",\"position\":null,\"created_at\":\"Wed Aug 21 06:16:17 +00=\n00 2013\",\"id\":296198941,\"query\":\"test\",\"name\":\"test\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "128", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:17 GMT", "etag": "\"7bbb975797cc01374bfa36e4f4d67ed0\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:17 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:17 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCLA3hJ9AAToHaWQiJTRiMGJiNzFlYjQ5NTI2%250AZDQzYzRiZTY5YzdhYzdmZTQxOgxjc3JmX2lkIiViOGNmY2EzMjJmZWQ5NmMx%250AZDBiMDZhODdiNWFiODFlNQ%253D%253D--b0d0ff179851e43683da0fc0111bbef035299a15; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706577704914084; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:17 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "b34c0be51a66c9e0d4789cd3a44f984b265b1306", "x-runtime": "0.20190", "x-transaction": "07693958155e950f", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/saved_searches/list.json" }, "response": { "body_quoted_printable": "[{\"id_str\":\"296198941\",\"position\":null,\"created_at\":\"Wed Aug 21 06:16:17 +0=\n000 2013\",\"id\":296198941,\"query\":\"test\",\"name\":\"test\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "130", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:17 GMT", "etag": "\"27f585f50bffb66e049da331673c0c7d\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:17 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:17 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCFQ5hJ9AAToHaWQiJWE3YmM5OGU3MWYyNzgw%250AODBhZWE5NGQxMDEzZjdlY2U4--c8f957df1d0da27872619e0091e86f51a636fe3a; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706577747382229; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:17 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "010e4c1e7531c83c17d628544421cd830632275e", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066677", "x-runtime": "0.02249", "x-transaction": "a22bc145e6bc205f", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/saved_searches/show/296198941.json" }, "response": { "body_quoted_printable": "{\"id_str\":\"296198941\",\"position\":null,\"created_at\":\"Wed Aug 21 06:16:17 +00=\n00 2013\",\"id\":296198941,\"query\":\"test\",\"name\":\"test\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "128", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:17 GMT", "etag": "\"7bbb975797cc01374bfa36e4f4d67ed0\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:17 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:17 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCFM6hJ9AAToHaWQiJTQ0OGI0NTU1OGYyOTlk%250ANGExNTYxZjRhMGQyMGI3YjI0--36ea9d5576d8be48fb7006d20899b161c67bffcb; domain=.twitter.com; path=/; HttpOnly, guest_id=v1%3A137706577769432625; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:17 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "8488d93c855725544f8fb33c23ce462c4ea243bf", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066677", "x-runtime": "0.02094", "x-transaction": "fac4e1dfb1f8b980", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef1147bb79778", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/saved_searches/destroy/296198941.json" }, "response": { "body_quoted_printable": "{\"id_str\":\"296198941\",\"position\":null,\"created_at\":\"Wed Aug 21 06:16:17 +00=\n00 2013\",\"id\":296198941,\"query\":\"test\",\"name\":\"test\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "128", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:18 GMT", "etag": "\"7bbb975797cc01374bfa36e4f4d67ed0\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:17 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:17 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCCo7hJ9AAToHaWQiJWVkZWMwODgxOGEwMDA0%250ANTdlOTMzOGU5YzQxNjE0OTg1Ogxjc3JmX2lkIiU2ZDVmYWY5ZTRkOGUyMjhj%250ANGE4YmViMjVkNDEyOTUwMw%253D%253D--648af08b8fc00c9ac34ff93e2cd3875d08ffc8f2; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706577794148888; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:18 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "06ecf117f80a400ee5f6576f46f42da1fbc65b94", "x-runtime": "0.16319", "x-transaction": "9823da843a8b4870", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/search/tweets.json?q=tweepy" }, "response": { "body_quoted_printable": "{\"statuses\":[{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"en\"},=\n\"created_at\":\"Wed Aug 21 05:07:01 +0000 2013\",\"id\":370049377324122112,\"id_s=\ntr\":\"370049377324122112\",\"text\":\"That's right, instead of going the tweepy =\nroute, I reversed it. Now when I tweet, it goes to IRC, then goes to anothe=\nr term and runs.\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.tweetdeck.com\\\" r=\nel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_repl=\ny_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\"=\n:null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":=\n{\"id\":599794128,\"id_str\":\"599794128\",\"name\":\"\\u250c\\u2229\\u2510(\\u25e3_\\u25=\ne2)\\u250c\\u2229\\u2510 \\u261c(\\uff9f\\u30ee\\uff9f\\u261c)\",\"screen_name\":\"Hamm=\nurabisCode\",\"location\":\"7.984308,98.330788\",\"description\":\"\\u250c( \\u0ca0_\\=\nu0ca0)\\u2518 =\n \\r\\n\\r\\n \\u2588\\u2584\\=\nu2584 \\u2588\\u2588\\u2588 \\u2588\\u2584\\u2584 \\u2588\\u2584\\u2588\\u2584\\u2588 =\n\\u2588\\u2584\\u2588 \\u2580\\u2588\\u2580\",\"url\":\"http:\\/\\/t.co\\/gbjlpamM6m\",\"e=\nntities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/gbjlpamM6m\",\"expanded_url\":=\n\"http:\\/\\/youtu.be\\/aqDu47GbQWk\",\"display_url\":\"youtu.be\\/aqDu47GbQWk\",\"ind=\nices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_cou=\nnt\":668,\"friends_count\":202,\"listed_count\":20,\"created_at\":\"Tue Jun 05 01:1=\n9:46 +0000 2012\",\"favourites_count\":969,\"utc_offset\":-21600,\"time_zone\":\"Mo=\nuntain Time (US & Canada)\",\"geo_enabled\":false,\"verified\":false,\"statuses_c=\nount\":9431,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_background_images\\/572374915\\/d5v3k0w80wi6hlah0ugt.j=\npeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_background_images\\/572374915\\/d5v3k0w80wi6hlah0ugt.jpeg\",\"profile_backgrou=\nnd_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3=\n78800000311013070\\/ef92f8d84cebeec3f9af1c6116ff8ba3_normal.png\",\"profile_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000311013070=\n\\/ef92f8d84cebeec3f9af1c6116ff8ba3_normal.png\",\"profile_banner_url\":\"https:=\n\\/\\/pbs.twimg.com\\/profile_banners\\/599794128\\/1349519784\",\"profile_link_co=\nlor\":\"0099FF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill=\n_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_imag=\ne\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":f=\nalse,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordin=\nates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_cou=\nnt\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},=\n\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"result_type\"=\n:\"recent\",\"iso_language_code\":\"en\"},\"created_at\":\"Wed Aug 21 05:03:57 +0000=\n 2013\",\"id\":370048605039497216,\"id_str\":\"370048605039497216\",\"text\":\"RT @Do=\nmoJackson__: Getting tweepy. *yarns*\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/t=\nwitter.com\\/download\\/android\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Android=\n\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_t=\no_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":=\nnull,\"in_reply_to_screen_name\":null,\"user\":{\"id\":383899539,\"id_str\":\"383899=\n539\",\"name\":\"\\u2665 BrinaBrina \\u2665 \",\"screen_name\":\"Beyond_BeautyXo\",\"lo=\ncation\":\"Milwaukee,WI\",\"description\":\"\\u2665\\u266118. & On My Way To Succes=\ns\\u2665\\u2661\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected=\n\":false,\"followers_count\":930,\"friends_count\":991,\"listed_count\":0,\"created=\n_at\":\"Sun Oct 02 18:23:23 +0000 2011\",\"favourites_count\":119,\"utc_offset\":-=\n21600,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":true,\"verifie=\nd\":false,\"statuses_count\":15161,\"lang\":\"en\",\"contributors_enabled\":false,\"i=\ns_translator\":false,\"profile_background_color\":\"FF6699\",\"profile_background=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/562734901\\/B=\ne_Beautiful.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_background_images\\/562734901\\/Be_Beautiful.png\",\"profile_backg=\nround_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_image=\ns\\/378800000324634089\\/bf47515448a8cec3359247f1f581350e_normal.jpeg\",\"profi=\nle_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3788000003246=\n34089\\/bf47515448a8cec3359247f1f581350e_normal.jpeg\",\"profile_banner_url\":\"=\nhttps:\\/\\/pbs.twimg.com\\/profile_banners\\/383899539\\/1376935349\",\"profile_l=\nink_color\":\"B40B43\",\"profile_sidebar_border_color\":\"CC3366\",\"profile_sideba=\nr_fill_color\":\"E5507E\",\"profile_text_color\":\"362720\",\"profile_use_backgroun=\nd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follow=\ning\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"c=\noordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"meta=\ndata\":{\"result_type\":\"recent\",\"iso_language_code\":\"en\"},\"created_at\":\"Wed A=\nug 21 05:03:06 +0000 2013\",\"id\":370048392228904960,\"id_str\":\"37004839222890=\n4960\",\"text\":\"Getting tweepy. *yarns*\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/=\ntwitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\=\nu003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to=\n_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":n=\null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":228056570,\"id_str\":\"2280565=\n70\",\"name\":\"_HumblyCocky_\",\"screen_name\":\"DomoJackson__\",\"location\":\"\",\"des=\ncription\":\"Jackson 6\",\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"pr=\notected\":false,\"followers_count\":1988,\"friends_count\":829,\"listed_count\":2,=\n\"created_at\":\"Sat Dec 18 15:54:35 +0000 2010\",\"favourites_count\":159,\"utc_o=\nffset\":-21600,\"time_zone\":\"Mountain Time (US & Canada)\",\"geo_enabled\":true,=\n\"verified\":false,\"statuses_count\":13802,\"lang\":\"en\",\"contributors_enabled\":=\nfalse,\"is_translator\":false,\"profile_background_color\":\"131516\",\"profile_ba=\nckground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/3779=\n61928\\/daddy.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/377961928\\/daddy.jpg\",\"profile_background_=\ntile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378=\n800000324762674\\/d305bd7e1432f826227626568fdbf573_normal.jpeg\",\"profile_ima=\nge_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000324762674\\=\n/d305bd7e1432f826227626568fdbf573_normal.jpeg\",\"profile_banner_url\":\"https:=\n\\/\\/pbs.twimg.com\\/profile_banners\\/228056570\\/1375100126\",\"profile_link_co=\nlor\":\"E6098E\",\"profile_sidebar_border_color\":\"140214\",\"profile_sidebar_fill=\n_color\":\"080008\",\"profile_text_color\":\"27D62C\",\"profile_use_background_imag=\ne\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":f=\nalse,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordin=\nates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1,\"favorite_cou=\nnt\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},=\n\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":1,\"favorit=\ne_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\"=\n:[{\"screen_name\":\"DomoJackson__\",\"name\":\"_HumblyCocky_\",\"id\":228056570,\"id_=\nstr\":\"228056570\",\"indices\":[3,17]}]},\"favorited\":false,\"retweeted\":false,\"l=\nang\":\"en\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"en\"},\"c=\nreated_at\":\"Wed Aug 21 05:03:06 +0000 2013\",\"id\":370048392228904960,\"id_str=\n\":\"370048392228904960\",\"text\":\"Getting tweepy. *yarns*\",\"source\":\"\\u003ca h=\nref=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTw=\nitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":=\nnull,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_=\nto_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":228056570,=\n\"id_str\":\"228056570\",\"name\":\"_HumblyCocky_\",\"screen_name\":\"DomoJackson__\",\"=\nlocation\":\"\",\"description\":\"Jackson 6\",\"url\":null,\"entities\":{\"description\"=\n:{\"urls\":[]}},\"protected\":false,\"followers_count\":1988,\"friends_count\":829,=\n\"listed_count\":2,\"created_at\":\"Sat Dec 18 15:54:35 +0000 2010\",\"favourites_=\ncount\":159,\"utc_offset\":-21600,\"time_zone\":\"Mountain Time (US & Canada)\",\"g=\neo_enabled\":true,\"verified\":false,\"statuses_count\":13802,\"lang\":\"en\",\"contr=\nibutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"13=\n1516\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgr=\nound_images\\/377961928\\/daddy.jpg\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/377961928\\/daddy.jpg\",\"pr=\nofile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pr=\nofile_images\\/378800000324762674\\/d305bd7e1432f826227626568fdbf573_normal.j=\npeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/37=\n8800000324762674\\/d305bd7e1432f826227626568fdbf573_normal.jpeg\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/228056570\\/1375100126\"=\n,\"profile_link_color\":\"E6098E\",\"profile_sidebar_border_color\":\"140214\",\"pro=\nfile_sidebar_fill_color\":\"080008\",\"profile_text_color\":\"27D62C\",\"profile_us=\ne_background_image\":true,\"default_profile\":false,\"default_profile_image\":fa=\nlse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"us=\ner_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"metadat=\na\":{\"result_type\":\"recent\",\"iso_language_code\":\"en\"},\"created_at\":\"Wed Aug =\n21 04:21:54 +0000 2013\",\"id\":370038021875175424,\"id_str\":\"37003802187517542=\n4\",\"text\":\"@tyabblemons @geehall1 twit api access via #tweepy https:\\/\\/t.c=\no\\/niUPCKkA1l & https:\\/\\/t.co\\/TchT9qux85\",\"source\":\"\\u003ca href=3D\\\"=\nhttp:\\/\\/seldomlogical.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eseldomlogical_twi\\u0=\n03c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":22591668,\"in_reply_to_user_id_str\"=\n:\"22591668\",\"in_reply_to_screen_name\":\"tyabblemons\",\"user\":{\"id\":272242439,=\n\"id_str\":\"272242439\",\"name\":\"Peter Renshaw\",\"screen_name\":\"peterrenshaw\",\"l=\nocation\":\"melbourne, australia\",\"description\":\"Another Scrappy Startup \\u2=\n62e \\u2665 \\u266c \\u2328 \\u2f9b\",\"url\":\"http:\\/\\/t.co\\/zKWcME2WbU\",\"entitie=\ns\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/zKWcME2WbU\",\"expanded_url\":\"http:=\n\\/\\/seldomlogical.com\",\"display_url\":\"seldomlogical.com\",\"indices\":[0,22]}]=\n},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":298,\"frien=\nds_count\":764,\"listed_count\":9,\"created_at\":\"Sat Mar 26 03:38:36 +0000 2011=\n\",\"favourites_count\":9764,\"utc_offset\":36000,\"time_zone\":\"Melbourne\",\"geo_e=\nnabled\":false,\"verified\":false,\"statuses_count\":5949,\"lang\":\"en\",\"contribut=\nors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"444A40=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background=\n_images\\/858821633\\/39260102965cc5ef5eefb22e505538e9.jpeg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/8=\n58821633\\/39260102965cc5ef5eefb22e505538e9.jpeg\",\"profile_background_tile\":=\nfalse,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/128739165=\n5\\/neek_48_normal_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twim=\ng.com\\/profile_images\\/1287391655\\/neek_48_normal_normal.jpg\",\"profile_bann=\ner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/272242439\\/1350447645\",\"=\nprofile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profi=\nle_sidebar_fill_color\":\"81CFEB\",\"profile_text_color\":\"333333\",\"profile_use_=\nbackground_image\":true,\"default_profile\":false,\"default_profile_image\":fals=\ne,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo=\n\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":=\n0,\"favorite_count\":1,\"entities\":{\"hashtags\":[{\"text\":\"tweepy\",\"indices\":[43=\n,50]}],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/niUPCKkA1l\",\"expanded_u=\nrl\":\"https:\\/\\/github.com\\/peterrenshaw\\/tw\",\"display_url\":\"github.com\\/pet=\nerrenshaw\\/tw\",\"indices\":[51,74]},{\"url\":\"https:\\/\\/t.co\\/TchT9qux85\",\"expa=\nnded_url\":\"https:\\/\\/github.com\\/peterrenshaw\\/tw\\/blob\\/master\\/tw.py\",\"di=\nsplay_url\":\"github.com\\/peterrenshaw\\/t\\u2026\",\"indices\":[81,104]}],\"user_m=\nentions\":[{\"screen_name\":\"tyabblemons\",\"name\":\"Brad Lemon\",\"id\":22591668,\"i=\nd_str\":\"22591668\",\"indices\":[0,12]},{\"screen_name\":\"geehall1\",\"name\":\"Georg=\ne Hall\",\"id\":18924074,\"id_str\":\"18924074\",\"indices\":[13,22]}]},\"favorited\":=\nfalse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"metadata\"=\n:{\"result_type\":\"recent\",\"iso_language_code\":\"en\"},\"created_at\":\"Wed Aug 21=\n 02:58:02 +0000 2013\",\"id\":370016918826397696,\"id_str\":\"370016918826397696\"=\n,\"text\":\"Me tweepy \\ud83d\\ude34\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitte=\nr.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\=\n/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_statu=\ns_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"i=\nn_reply_to_screen_name\":null,\"user\":{\"id\":459878721,\"id_str\":\"459878721\",\"n=\name\":\"\\u26a1Joseph Ells\\u2122\\u26a1\",\"screen_name\":\"JoFreshNSoClean\",\"locat=\nion\":\"Wildcat Nation\",\"description\":\"| Clear Eyes | Full Hearts | Can't Los=\ne | #BlueBlooded #MIA #WayOfWade @NicoleWycoff\",\"url\":null,\"entities\":{\"des=\ncription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":358,\"friends_cou=\nnt\":295,\"listed_count\":0,\"created_at\":\"Tue Jan 10 04:34:31 +0000 2012\",\"fav=\nourites_count\":414,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Cana=\nda)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":5408,\"lang\":\"en\",=\n\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_colo=\nr\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nbackground_images\\/589753971\\/rrzqg34wklohd0ij5166.jpeg\",\"profile_backgroun=\nd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/589=\n753971\\/rrzqg34wklohd0ij5166.jpeg\",\"profile_background_tile\":false,\"profile=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000263027058\\/c68=\n519350e2e589165cf19308481ddef_normal.jpeg\",\"profile_image_url_https\":\"https=\n:\\/\\/si0.twimg.com\\/profile_images\\/378800000263027058\\/c68519350e2e589165c=\nf19308481ddef_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/p=\nrofile_banners\\/459878721\\/1376802065\",\"profile_link_color\":\"009999\",\"profi=\nle_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"EFEFEF\",\"pr=\nofile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_pro=\nfile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request=\n_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":n=\null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"h=\nashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"r=\netweeted\":false,\"lang\":\"en\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_langu=\nage_code\":\"in\"},\"created_at\":\"Wed Aug 21 02:16:21 +0000 2013\",\"id\":37000642=\n9416976384,\"id_str\":\"370006429416976384\",\"text\":\"Assalamu'alaikum. Morning,=\n Tweepy! ALLAH BLESS YOU!!! O:)\",\"source\":\"web\",\"truncated\":false,\"in_reply=\n_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":=\nnull,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{=\n\"id\":864374672,\"id_str\":\"864374672\",\"name\":\"Iqbal Kusaga\",\"screen_name\":\"iq=\nbal_kusaga\",\"location\":\"Radiator Spring\",\"description\":\"\\u25cf Musician \\u2=\n5cf Magician \\u25cf Hypnosis \\u25cf Mawlanians Cikampek \\u25cf \\u2665 Denna=\n Delani #04 \\u2665 \\u25cf\",\"url\":\"http:\\/\\/t.co\\/QDiT449fhZ\",\"entities\":{\"u=\nrl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/QDiT449fhZ\",\"expanded_url\":\"http:\\/\\/ww=\nw.facebook.com\\/iqbalkusaga3\",\"display_url\":\"facebook.com\\/iqbalkusaga3\",\"i=\nndices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_c=\nount\":1562,\"friends_count\":63,\"listed_count\":1,\"created_at\":\"Sat Oct 06 08:=\n52:50 +0000 2012\",\"favourites_count\":20,\"utc_offset\":25200,\"time_zone\":\"Jak=\narta\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":12124,\"lang\":\"en=\n\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_co=\nlor\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_background_images\\/827598932\\/6434cd4c120c2af3563a5982a00e4f6d.png\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/827598932\\/6434cd4c120c2af3563a5982a00e4f6d.png\",\"profile_backgro=\nund_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\=\n/378800000003844340\\/8d1ecddd06bc40acc92b4d1a3203db47_normal.jpeg\",\"profile=\n_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000003844=\n340\\/8d1ecddd06bc40acc92b4d1a3203db47_normal.jpeg\",\"profile_banner_url\":\"ht=\ntps:\\/\\/pbs.twimg.com\\/profile_banners\\/864374672\\/1364529846\",\"profile_lin=\nk_color\":\"064D25\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_=\nfill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_=\nimage\":true,\"default_profile\":false,\"default_profile_image\":false,\"followin=\ng\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coo=\nrdinates\":null,\"place\":{\"id\":\"6332190d121cef7f\",\"url\":\"https:\\/\\/api.twitte=\nr.com\\/1.1\\/geo\\/id\\/6332190d121cef7f.json\",\"place_type\":\"city\",\"name\":\"Cik=\nampek\",\"full_name\":\"Cikampek, Karawang\",\"country_code\":\"ID\",\"country\":\"Indo=\nnesia\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[107.384175,-6.4343=\n27],[107.530985,-6.434327],[107.530985,-6.313772999999999],[107.384175,-6.3=\n13772999999999]]]},\"attributes\":{}},\"contributors\":null,\"retweet_count\":0,\"=\nfavorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_me=\nntions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},{\"metadata\":{\"=\nresult_type\":\"recent\",\"iso_language_code\":\"in\"},\"created_at\":\"Wed Aug 21 00=\n:08:19 +0000 2013\",\"id\":369974205585960960,\"id_str\":\"369974205585960960\",\"t=\next\":\"pagi dunia pagi tweepy pagi yang di spn\",\"source\":\"\\u003ca href=3D\\\"h=\nttp:\\/\\/www.snaptwit.com\\\" rel=3D\\\"nofollow\\\"\\u003eSnaptwit\\u003c\\/a\\u003e\"=\n,\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\"=\n:null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_t=\no_screen_name\":null,\"user\":{\"id\":232137952,\"id_str\":\"232137952\",\"name\":\"\\u2=\n740 N U LU R \\u2740\",\"screen_name\":\"nurulnulur\",\"location\":\"Metro,Lampung\",=\n\"description\":\"#TELADAN2001 #SPANSA2007 #SMANTRI2010 @cos0_ipa1 @sman3metro=\n | #FKIPFISIKA2013 Universitas Lampung | #NP2012 #HACHIGO @paanduu58 |\",\"ur=\nl\":\"http:\\/\\/t.co\\/3hXcAbzUpk\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3hXcAbzUpk\",\"expanded_url\":\"http:\\/\\/www.writelonger.com\\/user\\/paand=\nuu58\",\"display_url\":\"writelonger.com\\/user\\/paanduu58\",\"indices\":[0,22]}]},=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1021,\"friend=\ns_count\":886,\"listed_count\":1,\"created_at\":\"Thu Dec 30 10:06:48 +0000 2010\"=\n,\"favourites_count\":107,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabl=\ned\":true,\"verified\":false,\"statuses_count\":21432,\"lang\":\"en\",\"contributors_=\nenabled\":false,\"is_translator\":false,\"profile_background_color\":\"C283DB\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/378800000036366481\\/6b87ebb1a7efd56686652dad10779365.jpeg\",\"profile_ba=\nckground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_imag=\nes\\/378800000036366481\\/6b87ebb1a7efd56686652dad10779365.jpeg\",\"profile_bac=\nkground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_imag=\nes\\/378800000320935362\\/7a98a9185ae586d29a032e4c18f9a57e_normal.jpeg\",\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000320=\n935362\\/7a98a9185ae586d29a032e4c18f9a57e_normal.jpeg\",\"profile_banner_url\":=\n\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/232137952\\/1371166553\",\"profile_=\nlink_color\":\"9250D1\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sideb=\nar_fill_color\":\"E8DCF5\",\"profile_text_color\":\"9749D6\",\"profile_use_backgrou=\nnd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follo=\nwing\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"=\ncoordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favor=\nite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mention=\ns\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"},{\"metadata\":{\"resul=\nt_type\":\"recent\",\"iso_language_code\":\"en\"},\"created_at\":\"Tue Aug 20 20:16:5=\n2 +0000 2013\",\"id\":369915959705751552,\"id_str\":\"369915959705751552\",\"text\":=\n\"hello from tweepy\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.codercreeds.com=\n\\/\\\" rel=3D\\\"nofollow\\\"\\u003eubuntu_touch_tweet app\\u003c\\/a\\u003e\",\"trunca=\nted\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"i=\nn_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen=\n_name\":null,\"user\":{\"id\":620094267,\"id_str\":\"620094267\",\"name\":\"skyitachi\",=\n\"screen_name\":\"skyitachi\",\"location\":\"\",\"description\":\"\\u95f2\\u7684\\u5b9e\\u=\n5728\\u662f\\u86cb\\u75bc\\uff0c\\u5c31\\u6765\\u8fd9\\u4e86\",\"url\":\"http:\\/\\/t.co\\=\n/xO8owX7PfC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/xO8owX7PfC\",=\n\"expanded_url\":\"http:\\/\\/about.me\\/skbysp\",\"display_url\":\"about.me\\/skbysp\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":4,\"friends_count\":68,\"listed_count\":2,\"created_at\":\"Wed Jun 27 13:=\n53:49 +0000 2012\",\"favourites_count\":2,\"utc_offset\":null,\"time_zone\":null,\"=\ngeo_enabled\":false,\"verified\":false,\"statuses_count\":11,\"lang\":\"zh-cn\",\"con=\ntributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"=\nC0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/them=\nes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"pr=\nofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2345960527\\/img_no=\nrmal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_image=\ns\\/2345960527\\/img_normal.png\",\"profile_link_color\":\"0084B4\",\"profile_sideb=\nar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_te=\nxt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":tr=\nue,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":fa=\nlse,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"cont=\nributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":=\n[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\"=\n:false,\"lang\":\"en\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\"=\n:\"en\"},\"created_at\":\"Tue Aug 20 18:48:39 +0000 2013\",\"id\":36989376271496396=\n8,\"id_str\":\"369893762714963968\",\"text\":\"tweepy\",\"source\":\"\\u003ca href=3D\\\"=\nhttp:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter fo=\nr iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in=\n_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_=\nid_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":229665158,\"id_str\"=\n:\"229665158\",\"name\":\"E\",\"screen_name\":\"Erinyalungs\",\"location\":\"\",\"descript=\nion\":\"ARTIVIST. IG: @_3rddegree\",\"url\":null,\"entities\":{\"description\":{\"url=\ns\":[]}},\"protected\":false,\"followers_count\":960,\"friends_count\":256,\"listed=\n_count\":2,\"created_at\":\"Thu Dec 23 00:44:22 +0000 2010\",\"favourites_count\":=\n226,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabl=\ned\":true,\"verified\":false,\"statuses_count\":43085,\"lang\":\"en\",\"contributors_=\nenabled\":false,\"is_translator\":false,\"profile_background_color\":\"FCFCFC\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/640518245\\/2v0fgm2hrl9qd1me8lqw.jpeg\",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/640518245\\/2v0fgm=\n2hrl9qd1me8lqw.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/378800000145049818\\/ce81f773036c192c43=\n436a3c81944cfe_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_images\\/378800000145049818\\/ce81f773036c192c43436a3c81944cfe_n=\normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\=\n/229665158\\/1366957324\",\"profile_link_color\":\"F26174\",\"profile_sidebar_bord=\ner_color\":\"000203\",\"profile_sidebar_fill_color\":\"F5F5F5\",\"profile_text_colo=\nr\":\"050305\",\"profile_use_background_image\":true,\"default_profile\":false,\"de=\nfault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"n=\notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributo=\nrs\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"sy=\nmbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false=\n,\"lang\":\"en\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"in\"}=\n,\"created_at\":\"Tue Aug 20 16:39:06 +0000 2013\",\"id\":369861158934945792,\"id_=\nstr\":\"369861158934945792\",\"text\":\"RT @HafiidSeptian: Haha open sesi curhat =\n:D RT @anggiefaaa: Wahh tweeps setia nih :\\\"D \\\"@HafiidSeptian: Yukmari :D =\nRT anggiefaaa: Test. Mau \\u2026\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.wr=\nitelonger.com\\\" rel=3D\\\"nofollow\\\"\\u003eWrite Longer\\u003c\\/a\\u003e\",\"trunc=\nated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"=\nin_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scree=\nn_name\":null,\"user\":{\"id\":268873966,\"id_str\":\"268873966\",\"name\":\"\\u264d epa=\naaww \\u2658\",\"screen_name\":\"anggiefaaa\",\"location\":\"South Jekardah\",\"descri=\nption\":\"Only and just @zaulmujahidin nothing else, just him #RH13\\u2665\",\"u=\nrl\":\"http:\\/\\/t.co\\/CXTrQQphJK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\=\n/t.co\\/CXTrQQphJK\",\"expanded_url\":\"http:\\/\\/facebook.com\\/herifreakz\\/\",\"di=\nsplay_url\":\"facebook.com\\/herifreakz\\/\",\"indices\":[0,22]}]},\"description\":{=\n\"urls\":[]}},\"protected\":false,\"followers_count\":2142,\"friends_count\":1215,\"=\nlisted_count\":6,\"created_at\":\"Sat Mar 19 17:00:39 +0000 2011\",\"favourites_c=\nount\":94,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\":true,\"verif=\nied\":false,\"statuses_count\":38572,\"lang\":\"en\",\"contributors_enabled\":false,=\n\"is_translator\":false,\"profile_background_color\":\"C1E3EB\",\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/797076953\\=\n/892c3a903cfdd41a0a21d73a82bdd064.jpeg\",\"profile_background_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/797076953\\/892c3a903=\ncfdd41a0a21d73a82bdd064.jpeg\",\"profile_background_tile\":true,\"profile_image=\n_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000331898128\\/7deed5bd8=\n6118f29508df04db6ad6d54_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/s=\ni0.twimg.com\\/profile_images\\/378800000331898128\\/7deed5bd86118f29508df04db=\n6ad6d54_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/268873966\\/1376431000\",\"profile_link_color\":\"1EB300\",\"profile_sid=\nebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_=\ntext_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\"=\n:false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"c=\nontributors\":null,\"retweeted_status\":{\"metadata\":{\"result_type\":\"recent\",\"i=\nso_language_code\":\"in\"},\"created_at\":\"Tue Aug 20 16:10:41 +0000 2013\",\"id\":=\n369854005955940354,\"id_str\":\"369854005955940354\",\"text\":\"Haha open sesi cur=\nhat :D RT @anggiefaaa: Wahh tweeps setia nih :\\\"D \\\"@HafiidSeptian: Yukmari=\n :D RT anggiefaaa: Test. Mau curhat sm tweepy :\\\"\\\"\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/ubersocial.com\\\" rel=3D\\\"nofollow\\\"\\u003eUberSocial for Black=\nBerry\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_re=\nply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_=\nstr\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":267665049,\"id_str\":\"2=\n67665049\",\"name\":\"BangPids \\u265a\",\"screen_name\":\"HafiidSeptian\",\"location\"=\n:\"\\u00dcT: 0.4467024,101.4089034\",\"description\":\"BIO adalah gabungan antara=\n tiga huruf, B I dan O yang saling terikat satu sama lain. Sehingga melahir=\nkan sebuah kata baru, yaitu BIO\",\"url\":\"http:\\/\\/t.co\\/blGpRQS09z\",\"entitie=\ns\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/blGpRQS09z\",\"expanded_url\":\"http:=\n\\/\\/www.hafidseptian.blogspot.com\",\"display_url\":\"hafidseptian.blogspot.com=\n\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followe=\nrs_count\":3280,\"friends_count\":217,\"listed_count\":1,\"created_at\":\"Thu Mar 1=\n7 09:54:10 +0000 2011\",\"favourites_count\":12,\"utc_offset\":25200,\"time_zone\"=\n:\"Jakarta\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16962,\"lang=\n\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgrou=\nnd_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_background_images\\/378800000016639053\\/f6c78a1901107562692bdd08386a5=\n06e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pr=\nofile_background_images\\/378800000016639053\\/f6c78a1901107562692bdd08386a50=\n6e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_images\\/378800000259477763\\/a7a5ae0f4ac210e2119318c8993579=\neb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_images\\/378800000259477763\\/a7a5ae0f4ac210e2119318c8993579eb_normal.jpeg\",=\n\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/267665049\\/=\n1369031919\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"F=\nFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"666666\",=\n\"profile_use_background_image\":true,\"default_profile\":false,\"default_profil=\ne_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications=\n\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"re=\ntweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"u=\nrls\":[],\"user_mentions\":[{\"screen_name\":\"anggiefaaa\",\"name\":\"\\u264d epaaaww=\n \\u2658\",\"id\":268873966,\"id_str\":\"268873966\",\"indices\":[28,39]},{\"screen_na=\nme\":\"HafiidSeptian\",\"name\":\"BangPids \\u265a\",\"id\":267665049,\"id_str\":\"26766=\n5049\",\"indices\":[68,82]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"in\"}=\n,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[=\n],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"HafiidSeptian\",\"name\":\"BangPid=\ns \\u265a\",\"id\":267665049,\"id_str\":\"267665049\",\"indices\":[3,17]},{\"screen_na=\nme\":\"anggiefaaa\",\"name\":\"\\u264d epaaaww \\u2658\",\"id\":268873966,\"id_str\":\"26=\n8873966\",\"indices\":[47,58]},{\"screen_name\":\"HafiidSeptian\",\"name\":\"BangPids=\n \\u265a\",\"id\":267665049,\"id_str\":\"267665049\",\"indices\":[87,101]}]},\"favorit=\ned\":false,\"retweeted\":false,\"lang\":\"in\"},{\"metadata\":{\"result_type\":\"recent=\n\",\"iso_language_code\":\"in\"},\"created_at\":\"Tue Aug 20 16:10:41 +0000 2013\",\"=\nid\":369854005955940354,\"id_str\":\"369854005955940354\",\"text\":\"Haha open sesi=\n curhat :D RT @anggiefaaa: Wahh tweeps setia nih :\\\"D \\\"@HafiidSeptian: Yuk=\nmari :D RT anggiefaaa: Test. Mau curhat sm tweepy :\\\"\\\"\",\"source\":\"\\u003ca =\nhref=3D\\\"http:\\/\\/ubersocial.com\\\" rel=3D\\\"nofollow\\\"\\u003eUberSocial for B=\nlackBerry\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"i=\nn_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user=\n_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":267665049,\"id_str=\n\":\"267665049\",\"name\":\"BangPids \\u265a\",\"screen_name\":\"HafiidSeptian\",\"locat=\nion\":\"\\u00dcT: 0.4467024,101.4089034\",\"description\":\"BIO adalah gabungan an=\ntara tiga huruf, B I dan O yang saling terikat satu sama lain. Sehingga mel=\nahirkan sebuah kata baru, yaitu BIO\",\"url\":\"http:\\/\\/t.co\\/blGpRQS09z\",\"ent=\nities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/blGpRQS09z\",\"expanded_url\":\"h=\nttp:\\/\\/www.hafidseptian.blogspot.com\",\"display_url\":\"hafidseptian.blogspot=\n.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fol=\nlowers_count\":3280,\"friends_count\":217,\"listed_count\":1,\"created_at\":\"Thu M=\nar 17 09:54:10 +0000 2011\",\"favourites_count\":12,\"utc_offset\":25200,\"time_z=\none\":\"Jakarta\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":16962,\"=\nlang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_back=\nground_color\":\"1A1B1F\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_background_images\\/378800000016639053\\/f6c78a1901107562692bdd083=\n86a506e.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_background_images\\/378800000016639053\\/f6c78a1901107562692bdd0838=\n6a506e.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/378800000259477763\\/a7a5ae0f4ac210e2119318c899=\n3579eb_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_images\\/378800000259477763\\/a7a5ae0f4ac210e2119318c8993579eb_normal.jp=\neg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2676650=\n49\\/1369031919\",\"profile_link_color\":\"2FC2EF\",\"profile_sidebar_border_color=\n\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"252429\",\"profile_text_color\":\"6666=\n66\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_pr=\nofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notificat=\nions\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null=\n,\"retweet_count\":1,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[=\n],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"anggiefaaa\",\"name\":\"\\u264d epa=\naaww \\u2658\",\"id\":268873966,\"id_str\":\"268873966\",\"indices\":[28,39]},{\"scree=\nn_name\":\"HafiidSeptian\",\"name\":\"BangPids \\u265a\",\"id\":267665049,\"id_str\":\"2=\n67665049\",\"indices\":[68,82]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"=\nin\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"in\"},\"created=\n_at\":\"Tue Aug 20 16:03:45 +0000 2013\",\"id\":369852260655706112,\"id_str\":\"369=\n852260655706112\",\"text\":\"Wahh tweeps setia nih :\\\"D \\\"@HafiidSeptian: Yukma=\nri :D RT anggiefaaa: Test. Mau curhat sm tweepy :\\\"\\\"\",\"source\":\"\\u003ca hr=\nef=3D\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter f=\nor BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_i=\nd\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_rep=\nly_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2688739=\n66,\"id_str\":\"268873966\",\"name\":\"\\u264d epaaaww \\u2658\",\"screen_name\":\"anggi=\nefaaa\",\"location\":\"South Jekardah\",\"description\":\"Only and just @zaulmujahi=\ndin nothing else, just him #RH13\\u2665\",\"url\":\"http:\\/\\/t.co\\/CXTrQQphJK\",\"=\nentities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CXTrQQphJK\",\"expanded_url\"=\n:\"http:\\/\\/facebook.com\\/herifreakz\\/\",\"display_url\":\"facebook.com\\/herifre=\nakz\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fo=\nllowers_count\":2142,\"friends_count\":1215,\"listed_count\":6,\"created_at\":\"Sat=\n Mar 19 17:00:39 +0000 2011\",\"favourites_count\":94,\"utc_offset\":25200,\"time=\n_zone\":\"Jakarta\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":38572=\n,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_ba=\nckground_color\":\"C1E3EB\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.=\ncom\\/profile_background_images\\/797076953\\/892c3a903cfdd41a0a21d73a82bdd064=\n.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/797076953\\/892c3a903cfdd41a0a21d73a82bdd064.jpeg\",\"pr=\nofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/378800000331898128\\/7deed5bd86118f29508df04db6ad6d54_normal.jp=\neg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378=\n800000331898128\\/7deed5bd86118f29508df04db6ad6d54_normal.jpeg\",\"profile_ban=\nner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268873966\\/1376431000\",=\n\"profile_link_color\":\"1EB300\",\"profile_sidebar_border_color\":\"000000\",\"prof=\nile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use=\n_background_image\":true,\"default_profile\":false,\"default_profile_image\":fal=\nse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"ge=\no\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\"=\n:0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"use=\nr_mentions\":[{\"screen_name\":\"HafiidSeptian\",\"name\":\"BangPids \\u265a\",\"id\":2=\n67665049,\"id_str\":\"267665049\",\"indices\":[27,41]}]},\"favorited\":false,\"retwe=\neted\":false,\"lang\":\"in\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_=\ncode\":\"in\"},\"created_at\":\"Tue Aug 20 16:01:25 +0000 2013\",\"id\":369851673369=\n268227,\"id_str\":\"369851673369268227\",\"text\":\"Yukmari :D RT @anggiefaaa: Tes=\nt. Mau curhat sm tweepy :\\\"\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/ubersocial=\n.com\\\" rel=3D\\\"nofollow\\\"\\u003eUberSocial for BlackBerry\\u003c\\/a\\u003e\",\"t=\nruncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":nu=\nll,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_s=\ncreen_name\":null,\"user\":{\"id\":267665049,\"id_str\":\"267665049\",\"name\":\"BangPi=\nds \\u265a\",\"screen_name\":\"HafiidSeptian\",\"location\":\"\\u00dcT: 0.4467024,101=\n.4089034\",\"description\":\"BIO adalah gabungan antara tiga huruf, B I dan O y=\nang saling terikat satu sama lain. Sehingga melahirkan sebuah kata baru, ya=\nitu BIO\",\"url\":\"http:\\/\\/t.co\\/blGpRQS09z\",\"entities\":{\"url\":{\"urls\":[{\"url=\n\":\"http:\\/\\/t.co\\/blGpRQS09z\",\"expanded_url\":\"http:\\/\\/www.hafidseptian.blo=\ngspot.com\",\"display_url\":\"hafidseptian.blogspot.com\",\"indices\":[0,22]}]},\"d=\nescription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3280,\"friends_=\ncount\":217,\"listed_count\":1,\"created_at\":\"Thu Mar 17 09:54:10 +0000 2011\",\"=\nfavourites_count\":12,\"utc_offset\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\"=\n:true,\"verified\":false,\"statuses_count\":16962,\"lang\":\"en\",\"contributors_ena=\nbled\":false,\"is_translator\":false,\"profile_background_color\":\"1A1B1F\",\"prof=\nile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images=\n\\/378800000016639053\\/f6c78a1901107562692bdd08386a506e.jpeg\",\"profile_backg=\nround_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\=\n/378800000016639053\\/f6c78a1901107562692bdd08386a506e.jpeg\",\"profile_backgr=\nound_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\=\n/378800000259477763\\/a7a5ae0f4ac210e2119318c8993579eb_normal.jpeg\",\"profile=\n_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000259477=\n763\\/a7a5ae0f4ac210e2119318c8993579eb_normal.jpeg\",\"profile_banner_url\":\"ht=\ntps:\\/\\/pbs.twimg.com\\/profile_banners\\/267665049\\/1369031919\",\"profile_lin=\nk_color\":\"2FC2EF\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_=\nfill_color\":\"252429\",\"profile_text_color\":\"666666\",\"profile_use_background_=\nimage\":true,\"default_profile\":false,\"default_profile_image\":false,\"followin=\ng\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coo=\nrdinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite=\n_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":=\n[{\"screen_name\":\"anggiefaaa\",\"name\":\"\\u264d epaaaww \\u2658\",\"id\":268873966,=\n\"id_str\":\"268873966\",\"indices\":[14,25]}]},\"favorited\":false,\"retweeted\":fal=\nse,\"lang\":\"in\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"in=\n\"},\"created_at\":\"Tue Aug 20 15:59:00 +0000 2013\",\"id\":369851065497182209,\"i=\nd_str\":\"369851065497182209\",\"text\":\"Test. Mau curhat sm tweepy :\\\"\",\"source=\n\":\"\\u003ca href=3D\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=3D\\\"nofollow\\\"\\u=\n003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_repl=\ny_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\"=\n:null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":=\n{\"id\":268873966,\"id_str\":\"268873966\",\"name\":\"\\u264d epaaaww \\u2658\",\"screen=\n_name\":\"anggiefaaa\",\"location\":\"South Jekardah\",\"description\":\"Only and jus=\nt @zaulmujahidin nothing else, just him #RH13\\u2665\",\"url\":\"http:\\/\\/t.co\\/=\nCXTrQQphJK\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CXTrQQphJK\",\"=\nexpanded_url\":\"http:\\/\\/facebook.com\\/herifreakz\\/\",\"display_url\":\"facebook=\n.com\\/herifreakz\\/\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protect=\ned\":false,\"followers_count\":2142,\"friends_count\":1215,\"listed_count\":6,\"cre=\nated_at\":\"Sat Mar 19 17:00:39 +0000 2011\",\"favourites_count\":94,\"utc_offset=\n\":25200,\"time_zone\":\"Jakarta\",\"geo_enabled\":true,\"verified\":false,\"statuses=\n_count\":38572,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fals=\ne,\"profile_background_color\":\"C1E3EB\",\"profile_background_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_background_images\\/797076953\\/892c3a903cfdd41a0a2=\n1d73a82bdd064.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/797076953\\/892c3a903cfdd41a0a21d73a82bdd=\n064.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_images\\/378800000331898128\\/7deed5bd86118f29508df04db6ad6=\nd54_normal.jpeg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_images\\/378800000331898128\\/7deed5bd86118f29508df04db6ad6d54_normal.jpeg\"=\n,\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268873966\\=\n/1376431000\",\"profile_link_color\":\"1EB300\",\"profile_sidebar_border_color\":\"=\n000000\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\"=\n,\"profile_use_background_image\":true,\"default_profile\":false,\"default_profi=\nle_image\":false,\"following\":false,\"follow_request_sent\":false,\"notification=\ns\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"r=\netweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"=\nurls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"in=\n\"},{\"metadata\":{\"result_type\":\"recent\",\"iso_language_code\":\"in\"},\"created_a=\nt\":\"Tue Aug 20 15:51:58 +0000 2013\",\"id\":369849297354772482,\"id_str\":\"36984=\n9297354772482\",\"text\":\"Sleepy nighty sexy tweepy.. (\\u2323 o \\u2323)\",\"sour=\nce\":\"\\u003ca href=3D\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=3D\\\"nofollow\\\"=\n\\u003eTwitter for BlackBerry\\u00ae\\u003c\\/a\\u003e\",\"truncated\":false,\"in_re=\nply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_i=\nd\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user=\n\":{\"id\":237186529,\"id_str\":\"237186529\",\"name\":\"DindaPutriSoekartan\",\"screen=\n_name\":\"deendaputri\",\"location\":\"Beautiful island :))\",\"description\":\"Ji2k =\nbngt sm cicak_mual kl bau duren _kom.broadcsting_tgl 7septmber wisudaaa! :D=\n _u just know my name not my heart so keep your judge before u know me :)\",=\n\"url\":null,\"entities\":{\"description\":{\"urls\":[]}},\"protected\":false,\"follow=\ners_count\":95,\"friends_count\":167,\"listed_count\":0,\"created_at\":\"Wed Jan 12=\n 08:12:15 +0000 2011\",\"favourites_count\":10,\"utc_offset\":25200,\"time_zone\":=\n\"Jakarta\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":3856,\"lang\":=\n\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background=\n_color\":\"352726\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/ima=\nges\\/themes\\/theme5\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/images\\/themes\\/theme5\\/bg.gif\",\"profile_background_tile\":=\nfalse,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000=\n241528818\\/965d42ff39aa94ab834068936244b642_normal.jpeg\",\"profile_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000241528818\\/965d4=\n2ff39aa94ab834068936244b642_normal.jpeg\",\"profile_banner_url\":\"https:\\/\\/pb=\ns.twimg.com\\/profile_banners\\/237186529\\/1374649570\",\"profile_link_color\":\"=\nD02B55\",\"profile_sidebar_border_color\":\"829D5E\",\"profile_sidebar_fill_color=\n\":\"99CC33\",\"profile_text_color\":\"3E4415\",\"profile_use_background_image\":tru=\ne,\"default_profile\":false,\"default_profile_image\":false,\"following\":false,\"=\nfollow_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":=\nnull,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,=\n\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favor=\nited\":false,\"retweeted\":false,\"lang\":\"in\"}],\"search_metadata\":{\"completed_i=\nn\":0.03,\"max_id\":370049377324122112,\"max_id_str\":\"370049377324122112\",\"next=\n_results\":\"?max_id=3D369849297354772481&q=3Dtweepy&include_entities=3D1\",\"q=\nuery\":\"tweepy\",\"refresh_url\":\"?since_id=3D370049377324122112&q=3Dtweepy&inc=\nlude_entities=3D1\",\"count\":15,\"since_id\":0,\"since_id_str\":\"0\"}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "43562", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:18 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:18 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577873035430; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:18 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066678", "x-transaction": "fcd7e8033a805944" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/search.json?q=twitter" }, "response": { "body_quoted_printable": "[{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"l=\nocation\":\"San Francisco, CA\",\"description\":\"Your official source for news, =\nupdates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"ent=\nities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"h=\nttp:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,2=\n2]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":226014=\n93,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:=\n54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacif=\nic Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":=\n1632,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",\"i=\nd\":369915012157943808,\"id_str\":\"369915012157943808\",\"text\":\"RT @vineapp: We=\n've said this before and we'll say it again: this community - now more than=\n 40 million of you - is amazing. Thank you for in\\u2026\",\"source\":\"\\u003ca =\nhref=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u00=\n3c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_st=\natus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null=\n,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,=\n\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 20:00:06 +=\n0000 2013\",\"id\":369911739782946816,\"id_str\":\"369911739782946816\",\"text\":\"We=\n've said this before and we'll say it again: this community - now more than=\n 40 million of you - is amazing. Thank you for inspiring us.\",\"source\":\"\\u0=\n03ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=\n=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\"=\n:false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_re=\nply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_nam=\ne\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"ret=\nweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"=\nurls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en=\n\"},\"retweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbol=\ns\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"name\":\"Vine\",\"id=\n\":586671909,\"id_str\":\"586671909\",\"indices\":[3,11]}]},\"favorited\":false,\"ret=\nweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke=\n1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_backgr=\nound_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\=\n/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_nor=\nmal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/78=\n3214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_col=\nor\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"33=\n3333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_=\nprofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notific=\nations\":false},{\"id\":7080152,\"id_str\":\"7080152\",\"name\":\"TwitterJP\",\"screen_=\nname\":\"TwitterJP\",\"location\":\"\\u6771\\u4eac\\u90fd\\u6e2f\\u533a\",\"description\"=\n:\"\\u65e5\\u672c\\u8a9e\\u7248Twitter\\u516c\\u5f0f\\u30a2\\u30ab\\u30a6\\u30f3\\u30c8=\n\\u3067\\u3059\\u3002\",\"url\":\"http:\\/\\/t.co\\/H5ARazpKbh\",\"entities\":{\"url\":{\"u=\nrls\":[{\"url\":\"http:\\/\\/t.co\\/H5ARazpKbh\",\"expanded_url\":\"http:\\/\\/blog.jp.t=\nwitter.com\",\"display_url\":\"blog.jp.twitter.com\",\"indices\":[0,22]}]},\"descri=\nption\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1277755,\"friends_co=\nunt\":679,\"listed_count\":16725,\"created_at\":\"Tue Jun 26 01:54:35 +0000 2007\"=\n,\"favourites_count\":5,\"utc_offset\":32400,\"time_zone\":\"Tokyo\",\"geo_enabled\":=\ntrue,\"verified\":true,\"statuses_count\":2228,\"lang\":\"ja\",\"status\":{\"created_a=\nt\":\"Wed Aug 21 00:58:23 +0000 2013\",\"id\":369986807347159040,\"id_str\":\"36998=\n6807347159040\",\"text\":\"Twitter\\u30e6\\u30fc\\u30b6\\u30fc\\u306e\\u7686\\u3055\\u3=\n093\\u306f\\u6016\\u3044\\u8a71\\u304c\\u304a\\u597d\\u304d\\u306a\\u3088\\u3046\\u3067=\n\\u3059\\u306d\\u3002\\u300c\\u9031\\u9593\\u30cf\\u30c3\\u30b7\\u30e5\\u30bf\\u30b0\\u3=\n0e9\\u30f3\\u30ad\\u30f3\\u30b0\\uff088\\u670812\\u65e5\\u304b\\u30898\\u670818\\u65e5=\n\\uff09\\u300dhttp:\\/\\/t.co\\/Ig1Gg39PJQ\",\"source\":\"web\",\"truncated\":false,\"in=\n_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_use=\nr_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":26,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/Ig1Gg39PJQ\",\"expanded_url\":\"http:\\/\\/blog.jp.twitter.com=\n\\/2013\\/08\\/812818.html\",\"display_url\":\"blog.jp.twitter.com\\/2013\\/08\\/8128=\n18\\u2026\",\"indices\":[59,81]}],\"user_mentions\":[]},\"favorited\":false,\"retwee=\nted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"},\"contributors_enabled\":f=\nalse,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_bac=\nkground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/66968=\n0452\\/4158abf21ac976cdb0459ccf14acd5f2.jpeg\",\"profile_background_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/669680452\\/4158=\nabf21ac976cdb0459ccf14acd5f2.jpeg\",\"profile_background_tile\":true,\"profile_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3407356865\\/62f0d5322236=\n1fbd2c1fe9889f4cc559_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_images\\/3407356865\\/62f0d53222361fbd2c1fe9889f4cc559_norm=\nal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/708=\n0152\\/1348004306\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_col=\nor\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"33=\n3333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_=\nprofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notific=\nations\":false},{\"id\":133824534,\"id_str\":\"133824534\",\"name\":\"Twitter Search\"=\n,\"screen_name\":\"twittersearch\",\"location\":\"San Francisco, CA\",\"description\"=\n:\"We are Twitter Search! Follow us for search tips and news about cool feat=\nures. Tweet us your ideas, feedback, and questions.\",\"url\":\"https:\\/\\/t.co\\=\n/NkArZBosBH\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/NkArZBosBH\"=\n,\"expanded_url\":\"https:\\/\\/twitter.com\\/#!\\/search-home\",\"display_url\":\"twi=\ntter.com\\/#!\\/search-home\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"=\nprotected\":false,\"followers_count\":1676272,\"friends_count\":38,\"listed_count=\n\":4583,\"created_at\":\"Fri Apr 16 18:38:13 +0000 2010\",\"favourites_count\":0,\"=\nutc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":t=\nrue,\"verified\":true,\"statuses_count\":55,\"lang\":\"en\",\"status\":{\"created_at\":=\n\"Fri Jun 14 16:38:48 +0000 2013\",\"id\":345581095531724800,\"id_str\":\"34558109=\n5531724800\",\"text\":\"RT @briggles: Realized later @origiful and I were suppo=\nsed to make a F-A-T-H-E-R-S Day video. But I think we fixed it. http:\\/\\/t.=\nco\\/5k9vPvs2\\u2026\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id=\n\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_repl=\ny_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinat=\nes\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":=\n\"Fri Jun 14 16:17:13 +0000 2013\",\"id\":345575662188367872,\"id_str\":\"34557566=\n2188367872\",\"text\":\"Realized later @origiful and I were supposed to make a =\nF-A-T-H-E-R-S Day video. But I think we fixed it. http:\\/\\/t.co\\/5k9vPvs2hO=\n #feathersday\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":nul=\nl,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_=\nuser_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":n=\null,\"place\":null,\"contributors\":null,\"retweet_count\":38,\"favorite_count\":0,=\n\"entities\":{\"hashtags\":[{\"text\":\"feathersday\",\"indices\":[128,140]}],\"symbol=\ns\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5k9vPvs2hO\",\"expanded_url\":\"http:\\/\\/w=\nww.youtube.com\\/watch?v=3DzQDzttVRgpo\",\"display_url\":\"youtube.com\\/watch?v=\n=3DzQDztt\\u2026\",\"indices\":[105,127]}],\"user_mentions\":[{\"screen_name\":\"ori=\ngiful\",\"name\":\"Ian Padgham\",\"id\":15603374,\"id_str\":\"15603374\",\"indices\":[15=\n,24]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lan=\ng\":\"en\"},\"retweet_count\":38,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"s=\nymbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"briggles\",\"name\":\"Jer=\nemy Briggs\",\"id\":118634348,\"id_str\":\"118634348\",\"indices\":[3,12]},{\"screen_=\nname\":\"origiful\",\"name\":\"Ian Padgham\",\"id\":15603374,\"id_str\":\"15603374\",\"in=\ndices\":[29,38]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DE=\nED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgrou=\nnd_images\\/656930647\\/bjomh3zexnb2lko6gbts.png\",\"profile_background_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/656930647\\/b=\njomh3zexnb2lko6gbts.png\",\"profile_background_tile\":true,\"profile_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174887\\/zkkmew2x5drntu7z7z9q_n=\normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_imag=\nes\\/2284174887\\/zkkmew2x5drntu7z7z9q_normal.png\",\"profile_banner_url\":\"http=\ns:\\/\\/pbs.twimg.com\\/profile_banners\\/133824534\\/1347394486\",\"profile_link_=\ncolor\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fi=\nll_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_im=\nage\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\"=\n:false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":3963481,\"id=\n_str\":\"3963481\",\"name\":\"Twitter Mobile\",\"screen_name\":\"twittermobile\",\"loca=\ntion\":\"San Francisco, CA\",\"description\":\"\",\"url\":\"http:\\/\\/t.co\\/A55poq0FRj=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/A55poq0FRj\",\"expanded_u=\nrl\":\"http:\\/\\/twitter.com\",\"display_url\":\"twitter.com\",\"indices\":[0,22]}]},=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2685990,\"fri=\nends_count\":28,\"listed_count\":7728,\"created_at\":\"Tue Apr 10 01:20:52 +0000 =\n2007\",\"favourites_count\":2,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (U=\nS & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":379,\"lang\"=\n:\"en\",\"status\":{\"created_at\":\"Fri Aug 09 12:58:51 +0000 2013\",\"id\":36581946=\n3548928000,\"id_str\":\"365819463548928000\",\"text\":\"Twitter SMS is now availab=\nle for Lonestar Cell MTN subscribers in Liberia. Send START to 8933 to begi=\nn. Welcome to Twitter!\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_statu=\ns_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_=\nreply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coord=\ninates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":54,\"favorite_=\ncount\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[=\n]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":=\nfalse,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_ba=\nckground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/6569=\n32170\\/urr667rpqtg6l7psohaf.png\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/656932170\\/urr667rpqtg6l7ps=\nohaf.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_images\\/2284174879\\/uqyatg9dtld0rxx9anic_normal.png\",\"pro=\nfile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174879\\=\n/uqyatg9dtld0rxx9anic_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg=\n.com\\/profile_banners\\/3963481\\/1347394599\",\"profile_link_color\":\"0084B4\",\"=\nprofile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6=\n\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"defaul=\nt_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_re=\nquest_sent\":false,\"notifications\":false},{\"id\":6253282,\"id_str\":\"6253282\",\"=\nname\":\"Twitter API\",\"screen_name\":\"twitterapi\",\"location\":\"San Francisco, C=\nA\",\"description\":\"The Real Twitter API. I tweet about API changes, service =\nissues and happily answer questions about Twitter and our API. Don't get an=\n answer? It's on my website.\",\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"entities\":=\n{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/78pYTvWfJd\",\"expanded_url\":\"http:\\/\\=\n/dev.twitter.com\",\"display_url\":\"dev.twitter.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":1802630,\"friends_=\ncount\":35,\"listed_count\":11918,\"created_at\":\"Wed May 23 06:01:13 +0000 2007=\n\",\"favourites_count\":25,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US &=\n Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":3442,\"lang\":\"=\nen\",\"status\":{\"created_at\":\"Mon Aug 19 17:12:49 +0000 2013\",\"id\":3695072575=\n00712960,\"id_str\":\"369507257500712960\",\"text\":\"Introducing Twitter Headline=\ns for Embedded Tweets: https:\\/\\/t.co\\/pGWYU9Qrty\",\"source\":\"web\",\"truncate=\nd\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_=\nreply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_n=\name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"r=\netweet_count\":96,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],=\n\"urls\":[{\"url\":\"https:\\/\\/t.co\\/pGWYU9Qrty\",\"expanded_url\":\"https:\\/\\/dev.t=\nwitter.com\\/blog\\/headlines-tell-story-behind-tweet\",\"display_url\":\"dev.twi=\ntter.com\\/blog\\/headlines\\u2026\",\"indices\":[51,74]}],\"user_mentions\":[]},\"f=\navorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"=\ncontributors_enabled\":false,\"is_translator\":false,\"profile_background_color=\n\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_b=\nackground_images\\/656927849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/65692=\n7849\\/miyt9dpjz77sc0w3d4vj.png\",\"profile_background_tile\":true,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174872\\/7df3h38zabcvjyl=\nnyfe3_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_images\\/2284174872\\/7df3h38zabcvjylnyfe3_normal.png\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6253282\\/1347394302\",\"profile_=\nlink_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sideb=\nar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_backgrou=\nnd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follo=\nwing\":false,\"follow_request_sent\":false,\"notifications\":false},{\"id\":875327=\n73,\"id_str\":\"87532773\",\"name\":\"Twitter Design\",\"screen_name\":\"design\",\"loca=\ntion\":\"San Francisco, NYC, London\",\"description\":\"The voice of Twitter's pr=\noduct design team. Current members are listed at http:\\/\\/t.co\\/oZwaR2nW8e\"=\n,\"url\":\"http:\\/\\/t.co\\/u3bnom2Z8D\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:=\n\\/\\/t.co\\/u3bnom2Z8D\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_url\":\"=\ntwitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.=\nco\\/oZwaR2nW8e\",\"expanded_url\":\"http:\\/\\/twitter.com\\/design\\/team\\/members=\n\",\"display_url\":\"twitter.com\\/design\\/team\\/me\\u2026\",\"indices\":[74,96]}]}}=\n,\"protected\":false,\"followers_count\":1138518,\"friends_count\":47,\"listed_cou=\nnt\":3704,\"created_at\":\"Wed Nov 04 21:06:16 +0000 2009\",\"favourites_count\":8=\n6,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled=\n\":false,\"verified\":true,\"statuses_count\":708,\"lang\":\"en\",\"status\":{\"created=\n_at\":\"Thu Aug 15 18:46:21 +0000 2013\",\"id\":368081241347604480,\"id_str\":\"368=\n081241347604480\",\"text\":\"Interesting primer on motion design. We're big fan=\ns of After Effects at Twitter. https:\\/\\/t.co\\/1jULcD9kHj\",\"source\":\"\\u003=\nca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D1=\n2\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":fal=\nse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_=\nto_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":n=\null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet=\n_count\":26,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\"=\n:[{\"url\":\"https:\\/\\/t.co\\/1jULcD9kHj\",\"expanded_url\":\"https:\\/\\/medium.com\\=\n/design-ux\\/88dadaafa0aa\",\"display_url\":\"medium.com\\/design-ux\\/88da\\u2026\"=\n,\"indices\":[82,105]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":fal=\nse,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is=\n_translator\":false,\"profile_background_color\":\"333333\",\"profile_background_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/655967944\\/1o=\nxgo9asd6u6o4yvnpj9.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_background_images\\/655967944\\/1oxgo9asd6u6o4yvnpj9.jpe=\ng\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_images\\/2587092969\\/cge4oxfj2i3pihdwgw9u_normal.png\",\"profile_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2587092969\\/cge4ox=\nfj2i3pihdwgw9u_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/p=\nrofile_banners\\/87532773\\/1347404310\",\"profile_link_color\":\"3587AA\",\"profil=\ne_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"pro=\nfile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_prof=\nile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_=\nsent\":false,\"notifications\":false},{\"id\":85426644,\"id_str\":\"85426644\",\"name=\n\":\"Twitter en espa\\u00f1ol\",\"screen_name\":\"twitter_es\",\"location\":\"San Fran=\ncisco, CA\",\"description\":\"\\u00a1Bienvenidos a la cuenta oficial de Twitter =\nen espa\\u00f1ol! \\u00bfEres nuevo? Empieza aqu\\u00ed https:\\/\\/t.co\\/SrM5t0=\nnn\",\"url\":\"http:\\/\\/t.co\\/Y5lmsBNT5i\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"ht=\ntp:\\/\\/t.co\\/Y5lmsBNT5i\",\"expanded_url\":\"http:\\/\\/blog.es.twitter.com\",\"dis=\nplay_url\":\"blog.es.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[=\n{\"url\":\"https:\\/\\/t.co\\/SrM5t0nn\",\"expanded_url\":\"https:\\/\\/twitter.com\\/#!=\n\\/welcome\",\"display_url\":\"twitter.com\\/#!\\/welcome\",\"indices\":[82,103]}]}},=\n\"protected\":false,\"followers_count\":12851956,\"friends_count\":30,\"listed_cou=\nnt\":28596,\"created_at\":\"Mon Oct 26 21:54:02 +0000 2009\",\"favourites_count\":=\n4,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled=\n\":false,\"verified\":true,\"statuses_count\":664,\"lang\":\"es\",\"status\":{\"created=\n_at\":\"Fri Aug 16 23:07:21 +0000 2013\",\"id\":368509311464386560,\"id_str\":\"368=\n509311464386560\",\"text\":\"Descubre lo que sucedi\\u00f3 durante los @PremiosT=\nuMundo https:\\/\\/t.co\\/3CeL8Bh7z5\",\"source\":\"web\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":60=\n,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"=\nhttps:\\/\\/t.co\\/3CeL8Bh7z5\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/es\\=\n/2013\\/enterate-de-lo-sucedido-en-los-premios-tu-mundo\",\"display_url\":\"blog=\n.twitter.com\\/es\\/2013\\/entera\\u2026\",\"indices\":[52,75]}],\"user_mentions\":[=\n{\"screen_name\":\"PremiosTuMundo\",\"name\":\"Premios Tu Mundo\",\"id\":600402341,\"i=\nd_str\":\"600402341\",\"indices\":[36,51]}]},\"favorited\":false,\"retweeted\":false=\n,\"possibly_sensitive\":false,\"lang\":\"es\"},\"contributors_enabled\":false,\"is_t=\nranslator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/656937285\\/luq1=\n4jx88xlnva7bl7ke.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_background_images\\/656937285\\/luq14jx88xlnva7bl7ke.png\",\"=\nprofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_images\\/2284174779\\/0rn7tp2wu2xdnsmyw2y6_normal.png\",\"profile_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174779\\/0rn7tp2wu2=\nxdnsmyw2y6_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/85426644\\/1347394931\",\"profile_link_color\":\"0084B4\",\"profile_si=\ndebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile=\n_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\"=\n:false,\"default_profile_image\":false,\"following\":false,\"follow_request_sent=\n\":false,\"notifications\":false},{\"id\":130649891,\"id_str\":\"130649891\",\"name\":=\n\"Twitter Media\",\"screen_name\":\"twittermedia\",\"location\":\"San Francisco\",\"de=\nscription\":\"Tracking cool, meaningful uses of Tweets in media, tv, sports, =\nentertainment and journalism. Send us tips!\",\"url\":\"https:\\/\\/t.co\\/TaNgNcx=\nAmy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/TaNgNcxAmy\",\"expand=\ned_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url\":\"blog.twitter.com=\n\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"=\nfollowers_count\":2404874,\"friends_count\":296,\"listed_count\":7897,\"created_a=\nt\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count\":129,\"utc_offset\":-25=\n200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":=\ntrue,\"statuses_count\":725,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20=\n:59:51 +0000 2013\",\"id\":369926779600777216,\"id_str\":\"369926779600777216\",\"t=\next\":\"RT @vineapp: We've said this before and we'll say it again: this comm=\nunity - now more than 40 million of you - is amazing. Thank you for in\\u202=\n6\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_=\nto_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\"=\n:null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":=\nnull,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 20:00=\n:06 +0000 2013\",\"id\":369911739782946816,\"id_str\":\"369911739782946816\",\"text=\n\":\"We've said this before and we'll say it again: this community - now more=\n than 40 million of you - is amazing. Thank you for inspiring us.\",\"source\"=\n:\"\\u003ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998=\n?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncat=\ned\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in=\n_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_=\nname\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"=\nretweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[=\n],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":=\n\"en\"},\"retweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"sym=\nbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"name\":\"Vine\",=\n\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[3,11]}]},\"favorited\":false,\"=\nretweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":=\nfalse,\"profile_background_color\":\"12212D\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/90427732\\/twittermedia-bg.=\npng\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_background_images\\/90427732\\/twittermedia-bg.png\",\"profile_background_tile=\n\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3752514=\n126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/3752514126\\/0a78819053b9451d8e20=\n1de2950197ab_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/130649891\\/1347404321\",\"profile_link_color\":\"1D5870\",\"profile=\n_sidebar_border_color\":\"333333\",\"profile_sidebar_fill_color\":\"EEEEEE\",\"prof=\nile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profi=\nle\":false,\"default_profile_image\":false,\"following\":true,\"follow_request_se=\nnt\":false,\"notifications\":false},{\"id\":119134771,\"id_str\":\"119134771\",\"name=\n\":\"Stories\",\"screen_name\":\"TwitterStories\",\"location\":\"Earth\",\"description\"=\n:\"Use the hashtag #twitterstories to submit delightful, unexpected or inspi=\nring stories about Twitter.\",\"url\":\"http:\\/\\/t.co\\/lNRoN3oZs1\",\"entities\":{=\n\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/lNRoN3oZs1\",\"expanded_url\":\"http:\\/\\/=\nstories.twitter.com\",\"display_url\":\"stories.twitter.com\",\"indices\":[0,22]}]=\n},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":744413,\"fr=\niends_count\":15,\"listed_count\":2422,\"created_at\":\"Tue Mar 02 19:35:26 +0000=\n 2010\",\"favourites_count\":75,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time =\n(US & Canada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":398,\"la=\nng\":\"en\",\"status\":{\"created_at\":\"Thu Aug 08 15:37:22 +0000 2013\",\"id\":36549=\n6967897440256,\"id_str\":\"365496967897440256\",\"text\":\"Wartime Tweets from the=\n front lines. http:\\/\\/t.co\\/nk2G8Ze7U1 http:\\/\\/t.co\\/S1ylaBR2Sb\",\"source\"=\n:\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_i=\nd_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_r=\neply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contr=\nibutors\":null,\"retweet_count\":11,\"favorite_count\":0,\"entities\":{\"hashtags\":=\n[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/nk2G8Ze7U1\",\"expanded_url\":\"=\nhttp:\\/\\/stories.twitter.com\\/en\\/eyes_ears.html\",\"display_url\":\"stories.tw=\nitter.com\\/en\\/eyes_ears.h\\u2026\",\"indices\":[37,59]}],\"user_mentions\":[],\"m=\nedia\":[{\"id\":365496967901634560,\"id_str\":\"365496967901634560\",\"indices\":[60=\n,82],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/BRKBjkpCYAAuQLs.png\",\"medi=\na_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/BRKBjkpCYAAuQLs.png\",\"url\":\"h=\nttp:\\/\\/t.co\\/S1ylaBR2Sb\",\"display_url\":\"pic.twitter.com\\/S1ylaBR2Sb\",\"expa=\nnded_url\":\"http:\\/\\/twitter.com\\/TwitterStories\\/status\\/365496967897440256=\n\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":600,\"h\":338,\"resize\":\"fit=\n\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"},\"large\":{\"w\":862,\"h\":485,\"resiz=\ne\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}}}]},\"favorited\":false,\"=\nretweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enab=\nled\":false,\"is_translator\":false,\"profile_background_color\":\"E0E0E0\",\"profi=\nle_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\=\n/377829103\\/background2.png\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_background_images\\/377829103\\/background2.png\",\"pr=\nofile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/2284174636\\/4pymcr5pw1ir1upo3m17_normal.png\",\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174636\\/4pymcr5pw1ir=\n1upo3m17_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/119134771\\/1347404430\",\"profile_link_color\":\"4B9CC8\",\"profile_sid=\nebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"FFFFFF\",\"profile_=\ntext_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\"=\n:false,\"notifications\":false},{\"id\":6844292,\"id_str\":\"6844292\",\"name\":\"Twit=\nter Engineering\",\"screen_name\":\"TwitterEng\",\"location\":\"San Francisco, CA\",=\n\"description\":\"The official account for Twitter Engineering.\",\"url\":\"http:\\=\n/\\/t.co\\/oEmYlYDquC\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/oEmY=\nlYDquC\",\"expanded_url\":\"http:\\/\\/engineering.twitter.com\",\"display_url\":\"en=\ngineering.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"prot=\nected\":false,\"followers_count\":442258,\"friends_count\":0,\"listed_count\":2667=\n,\"created_at\":\"Sat Jun 16 00:14:36 +0000 2007\",\"favourites_count\":0,\"utc_of=\nfset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"v=\nerified\":true,\"statuses_count\":179,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri =\nAug 16 23:04:23 +0000 2013\",\"id\":368508567092875266,\"id_str\":\"3685085670928=\n75266\",\"text\":\"An inside (and detailed) look at re-architecting Twitter. Pl=\nus, a new Tweets-per-second peak: 143,199 Tweets. https:\\/\\/t.co\\/LKH4UdScF=\ni\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/=\nid409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003=\ne\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_st=\nr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply=\n_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contribut=\nors\":null,\"retweet_count\":588,\"favorite_count\":0,\"entities\":{\"hashtags\":[],=\n\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/LKH4UdScFi\",\"expanded_url\":\"ht=\ntps:\\/\\/blog.twitter.com\\/2013\\/new-tweets-per-second-record-and-how\",\"disp=\nlay_url\":\"blog.twitter.com\\/2013\\/new-tweet\\u2026\",\"indices\":[110,133]}],\"u=\nser_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":=\nfalse,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"C6E2EE\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme2\\/bg.gif\",\"profile_bac=\nkground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ima=\nges\\/2284174594\\/apcu4c9tu2zkefnev0jt_normal.png\",\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174594\\/apcu4c9tu2zkefnev0jt=\n_normal.png\",\"profile_link_color\":\"1F98C7\",\"profile_sidebar_border_color\":\"=\nC6E2EE\",\"profile_sidebar_fill_color\":\"DAECF4\",\"profile_text_color\":\"663B12\"=\n,\"profile_use_background_image\":true,\"default_profile\":false,\"default_profi=\nle_image\":false,\"following\":true,\"follow_request_sent\":false,\"notifications=\n\":false},{\"id\":158079127,\"id_str\":\"158079127\",\"name\":\"Twitter Good\",\"screen=\n_name\":\"TwitterGood\",\"location\":\"Twitter HQ\",\"description\":\"Highlighting fo=\nrces of good in the Twitter community.\",\"url\":\"http:\\/\\/t.co\\/PO2zo194eS\",\"=\nentities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/PO2zo194eS\",\"expanded_url\"=\n:\"http:\\/\\/Hope140.org\",\"display_url\":\"Hope140.org\",\"indices\":[0,22]}]},\"de=\nscription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":733977,\"friends=\n_count\":90,\"listed_count\":2255,\"created_at\":\"Mon Jun 21 18:34:36 +0000 2010=\n\",\"favourites_count\":1,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & =\nCanada)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":454,\"lang\":\"e=\nn\",\"status\":{\"created_at\":\"Mon Aug 19 19:13:22 +0000 2013\",\"id\":36953759161=\n7413120,\"id_str\":\"369537591617413120\",\"text\":\"RT @RachaelRad: I spend an un=\nnatural amount of time thinking about how to get my hero @HillaryClinton to=\n @-reply me.\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null=\n,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_u=\nser_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":nu=\nll,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Tue A=\nug 13 20:33:52 +0000 2013\",\"id\":367383522761117696,\"id_str\":\"36738352276111=\n7696\",\"text\":\"I spend an unnatural amount of time thinking about how to get=\n my hero @HillaryClinton to @-reply me.\",\"source\":\"\\u003ca href=3D\\\"http:\\/=\n\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollo=\nw\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_sta=\ntus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"i=\nn_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coo=\nrdinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":23,\"favorit=\ne_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\"=\n:[{\"screen_name\":\"HillaryClinton\",\"name\":\"Hillary Clinton\",\"id\":1339835893,=\n\"id_str\":\"1339835893\",\"indices\":[70,85]}]},\"favorited\":false,\"retweeted\":fa=\nlse,\"lang\":\"en\"},\"retweet_count\":23,\"favorite_count\":0,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"RachaelRad\",\"=\nname\":\"Rachael Horwitz\",\"id\":22824309,\"id_str\":\"22824309\",\"indices\":[3,14]}=\n,{\"screen_name\":\"HillaryClinton\",\"name\":\"Hillary Clinton\",\"id\":1339835893,\"=\nid_str\":\"1339835893\",\"indices\":[86,101]}]},\"favorited\":false,\"retweeted\":fa=\nlse,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profil=\ne_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_background_images\\/656929846\\/ltacjpy7lzh7l82pbpq1.png\",\"p=\nrofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgr=\nound_images\\/656929846\\/ltacjpy7lzh7l82pbpq1.png\",\"profile_background_tile\"=\n:true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378247267=\n1\\/08e0b9f0be0cefc12e0a71c493f97041_normal.png\",\"profile_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_images\\/3782472671\\/08e0b9f0be0cefc12e0a71=\nc493f97041_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/158079127\\/1347394440\",\"profile_link_color\":\"0084B4\",\"profile_s=\nidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profil=\ne_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile=\n\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_sen=\nt\":false,\"notifications\":false},{\"id\":23554196,\"id_str\":\"23554196\",\"name\":\"=\nAdam from Twibes\",\"screen_name\":\"twibes\",\"location\":\"Seattle\",\"description\"=\n:\"A twibe is a twitter group. Follow me to meet other people with similar i=\nnterests.\",\"url\":\"http:\\/\\/t.co\\/s0rYoljsqY\",\"entities\":{\"url\":{\"urls\":[{\"u=\nrl\":\"http:\\/\\/t.co\\/s0rYoljsqY\",\"expanded_url\":\"http:\\/\\/www.twibes.com\",\"d=\nisplay_url\":\"twibes.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"pr=\notected\":false,\"followers_count\":100573,\"friends_count\":13644,\"listed_count=\n\":16484,\"created_at\":\"Tue Mar 10 04:02:27 +0000 2009\",\"favourites_count\":32=\n99,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enable=\nd\":true,\"verified\":false,\"statuses_count\":1266,\"lang\":\"en\",\"status\":{\"creat=\ned_at\":\"Sat Jun 22 14:00:14 +0000 2013\",\"id\":348440292707414016,\"id_str\":\"3=\n48440292707414016\",\"text\":\"Advertisement: www.AmazingKarma has launched and=\n for a limited time is giving away FREE Karma Cards and Karma Coin http:\\/\\=\n/t.co\\/iNPqfqB9yP\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.sponsoredtweets.=\ncom\\\" rel=3D\\\"nofollow\\\"\\u003eSponsored Tweets\\u003c\\/a\\u003e\",\"truncated\":=\nfalse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_rep=\nly_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name=\n\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retw=\neet_count\":3,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"url=\ns\":[{\"url\":\"http:\\/\\/t.co\\/iNPqfqB9yP\",\"expanded_url\":\"http:\\/\\/spn.tw\\/t1B=\n2Ss\",\"display_url\":\"spn.tw\\/t1B2Ss\",\"indices\":[115,137]}],\"user_mentions\":[=\n]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"e=\nn\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_=\ncolor\":\"8D9276\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_background_images\\/6145476\\/parrot-3.png\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/6145476\\/parro=\nt-3.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_images\\/102782983\\/parrot-3-1_normal.png\",\"profile_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/102782983\\/parrot-3-1_=\nnormal.png\",\"profile_link_color\":\"6A272D\",\"profile_sidebar_border_color\":\"6=\nA272D\",\"profile_sidebar_fill_color\":\"FBFBBA\",\"profile_text_color\":\"333333\",=\n\"profile_use_background_image\":true,\"default_profile\":false,\"default_profil=\ne_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications=\n\":false},{\"id\":373471064,\"id_str\":\"373471064\",\"name\":\"Twitter Music\",\"scree=\nn_name\":\"TwitterMusic\",\"location\":\"Twitter HQ\",\"description\":\"Music related=\n Tweets from around the world.\",\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"entities=\n\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"expanded_url\":\"http:\\=\n/\\/music.twitter.com\",\"display_url\":\"music.twitter.com\",\"indices\":[0,22]}]}=\n,\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":3304840,\"fr=\niends_count\":83,\"listed_count\":5969,\"created_at\":\"Wed Sep 14 16:50:47 +0000=\n 2011\",\"favourites_count\":415,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo=\n_enabled\":false,\"verified\":true,\"statuses_count\":3058,\"lang\":\"en\",\"status\":=\n{\"created_at\":\"Tue Aug 20 19:33:07 +0000 2013\",\"id\":369904949586444288,\"id_=\nstr\":\"369904949586444288\",\"text\":\"RT @springsteen: Bruce here... looking fo=\nrward to seeing friends in Chile, Argentina & Brazil on tour next month=\n. Any requests?\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/twitter.com\\/download\\=\n/iphone\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"trunc=\nated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"=\nin_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scree=\nn_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null=\n,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 19:29:01 +0000 2013\",\"id\":369=\n903918681034752,\"id_str\":\"369903918681034752\",\"text\":\"Bruce here... looking=\n forward to seeing friends in Chile, Argentina & Brazil on tour next mo=\nnth. Any requests?\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id=\n\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_repl=\ny_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinat=\nes\":null,\"place\":null,\"contributors\":null,\"retweet_count\":1028,\"favorite_co=\nunt\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]}=\n,\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"retweet_count\":1028,\"fav=\norite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_menti=\nons\":[{\"screen_name\":\"springsteen\",\"name\":\"Bruce Springsteen\",\"id\":43383705=\n,\"id_str\":\"43383705\",\"indices\":[3,15]}]},\"favorited\":false,\"retweeted\":fals=\ne,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_=\nbackground_color\":\"131516\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_background_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_backg=\nround_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images=\n\\/3782510816\\/ae4c20cca7d4cc918bba74458def2066_normal.png\",\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3782510816\\/ae4c20cca7d=\n4cc918bba74458def2066_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg=\n.com\\/profile_banners\\/373471064\\/1347670819\",\"profile_link_color\":\"009999\"=\n,\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"EFEF=\nEF\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"defa=\nult_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_=\nrequest_sent\":false,\"notifications\":false},{\"id\":90556897,\"id_str\":\"9055689=\n7\",\"name\":\"Twitter Fran\\u00e7ais\",\"screen_name\":\"TwitterFrance\",\"location\":=\n\"San Francisco CA\",\"description\":\"Bienvenue au compte officiel de Twitter e=\nn France\\u00a0! Pour plus d'infos rendez-vous sur http:\\/\\/t.co\\/fEg9kb4P\\u=\n00a0!\",\"url\":\"https:\\/\\/t.co\\/FX8t0aMiED\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"https:\\/\\/t.co\\/FX8t0aMiED\",\"expanded_url\":\"https:\\/\\/twitter.com\\/welcom=\ne\",\"display_url\":\"twitter.com\\/welcome\",\"indices\":[0,23]}]},\"description\":{=\n\"urls\":[{\"url\":\"http:\\/\\/t.co\\/fEg9kb4P\",\"expanded_url\":\"http:\\/\\/blog.fr.t=\nwitter.com\",\"display_url\":\"blog.fr.twitter.com\",\"indices\":[86,106]}]}},\"pro=\ntected\":false,\"followers_count\":1860153,\"friends_count\":40,\"listed_count\":5=\n315,\"created_at\":\"Tue Nov 17 03:49:40 +0000 2009\",\"favourites_count\":1,\"utc=\n_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true=\n,\"verified\":true,\"statuses_count\":385,\"lang\":\"fr\",\"status\":{\"created_at\":\"T=\nhu Aug 08 07:30:01 +0000 2013\",\"id\":365374321335599106,\"id_str\":\"3653743213=\n35599106\",\"text\":\"Un \\u00e9t\\u00e9 sur Twitter\\u00a0: partagez vos cartes p=\nostales anim\\u00e9es avec Vine https:\\/\\/t.co\\/Mc8UgBsAmV\",\"source\":\"\\u003c=\na href=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u=\n003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_=\nstatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nu=\nll,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":nul=\nl,\"contributors\":null,\"retweet_count\":23,\"favorite_count\":0,\"entities\":{\"ha=\nshtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Mc8UgBsAmV\",\"expand=\ned_url\":\"https:\\/\\/blog.twitter.com\\/fr\\/2013\\/un-ete-sur-twitter-vine-le-n=\nouveau-film-de-vos-vacances\",\"display_url\":\"blog.twitter.com\\/fr\\/2013\\/un-=\nete\\u2026\",\"indices\":[68,91]}],\"user_mentions\":[]},\"favorited\":false,\"retwe=\neted\":false,\"possibly_sensitive\":false,\"lang\":\"fr\"},\"contributors_enabled\":=\nfalse,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"profile_ba=\nckground_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme18\\/bg.gif=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/th=\nemes\\/theme18\\/bg.gif\",\"profile_background_tile\":false,\"profile_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174786\\/1ppm9vhwkifs03rdebow_no=\nrmal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_image=\ns\\/2284174786\\/1ppm9vhwkifs03rdebow_normal.png\",\"profile_banner_url\":\"https=\n:\\/\\/pbs.twimg.com\\/profile_banners\\/90556897\\/1356027978\",\"profile_link_co=\nlor\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill=\n_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_imag=\ne\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":f=\nalse,\"follow_request_sent\":false,\"notifications\":false},{\"id\":427475002,\"id=\n_str\":\"427475002\",\"name\":\"Twitter Books\",\"screen_name\":\"TwitterBooks\",\"loca=\ntion\":\"\",\"description\":\"We tweet from Twitter, Inc. about books and the fol=\nks who write them. If you're an author on Twitter, we'd love to hear from y=\nou.\",\"url\":\"https:\\/\\/t.co\\/OLhnfSo8Rg\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"=\nhttps:\\/\\/t.co\\/OLhnfSo8Rg\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/med=\nia\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"descriptio=\nn\":{\"urls\":[]}},\"protected\":false,\"followers_count\":745920,\"friends_count\":=\n37,\"listed_count\":2064,\"created_at\":\"Sat Dec 03 15:36:31 +0000 2011\",\"favou=\nrites_count\":5,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\"=\n,\"geo_enabled\":true,\"verified\":true,\"statuses_count\":375,\"lang\":\"en\",\"statu=\ns\":{\"created_at\":\"Tue Aug 13 22:02:19 +0000 2013\",\"id\":367405784469999616,\"=\nid_str\":\"367405784469999616\",\"text\":\"Want to chat with #MortalInstruments a=\nuthor @cassieclare? @ibooks is asking her your questions\\u2014 use the hash=\ntag #AskCassieClare!\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.tweetdeck.com=\n\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_=\nreply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user=\n_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"ge=\no\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\"=\n:7,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"MortalInstruments\",\"=\nindices\":[18,36]},{\"text\":\"AskCassieClare\",\"indices\":[112,127]}],\"symbols\":=\n[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"cassieclare\",\"name\":\"Cassandr=\na Clare\",\"id\":17467600,\"id_str\":\"17467600\",\"indices\":[44,56]},{\"screen_name=\n\":\"iBooks\",\"name\":\"iBooks\",\"id\":318571154,\"id_str\":\"318571154\",\"indices\":[5=\n8,65]}]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},\"contributors_ena=\nbled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"prof=\nile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images=\n\\/656930206\\/n92i3xazai7g7knlnqpp.png\",\"profile_background_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/656930206\\/n92i3xazai=\n7g7knlnqpp.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_images\\/3752494064\\/44a87fa30f16ab459a0573e14e863d4=\n6_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/3752494064\\/44a87fa30f16ab459a0573e14e863d46_normal.png\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/427475002\\/1347394463\"=\n,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"pro=\nfile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_us=\ne_background_image\":true,\"default_profile\":false,\"default_profile_image\":fa=\nlse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},{\"=\nid\":277761722,\"id_str\":\"277761722\",\"name\":\"Twitter UK\",\"screen_name\":\"Twitt=\nerUK\",\"location\":\"London, England\",\"description\":\"Twitter in the United Kin=\ngdom.\",\"url\":\"http:\\/\\/t.co\\/sA4QC7g9G6\",\"entities\":{\"url\":{\"urls\":[{\"url\":=\n\"http:\\/\\/t.co\\/sA4QC7g9G6\",\"expanded_url\":\"http:\\/\\/www.twitter.com\",\"disp=\nlay_url\":\"twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"prot=\nected\":false,\"followers_count\":179786,\"friends_count\":99,\"listed_count\":784=\n,\"created_at\":\"Wed Apr 06 00:11:41 +0000 2011\",\"favourites_count\":94,\"utc_o=\nffset\":3600,\"time_zone\":\"London\",\"geo_enabled\":true,\"verified\":true,\"status=\nes_count\":681,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 20:23:36 +0000=\n 2013\",\"id\":369917656654024704,\"id_str\":\"369917656654024704\",\"text\":\"As #1D=\n fever hits London, we've seen more than 3.6 million Tweets about @OneDirec=\ntion and the #1DMoviePremiere today:\\nhttp:\\/\\/t.co\\/Xug8l4UGDw\",\"source\":\"=\nweb\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_=\nstr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_rep=\nly_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contrib=\nutors\":null,\"retweet_count\":39,\"favorite_count\":0,\"entities\":{\"hashtags\":[{=\n\"text\":\"1D\",\"indices\":[3,6]},{\"text\":\"1DMoviePremiere\",\"indices\":[94,110]}]=\n,\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/Xug8l4UGDw\",\"expanded_url\":\"ht=\ntp:\\/\\/blog.uk.twitter.com\\/2013\\/08\\/1dmoviepremiere.html\",\"display_url\":\"=\nblog.uk.twitter.com\\/2013\\/08\\/1dmovi\\u2026\",\"indices\":[118,140]}],\"user_me=\nntions\":[{\"screen_name\":\"onedirection\",\"name\":\"One Direction\",\"id\":20970839=\n1,\"id_str\":\"209708391\",\"indices\":[72,85]}]},\"favorited\":false,\"retweeted\":f=\nalse,\"possibly_sensitive\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"=\nis_translator\":false,\"profile_background_color\":\"9BC0DE\",\"profile_backgroun=\nd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/663497905\\/=\n0a0s2uw01kdslf8yt0yc.png\",\"profile_background_image_url_https\":\"https:\\/\\/s=\ni0.twimg.com\\/profile_background_images\\/663497905\\/0a0s2uw01kdslf8yt0yc.pn=\ng\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_images\\/2284174643\\/t4f37ixzn1hnfr62iw7z_normal.png\",\"profile_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174643\\/t4f37i=\nxzn1hnfr62iw7z_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/p=\nrofile_banners\\/277761722\\/1348046961\",\"profile_link_color\":\"0084B4\",\"profi=\nle_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"A0C5C7\",\"pr=\nofile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_pro=\nfile\":false,\"default_profile_image\":false,\"following\":false,\"follow_request=\n_sent\":false,\"notifications\":false},{\"id\":167164816,\"id_str\":\"167164816\",\"n=\name\":\"Twitter\\u30b5\\u30dd\\u30fc\\u30c8\",\"screen_name\":\"TwitterHelpJP\",\"locat=\nion\":\"\",\"description\":\"Twitter\\u306b\\u95a2\\u3059\\u308b\\u4e0d\\u5177\\u5408\\u3=\n084\\u65b0\\u6a5f\\u80fd\\u3092\\u30c4\\u30a4\\u30fc\\u30c8\\u3067\\u3054\\u5831\\u544a=\n\\uff01\\u304a\\u56f0\\u308a\\u306e\\u969b\\u3001\\u307e\\u305a\\u3053\\u3061\\u3089\\u3=\n06e\\u30c4\\u30a4\\u30fc\\u30c8\\u3092\\u78ba\\u8a8d\\u3057http:\\/\\/t.co\\/WjE2P04Px=\nT \\u307e\\u305f\\u306fhttp:\\/\\/t.co\\/nPMGDOJVED\\u3092\\u3054\\u89a7\\u4e0b\\u3055=\n\\u3044\\u3002\\u305d\\u3061\\u3089\\u304b\\u3089\\u304a\\u554f\\u3044\\u5408\\u305b\\u3=\n082\\u53ef\\u80fd\\u3067\\u3059\\u3002@\\u30c4\\u30a4\\u30fc\\u30c8\\u3084DM\\u3092\\u3=\n044\\u305f\\u3060\\u3044\\u3066\\u3082\\u56de\\u7b54\\u3059\\u308b\\u3053\\u3068\\u304c=\n\\u3067\\u304d\\u307e\\u305b\\u3093\\u306e\\u3067\\u3054\\u4e86\\u627f\\u304f\\u3060\\u3=\n055\\u3044\\u3002\",\"url\":\"http:\\/\\/t.co\\/WjE2P04PxT\",\"entities\":{\"url\":{\"urls=\n\":[{\"url\":\"http:\\/\\/t.co\\/WjE2P04PxT\",\"expanded_url\":\"http:\\/\\/support.twit=\nter.com\",\"display_url\":\"support.twitter.com\",\"indices\":[0,22]}]},\"descripti=\non\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WjE2P04PxT\",\"expanded_url\":\"http:\\/\\/su=\npport.twitter.com\",\"display_url\":\"support.twitter.com\",\"indices\":[48,70]},{=\n\"url\":\"http:\\/\\/t.co\\/nPMGDOJVED\",\"expanded_url\":\"http:\\/\\/twtr.jp\\/page\\/h=\nelp\",\"display_url\":\"twtr.jp\\/page\\/help\",\"indices\":[74,96]}]}},\"protected\":=\nfalse,\"followers_count\":349434,\"friends_count\":155,\"listed_count\":7581,\"cre=\nated_at\":\"Thu Jul 15 22:37:46 +0000 2010\",\"favourites_count\":32,\"utc_offset=\n\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"veri=\nfied\":true,\"statuses_count\":4066,\"lang\":\"ja\",\"status\":{\"created_at\":\"Tue Au=\ng 13 23:52:08 +0000 2013\",\"id\":367433417794650112,\"id_str\":\"367433417794650=\n112\",\"text\":\"\\u5148\\u65e5\\u30e2\\u30d0\\u30a4\\u30eb\\u30a2\\u30d7\\u30ea\\u306e\\u=\n30a2\\u30c3\\u30d7\\u30c7\\u30fc\\u30c8\\u304c\\u3042\\u308a\\u3001\\u65e5\\u672c\\u306=\n7\\u3082\\u30ed\\u30b0\\u30a4\\u30f3\\u8a8d\\u8a3c\\u304c\\u4f7f\\u3048\\u308b\\u3088\\u=\n3046\\u306b\\u306a\\u308a\\u307e\\u3057\\u305f\\u3002\\u30ed\\u30b0\\u30a4\\u30f3\\u8a8=\nd\\u8a3c\\u3092\\u5229\\u7528\\u3059\\u308b\\u65b9\\u6cd5\\u306f\\u4ee5\\u4e0b\\u30d8\\u=\n30eb\\u30d7\\u3092\\u3054\\u89a7\\u304f\\u3060\\u3055\\u3044\\u3002(\\u30d1\\u30bd\\u30=\nb3\\u30f3\\/\\u30b9\\u30de\\u30db\\u7528) https:\\/\\/t.co\\/mpaDmgUPsS\",\"source\":\"w=\neb\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_s=\ntr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_repl=\ny_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contribu=\ntors\":null,\"retweet_count\":134,\"favorite_count\":0,\"entities\":{\"hashtags\":[]=\n,\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/mpaDmgUPsS\",\"expanded_url\":\"h=\nttps:\\/\\/support.twitter.com\\/articles\\/20170432-\",\"display_url\":\"support.t=\nwitter.com\\/articles\\/20170\\u2026\",\"indices\":[82,105]}],\"user_mentions\":[]}=\n,\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"ja\"=\n},\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_co=\nlor\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_background_images\\/819903197\\/ffaad5bca02cc4536400f81345e5683d.png\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/819903197\\/ffaad5bca02cc4536400f81345e5683d.png\",\"profile_backgro=\nund_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n2284174748\\/o26wjnpmzstufiwiq6a7_normal.png\",\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/2284174748\\/o26wjnpmzstufiwiq6a7_norm=\nal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/167=\n164816\\/1347989456\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_c=\nolor\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"=\n333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"defaul=\nt_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notif=\nications\":false},{\"id\":234489024,\"id_str\":\"234489024\",\"name\":\"Twitter Comms=\n\",\"screen_name\":\"twittercomms\",\"location\":\"\",\"description\":\"Talking to ever=\nyone, all at once!\",\"url\":\"https:\\/\\/t.co\\/6OS7PWwQ27\",\"entities\":{\"url\":{\"=\nurls\":[{\"url\":\"https:\\/\\/t.co\\/6OS7PWwQ27\",\"expanded_url\":\"https:\\/\\/www.vi=\nzify.com\\/twitter-comms\\/twitter-video\",\"display_url\":\"vizify.com\\/twitter-=\ncomms\\/\\u2026\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},\"protected\":f=\nalse,\"followers_count\":168348,\"friends_count\":155,\"listed_count\":1244,\"crea=\nted_at\":\"Wed Jan 05 19:52:33 +0000 2011\",\"favourites_count\":9,\"utc_offset\":=\n-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":false,\"verifi=\ned\":true,\"statuses_count\":552,\"lang\":\"en\",\"status\":{\"created_at\":\"Fri Aug 1=\n6 23:05:28 +0000 2013\",\"id\":368508839366111232,\"id_str\":\"368508839366111232=\n\",\"text\":\"RT @TwitterEng: An inside (and detailed) look at re-architecting =\nTwitter. Plus, a new Tweets-per-second peak: 143,199 Tweets. https:\\/\\/t.co=\n\\/\\u2026\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/tw=\nitter\\/id409789998?mt=3D12\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\=\n/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_statu=\ns_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"i=\nn_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"co=\nntributors\":null,\"retweeted_status\":{\"created_at\":\"Fri Aug 16 23:04:23 +000=\n0 2013\",\"id\":368508567092875266,\"id_str\":\"368508567092875266\",\"text\":\"An in=\nside (and detailed) look at re-architecting Twitter. Plus, a new Tweets-per=\n-second peak: 143,199 Tweets. https:\\/\\/t.co\\/LKH4UdScFi\",\"source\":\"\\u003ca=\n href=3D\\\"http:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\=\n\" rel=3D\\\"nofollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false=\n,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to=\n_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":nul=\nl,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_c=\nount\":588,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":=\n[{\"url\":\"https:\\/\\/t.co\\/LKH4UdScFi\",\"expanded_url\":\"https:\\/\\/blog.twitter=\n.com\\/2013\\/new-tweets-per-second-record-and-how\",\"display_url\":\"blog.twitt=\ner.com\\/2013\\/new-tweet\\u2026\",\"indices\":[110,133]}],\"user_mentions\":[]},\"f=\navorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},\"=\nretweet_count\":588,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[=\n],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"name\":\"Twitter En=\ngineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[3,14]}]},\"favorited\":=\nfalse,\"retweeted\":false,\"lang\":\"en\"},\"contributors_enabled\":false,\"is_trans=\nlator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/656936867\\/0btzj40r=\nx96yzxcn5qoa.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/656936867\\/0btzj40rx96yzxcn5qoa.png\",\"prof=\nile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_images\\/2284174874\\/h8zi79wfvlih4tcuh41y_normal.png\",\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174874\\/h8zi79wfvlih4t=\ncuh41y_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_b=\nanners\\/234489024\\/1347394908\",\"profile_link_color\":\"0084B4\",\"profile_sideb=\nar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_te=\nxt_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":fa=\nlse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\":f=\nalse,\"notifications\":false},{\"id\":222953824,\"id_str\":\"222953824\",\"name\":\"Tw=\nitter Government\",\"screen_name\":\"gov\",\"location\":\"Washington, DC\",\"descript=\nion\":\"Updates from the Twitter Government & Politics team, tracking creativ=\ne & effective uses of Twitter for civic engagement. RTs & examples\\u2260pol=\nitical endorsements.\",\"url\":\"https:\\/\\/t.co\\/2kb1ic93IQ\",\"entities\":{\"url\":=\n{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/2kb1ic93IQ\",\"expanded_url\":\"https:\\/\\/blog=\n.twitter.com\\/media\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[0,2=\n3]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":443827=\n,\"friends_count\":0,\"listed_count\":2383,\"created_at\":\"Sat Dec 04 23:27:01 +0=\n000 2010\",\"favourites_count\":9,\"utc_offset\":-14400,\"time_zone\":\"Eastern Tim=\ne (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":800,\"l=\nang\":\"en\",\"status\":{\"created_at\":\"Sun Aug 18 15:30:23 +0000 2013\",\"id\":3691=\n19087890149378,\"id_str\":\"369119087890149378\",\"text\":\"VIDEO: Our @AdamS and =\nProf. @fabiorojas discuss Twitter and U.S. House elections on @cspanwj w\\/ =\n@SteveScully. http:\\/\\/t.co\\/qPeQDZA3gY\",\"source\":\"\\u003ca href=3D\\\"http:\\/=\n\\/twitter.com\\\" rel=3D\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\"=\n,\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\"=\n:null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_t=\no_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributor=\ns\":null,\"retweet_count\":11,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"sy=\nmbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/qPeQDZA3gY\",\"expanded_url\":\"http:\\=\n/\\/www.c-spanvideo.org\\/program\\/Roj\",\"display_url\":\"c-spanvideo.org\\/progr=\nam\\/Roj\",\"indices\":[110,132]}],\"user_mentions\":[{\"screen_name\":\"AdamS\",\"nam=\ne\":\"Adam Sharp\",\"id\":21122578,\"id_str\":\"21122578\",\"indices\":[11,17]},{\"scre=\nen_name\":\"fabiorojas\",\"name\":\"Fabio Rojas\",\"id\":32386320,\"id_str\":\"32386320=\n\",\"indices\":[28,39]},{\"screen_name\":\"cspanwj\",\"name\":\"Washington Journal\",\"=\nid\":15923226,\"id_str\":\"15923226\",\"indices\":[84,92]},{\"screen_name\":\"SteveSc=\nully\",\"name\":\"Steve Scully\",\"id\":24926288,\"id_str\":\"24926288\",\"indices\":[96=\n,108]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"la=\nng\":\"en\"},\"contributors_enabled\":false,\"is_translator\":false,\"profile_backg=\nround_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_background_images\\/378138859\\/townhallbg.jpg\",\"profile_background=\n_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3781=\n38859\\/townhallbg.jpg\",\"profile_background_tile\":false,\"profile_image_url\":=\n\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284291316\\/xu1u3i11ugj03en53ujr_no=\nrmal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_image=\ns\\/2284291316\\/xu1u3i11ugj03en53ujr_normal.png\",\"profile_banner_url\":\"https=\n:\\/\\/pbs.twimg.com\\/profile_banners\\/222953824\\/1347996109\",\"profile_link_c=\nolor\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fil=\nl_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_ima=\nge\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":=\ntrue,\"follow_request_sent\":false,\"notifications\":false},{\"id\":263884490,\"id=\n_str\":\"263884490\",\"name\":\"Twitter Brasil\",\"screen_name\":\"TwitterBrasil\",\"lo=\ncation\":\"\",\"description\":\"Bem-Vindos \\u00e0 conta oficial do Twitter Brasil=\n! \\r\\nPrecisa de ajuda? Acesse https:\\/\\/t.co\\/THfvezxodd\\r\\nVisite o nosso=\n Blog https:\\/\\/t.co\\/bmRbB6RJ4i\",\"url\":null,\"entities\":{\"description\":{\"ur=\nls\":[{\"url\":\"https:\\/\\/t.co\\/THfvezxodd\",\"expanded_url\":\"https:\\/\\/support.=\ntwitter.com\\/forms\",\"display_url\":\"support.twitter.com\\/forms\",\"indices\":[7=\n3,96]},{\"url\":\"https:\\/\\/t.co\\/bmRbB6RJ4i\",\"expanded_url\":\"https:\\/\\/blog.t=\nwitter.com\\/pt\\/brasil\",\"display_url\":\"blog.twitter.com\\/pt\\/brasil\",\"indic=\nes\":[118,141]}]}},\"protected\":false,\"followers_count\":837836,\"friends_count=\n\":37,\"listed_count\":1975,\"created_at\":\"Thu Mar 10 22:54:23 +0000 2011\",\"fav=\nourites_count\":4,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada=\n)\",\"geo_enabled\":false,\"verified\":true,\"statuses_count\":172,\"lang\":\"pt\",\"st=\natus\":{\"created_at\":\"Tue Aug 20 23:31:29 +0000 2013\",\"id\":36996493828804608=\n0,\"id_str\":\"369964938288046080\",\"text\":\"Novo recurso do Twitter oferece his=\nt\\u00f3ria por tr\\u00e1s de um Tweet! Saiba mais aqui: https:\\/\\/t.co\\/d1h=\nEftwmWs #S\\u00f3NoTwitter\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_st=\natus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"=\nin_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"co=\nordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":15,\"favori=\nte_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"S\\u00f3NoTwitter\",\"indices\":[1=\n05,117]}],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/d1hEftwmWs\",\"expande=\nd_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/new-headlines-feature-offers-stor=\ny-behind-the-tweet\",\"display_url\":\"blog.twitter.com\\/2013\\/new-headl\\u2026\"=\n,\"indices\":[81,104]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":fal=\nse,\"possibly_sensitive\":false,\"lang\":\"pt\"},\"contributors_enabled\":false,\"is=\n_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/656932821\\/fq=\nxexancza09x852o0mk.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_background_images\\/656932821\\/fqxexancza09x852o0mk.png\"=\n,\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/2287296029\\/mh03rggtt66hifnh0ey3_normal.png\",\"profile_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2287296029\\/mh03rggt=\nt66hifnh0ey3_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/263884490\\/1347394642\",\"profile_link_color\":\"0084B4\",\"profile=\n_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"prof=\nile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profi=\nle\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_s=\nent\":false,\"notifications\":false}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "59586", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:19 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:19 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706577932652696; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:19 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066679", "x-transaction": "5e5a4f4ac029417d" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/direct_messages/new.json?text=test+message&user=tweepytest" }, "response": { "body_quoted_printable": "{\"sender_id\":82301637,\"id_str\":\"370066818972389376\",\"sender_id_str\":\"823016=\n37\",\"created_at\":\"Wed Aug 21 06:16:19 +0000 2013\",\"id\":370066818972389376,\"=\nrecipient\":{\"notifications\":false,\"followers_count\":7,\"profile_image_url_ht=\ntps\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1733327710\\/test_nor=\nmal.jpg\",\"time_zone\":\"Central Time (US & Canada)\",\"profile_background_image=\n_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/39=\n4345638\\/test.jpg\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profil=\ne_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/13770655=\n46\",\"profile_background_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"=\nstatuses_count\":126,\"is_translator\":false,\"id\":82301637,\"entities\":{\"url\":{=\n\"urls\":[{\"expanded_url\":\"http:\\/\\/foo.com\",\"indices\":[0,22],\"url\":\"http:\\/\\=\n/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\"}]},\"description\":{\"urls\":[]}},\"l=\nisted_count\":0,\"location\":\"pytopia\",\"profile_background_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"geo_enable=\nd\":true,\"profile_link_color\":\"0000FF\",\"follow_request_sent\":false,\"id_str\":=\n\"82301637\",\"lang\":\"en\",\"utc_offset\":-21600,\"profile_use_background_image\":f=\nalse,\"profile_text_color\":\"000000\",\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"verifie=\nd\":false,\"description\":\"A test account for testing stuff.\",\"favourites_coun=\nt\":2,\"profile_sidebar_border_color\":\"87BC44\",\"contributors_enabled\":false,\"=\ncreated_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":false,=\n\"profile_background_tile\":false,\"following\":false,\"screen_name\":\"tweepytest=\n\",\"profile_sidebar_fill_color\":\"E0FF92\",\"friends_count\":10},\"sender_screen_=\nname\":\"tweepytest\",\"sender\":{\"notifications\":false,\"followers_count\":7,\"pro=\nfile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/173=\n3327710\\/test_normal.jpg\",\"time_zone\":\"Central Time (US & Canada)\",\"profile=\n_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_back=\nground_images\\/394345638\\/test.jpg\",\"default_profile\":false,\"name\":\"Tweepy =\ntest 123\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/8=\n2301637\\/1377065546\",\"profile_background_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.=\nco\\/3L9bWVrV0b\",\"statuses_count\":126,\"is_translator\":false,\"id\":82301637,\"e=\nntities\":{\"url\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/foo.com\",\"indices\":[0,22=\n],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\"}]},\"description=\n\":{\"urls\":[]}},\"listed_count\":0,\"location\":\"pytopia\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test=\n.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"follow_request_sent=\n\":false,\"id_str\":\"82301637\",\"lang\":\"en\",\"utc_offset\":-21600,\"profile_use_ba=\nckground_image\":false,\"profile_text_color\":\"000000\",\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protecte=\nd\":false,\"verified\":false,\"description\":\"A test account for testing stuff.\"=\n,\"favourites_count\":2,\"profile_sidebar_border_color\":\"87BC44\",\"contributors=\n_enabled\":false,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_prof=\nile_image\":false,\"profile_background_tile\":false,\"following\":false,\"screen_=\nname\":\"tweepytest\",\"profile_sidebar_fill_color\":\"E0FF92\",\"friends_count\":10=\n},\"recipient_id_str\":\"82301637\",\"text\":\"test message\",\"entities\":{\"urls\":[]=\n,\"hashtags\":[],\"user_mentions\":[]},\"recipient_screen_name\":\"tweepytest\",\"re=\ncipient_id\":82301637}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3471", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:19 GMT", "etag": "\"04e95655b97960ad50b85ff3d8d675c6\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:19 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:19 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCFdChJ9AAToHaWQiJWI3NzY4ZDM2MmFjYjBl%250AMTdiOGQ0YzUwMjk5M2NjNTYyOgxjc3JmX2lkIiUyMjY2YTEzZTcwMGIwY2Mw%250AMDIzMjgzMTJiYWRkYmQ3Mw%253D%253D--0d0d20e026408394e6ff3665250bb5efc008ac1b; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706577978052770; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:19 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "1171339985975e2c9db2d36edc6362a5c685198b", "x-runtime": "0.09532", "x-transaction": "4ddc1b77ae5a44ad", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "DELETE", "port": 443, "url": "/1.1/direct_messages/destroy.json?id=370066818972389376" }, "response": { "body_quoted_printable": "{\"sender_id\":82301637,\"id_str\":\"370066818972389376\",\"sender_id_str\":\"823016=\n37\",\"created_at\":\"Wed Aug 21 06:16:19 +0000 2013\",\"id\":370066818972389376,\"=\nrecipient\":{\"notifications\":false,\"followers_count\":7,\"profile_image_url_ht=\ntps\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1733327710\\/test_nor=\nmal.jpg\",\"time_zone\":\"Central Time (US & Canada)\",\"profile_background_image=\n_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/39=\n4345638\\/test.jpg\",\"default_profile\":false,\"name\":\"Tweepy test 123\",\"profil=\ne_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/13770655=\n46\",\"profile_background_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"=\nstatuses_count\":126,\"is_translator\":false,\"id\":82301637,\"entities\":{\"url\":{=\n\"urls\":[{\"expanded_url\":\"http:\\/\\/foo.com\",\"indices\":[0,22],\"url\":\"http:\\/\\=\n/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\"}]},\"description\":{\"urls\":[]}},\"l=\nisted_count\":0,\"location\":\"pytopia\",\"profile_background_image_url\":\"http:\\/=\n\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"geo_enable=\nd\":true,\"profile_link_color\":\"0000FF\",\"follow_request_sent\":false,\"id_str\":=\n\"82301637\",\"lang\":\"en\",\"utc_offset\":-21600,\"profile_use_background_image\":f=\nalse,\"profile_text_color\":\"000000\",\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protected\":false,\"verifie=\nd\":false,\"description\":\"A test account for testing stuff.\",\"favourites_coun=\nt\":2,\"profile_sidebar_border_color\":\"87BC44\",\"contributors_enabled\":false,\"=\ncreated_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_profile_image\":false,=\n\"profile_background_tile\":false,\"following\":false,\"screen_name\":\"tweepytest=\n\",\"profile_sidebar_fill_color\":\"E0FF92\",\"friends_count\":10},\"sender_screen_=\nname\":\"tweepytest\",\"sender\":{\"notifications\":false,\"followers_count\":7,\"pro=\nfile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/173=\n3327710\\/test_normal.jpg\",\"time_zone\":\"Central Time (US & Canada)\",\"profile=\n_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_back=\nground_images\\/394345638\\/test.jpg\",\"default_profile\":false,\"name\":\"Tweepy =\ntest 123\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/8=\n2301637\\/1377065546\",\"profile_background_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.=\nco\\/3L9bWVrV0b\",\"statuses_count\":126,\"is_translator\":false,\"id\":82301637,\"e=\nntities\":{\"url\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/foo.com\",\"indices\":[0,22=\n],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\"}]},\"description=\n\":{\"urls\":[]}},\"listed_count\":0,\"location\":\"pytopia\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test=\n.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"follow_request_sent=\n\":false,\"id_str\":\"82301637\",\"lang\":\"en\",\"utc_offset\":-21600,\"profile_use_ba=\nckground_image\":false,\"profile_text_color\":\"000000\",\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"protecte=\nd\":false,\"verified\":false,\"description\":\"A test account for testing stuff.\"=\n,\"favourites_count\":2,\"profile_sidebar_border_color\":\"87BC44\",\"contributors=\n_enabled\":false,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_prof=\nile_image\":false,\"profile_background_tile\":false,\"following\":false,\"screen_=\nname\":\"tweepytest\",\"profile_sidebar_fill_color\":\"E0FF92\",\"friends_count\":10=\n},\"recipient_id_str\":\"82301637\",\"text\":\"test message\",\"entities\":{\"urls\":[]=\n,\"hashtags\":[],\"user_mentions\":[]},\"recipient_screen_name\":\"tweepytest\",\"re=\ncipient_id\":82301637}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "3471", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:20 GMT", "etag": "\"04e95655b97960ad50b85ff3d8d675c6\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:20 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:20 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCNlDhJ9AAToHaWQiJWUzNTBjN2FkYzU4Nzhh%250AOWJiYzMzYWM1YTM1ZjNhZTk2Ogxjc3JmX2lkIiVlMWUzZTk5NTM1Y2VjMzRk%250AZTE1NWYzYmJmZTNiNWE4MQ%253D%253D--6e1f039b77888f36a8132c078c53ec5c7812c91e; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578013299115; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:20 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "98f48035bf28076acb2cc60b3d4af88baeec4483", "x-runtime": "0.04316", "x-transaction": "bbbd2d04906e5386", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/direct_messages/sent.json" }, "response": { "body_quoted_printable": "[{\"id\":266403740574167040,\"id_str\":\"266403740574167040\",\"text\":\"test messag=\ne\",\"sender\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"sc=\nreen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account =\nfor testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"u=\nrls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",=\n\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"pro=\ntected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"crea=\nted_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":=\n-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verifie=\nd\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_=\ntranslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/tes=\nt.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,=\n\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/tes=\nt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twi=\nmg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF=\n\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0F=\nF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"de=\nfault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follo=\nw_request_sent\":false,\"notifications\":false},\"sender_id\":82301637,\"sender_i=\nd_str\":\"82301637\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301=\n637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\"=\n,\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"ur=\nl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\"=\n,\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follower=\ns_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:=\n28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cen=\ntral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_coun=\nt\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"prof=\nile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test=\n_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_bord=\ner_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_colo=\nr\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"d=\nefault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"=\nnotifications\":false},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\"=\n,\"recipient_screen_name\":\"tweepytest\",\"created_at\":\"Thu Nov 08 04:56:15 +00=\n00 2012\",\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[=\n]}},{\"id\":460163613,\"id_str\":\"460163613\",\"text\":\"test message\",\"sender\":{\"i=\nd\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"twe=\nepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing stu=\nff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"h=\nttp:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"=\nfoo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"=\nfollowers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oc=\nt 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zo=\nne\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statu=\nses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile=\n_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_i=\nmages\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/17333277=\n10\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/82301637\\/1377065546\",\"profile_link_color\":\"0000FF\",\"profile_side=\nbar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_t=\next_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\"=\n:false,\"notifications\":false},\"sender_id\":82301637,\"sender_id_str\":\"8230163=\n7\",\"sender_screen_name\":\"tweepytest\",\"recipient\":{\"id\":82301637,\"id_str\":\"8=\n2301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"py=\ntopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.=\nco\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0=\nb\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,2=\n2]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"fri=\nends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 200=\n9\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US &=\n Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"=\nen\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_=\ncolor\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.=\njpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"p=\nrofile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137=\n7065546\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC=\n44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"pr=\nofile_use_background_image\":false,\"default_profile\":false,\"default_profile_=\nimage\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":=\nfalse},\"recipient_id\":82301637,\"recipient_id_str\":\"82301637\",\"recipient_scr=\neen_name\":\"tweepytest\",\"created_at\":\"Thu Oct 15 23:47:36 +0000 2009\",\"entit=\nies\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]}}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "6889", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:20 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:20 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706578041075201; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:20 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066680", "x-transaction": "f1d1135f86594e86" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/friendships/show.json?target_screen_name=twitter" }, "response": { "body_quoted_printable": "{\"relationship\":{\"source\":{\"id\":82301637,\"id_str\":\"82301637\",\"screen_name\":=\n\"tweepytest\",\"following\":false,\"followed_by\":false,\"notifications_enabled\":=\nfalse,\"can_dm\":false,\"blocking\":false,\"want_retweets\":false,\"all_replies\":f=\nalse,\"marked_spam\":false},\"target\":{\"id\":783214,\"id_str\":\"783214\",\"screen_n=\name\":\"twitter\",\"following\":false,\"followed_by\":false}}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "355", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:20 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:20 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706578062209401; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:20 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066680", "x-transaction": "5c7dcf7136e1fb9d" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/members/show.json?owner_screen_name=applepie&screen_name=NathanFillion&slug=stars" }, "response": { "body_quoted_printable": "{\"is_translator\":false,\"notifications\":false,\"name\":\"Nathan Fillion\",\"profi=\nle_background_tile\":true,\"profile_sidebar_fill_color\":\"efefef\",\"profile_ima=\nge_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/37880000022=\n8812095\\/523df67b08e07f4bde1ba442a7e931fa_normal.jpeg\",\"favourites_count\":1=\n25,\"url\":null,\"id\":31353077,\"followers_count\":1904747,\"time_zone\":\"Pacific =\nTime (US & Canada)\",\"entities\":{\"description\":{\"urls\":[]}},\"status\":{\"contr=\nibutors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"370035073728258048\",=\n\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_=\nscreen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/tapbots.com\\/tweetbot=\n\\\" rel=3D\\\"nofollow\\\"\\u003ETweetbot for iOS\\u003C\\/a\\u003E\",\"in_reply_to_us=\ner_id_str\":null,\"geo\":null,\"favorited\":false,\"id\":370035073728258048,\"creat=\ned_at\":\"Wed Aug 21 04:10:11 +0000 2013\",\"truncated\":false,\"in_reply_to_user=\n_id\":null,\"text\":\"Dear @JesseHeiman,\\nI believe you have something that bel=\nongs to me...?\",\"coordinates\":null,\"retweet_count\":17,\"entities\":{\"hashtags=\n\":[],\"user_mentions\":[{\"id_str\":\"24197313\",\"screen_name\":\"JesseHeiman\",\"id\"=\n:24197313,\"indices\":[5,17],\"name\":\"Jesse Heiman \"}],\"urls\":[]}},\"default_pr=\nofile_image\":false,\"location\":\"Los Angeles\",\"profile_background_color\":\"131=\n516\",\"friends_count\":427,\"profile_background_image_url_https\":\"https:\\/\\/tw=\nimg0-a.akamaihd.net\\/images\\/themes\\/theme14\\/bg.gif\",\"default_profile\":fal=\nse,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"profile_banner_url\":\"https=\n:\\/\\/pbs.twimg.com\\/profile_banners\\/31353077\\/1375475379\",\"geo_enabled\":fa=\nlse,\"profile_link_color\":\"009999\",\"follow_request_sent\":false,\"statuses_cou=\nnt\":5147,\"id_str\":\"31353077\",\"protected\":false,\"description\":\"It costs noth=\ning to say something kind. Even less to shut up altogether.\",\"listed_count\"=\n:34947,\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"c=\nreated_at\":\"Wed Apr 15 05:57:40 +0000 2009\",\"verified\":true,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000228812095\\/523df67b08=\ne07f4bde1ba442a7e931fa_normal.jpeg\",\"following\":false,\"screen_name\":\"Nathan=\nFillion\",\"profile_sidebar_border_color\":\"eeeeee\",\"contributors_enabled\":fal=\nse}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2249", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:21 GMT", "etag": "\"32bc2502194d227fe0e563007d0c4d5a\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:20 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:20 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCHFGhJ9AAToHaWQiJTUwOTY1OTE4Yzk4MTU4%250AYTI5OTI2OWE5MTdiN2VhMzI5--3507b8053427e302414f0b7498f01efa469ac8e3; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578082997697; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:21 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "709a38eefa3b08077bcd8ac519bc93adba30ca51", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066680", "x-runtime": "0.46347", "x-transaction": "23d1204b80993e26", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/lists/subscribers/show.json?screen_name=applepie&slug=test&owner_screen_name=tweepytest" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"name\":\"Josh\",\"profile_image_url_https\":\"https:\\/\\/s=\ni0.twimg.com\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_=\nnormal.jpeg\",\"profile_background_tile\":false,\"default_profile_image\":false,=\n\"profile_sidebar_fill_color\":\"DFE1EB\",\"url\":null,\"friends_count\":301,\"id\":9=\n302282,\"followers_count\":456,\"time_zone\":\"Pacific Time (US & Canada)\",\"enti=\nties\":{\"description\":{\"urls\":[]}},\"status\":{\"in_reply_to_status_id_str\":\"36=\n9681545843310594\",\"contributors\":null,\"place\":{\"country_code\":\"US\",\"full_na=\nme\":\"Santa Clara, CA\",\"id\":\"4b58830723ec6371\",\"place_type\":\"city\",\"url\":\"ht=\ntps:\\/\\/api.twitter.com\\/1.1\\/geo\\/id\\/4b58830723ec6371.json\",\"country\":\"Un=\nited States\",\"bounding_box\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.005403,=\n37.32295],[-121.929689,37.32295],[-121.929689,37.418922],[-122.005403,37.41=\n8922]]]},\"attributes\":{},\"name\":\"Santa Clara\"},\"retweeted\":false,\"id_str\":\"=\n369685091045232640\",\"in_reply_to_user_id_str\":\"8038312\",\"in_reply_to_status=\n_id\":369681545843310594,\"in_reply_to_screen_name\":\"izs\",\"source\":\"web\",\"geo=\n\":null,\"favorited\":false,\"id\":369685091045232640,\"created_at\":\"Tue Aug 20 0=\n4:59:28 +0000 2013\",\"truncated\":false,\"in_reply_to_user_id\":8038312,\"text\":=\n\"@izs spooning > forking Where's the \\\"spoon\\\" button?\",\"coordinates\":nu=\nll,\"retweet_count\":0,\"entities\":{\"hashtags\":[],\"user_mentions\":[{\"id_str\":\"=\n8038312\",\"screen_name\":\"izs\",\"id\":8038312,\"indices\":[0,4],\"name\":\"isaacs\"}]=\n,\"urls\":[]}},\"location\":\"Santa Clara, CA\",\"profile_background_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/8076084\\/200911032=\n903-12395.jpg\",\"default_profile\":false,\"profile_background_color\":\"010708\",=\n\"statuses_count\":7286,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_background_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/8076084\\/20091=\n1032903-12395.jpg\",\"listed_count\":24,\"geo_enabled\":true,\"profile_link_color=\n\":\"0000FF\",\"follow_request_sent\":false,\"id_str\":\"9302282\",\"protected\":false=\n,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of convertin=\ng caffeine into code.\",\"profile_use_background_image\":true,\"profile_text_co=\nlor\":\"000000\",\"created_at\":\"Mon Oct 08 03:00:34 +0000 2007\",\"is_translator\"=\n:false,\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",\"followi=\nng\":true,\"screen_name\":\"applepie\",\"profile_sidebar_border_color\":\"000000\",\"=\nfavourites_count\":4,\"contributors_enabled\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2449", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:21 GMT", "etag": "\"807155e70f7b445732cc0311b3f26904\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:21 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:21 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCCRJhJ9AAToHaWQiJTBhZjgyNjE1YTdhYmY5%250AYTg5MDIxYWQwY2VkMDc5NTRh--8d9b315962011d3ba055f5321a84ceaebb8f86bc; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578152087318; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:21 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "82b95f4b14b389c6ec292213242af80e7efa978e", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066681", "x-runtime": "0.04202", "x-transaction": "14aaf3faf91fa464", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/subscribers/create.json?slug=stars&owner_screen_name=applepie" }, "response": { "body_quoted_printable": "{\"full_name\":\"@applepie\\/lists\\/stars\",\"user\":{\"notifications\":false,\"defau=\nlt_profile_image\":false,\"name\":\"Josh\",\"profile_background_tile\":false,\"prof=\nile_sidebar_fill_color\":\"DFE1EB\",\"friends_count\":301,\"url\":null,\"id\":930228=\n2,\"followers_count\":456,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_b=\nackground_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_backgr=\nound_images\\/8076084\\/200911032903-12395.jpg\",\"entities\":{\"description\":{\"u=\nrls\":[]}},\"default_profile\":false,\"location\":\"Santa Clara, CA\",\"profile_bac=\nkground_color\":\"010708\",\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akama=\nihd.net\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_norma=\nl.jpeg\",\"statuses_count\":7286,\"lang\":\"en\",\"listed_count\":24,\"utc_offset\":-2=\n8800,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/8076084\\/200911032903-12395.jpg\",\"geo_enabled\":true,\"profile_li=\nnk_color\":\"0000FF\",\"follow_request_sent\":false,\"id_str\":\"9302282\",\"protecte=\nd\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of c=\nonverting caffeine into code.\",\"profile_use_background_image\":true,\"is_tran=\nslator\":false,\"profile_text_color\":\"000000\",\"created_at\":\"Mon Oct 08 03:00:=\n34 +0000 2007\",\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",=\n\"following\":true,\"screen_name\":\"applepie\",\"favourites_count\":4,\"profile_sid=\nebar_border_color\":\"000000\",\"contributors_enabled\":false},\"slug\":\"stars\",\"f=\nollowing\":true,\"created_at\":\"Fri Oct 16 00:25:42 +0000 2009\",\"id\":8078,\"mem=\nber_count\":55,\"mode\":\"public\",\"id_str\":\"8078\",\"subscriber_count\":8,\"uri\":\"\\=\n/applepie\\/lists\\/stars\",\"description\":\"\",\"name\":\"stars\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1707", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:21 GMT", "etag": "\"70bf1fe7882a1d77911be33c49f30353\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:21 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:21 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCDxKhJ9AAToHaWQiJTQ0ZTM3MjI3Y2YwYTIz%250AYTI1NDE0ZWM2NzYyMWE5ZTJhOgxjc3JmX2lkIiVlZTcwMGJhMDczMDg0ZjI0%250AMjc4MzUwODE5YjMyNTlhZQ%253D%253D--740fa8df2464bd522b9919e85cbcd187b5ca2b23; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578179802006; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:21 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "f7bc7f897d6afd8f644648ff90b8ea3b854e8701", "x-runtime": "0.08651", "x-transaction": "69b7427266d461d9", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/lists/subscribers/destroy.json?slug=stars&owner_screen_name=applepie" }, "response": { "body_quoted_printable": "{\"full_name\":\"@applepie\\/lists\\/stars\",\"user\":{\"notifications\":false,\"defau=\nlt_profile_image\":false,\"name\":\"Josh\",\"profile_background_tile\":false,\"prof=\nile_sidebar_fill_color\":\"DFE1EB\",\"friends_count\":301,\"url\":null,\"id\":930228=\n2,\"followers_count\":456,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_b=\nackground_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_backgr=\nound_images\\/8076084\\/200911032903-12395.jpg\",\"entities\":{\"description\":{\"u=\nrls\":[]}},\"default_profile\":false,\"location\":\"Santa Clara, CA\",\"profile_bac=\nkground_color\":\"010708\",\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akama=\nihd.net\\/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_norma=\nl.jpeg\",\"statuses_count\":7286,\"lang\":\"en\",\"listed_count\":24,\"utc_offset\":-2=\n8800,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/8076084\\/200911032903-12395.jpg\",\"geo_enabled\":true,\"profile_li=\nnk_color\":\"0000FF\",\"follow_request_sent\":false,\"id_str\":\"9302282\",\"protecte=\nd\":false,\"description\":\"pro\\u00b7gram\\u00b7mer (n) An organism capable of c=\nonverting caffeine into code.\",\"profile_use_background_image\":true,\"is_tran=\nslator\":false,\"profile_text_color\":\"000000\",\"created_at\":\"Mon Oct 08 03:00:=\n34 +0000 2007\",\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/2813279506\\/f0addfcfa062b23a94c00931ff35f03a_normal.jpeg\",=\n\"following\":true,\"screen_name\":\"applepie\",\"favourites_count\":4,\"profile_sid=\nebar_border_color\":\"000000\",\"contributors_enabled\":false},\"id_str\":\"8078\",\"=\nslug\":\"stars\",\"subscriber_count\":7,\"following\":false,\"created_at\":\"Fri Oct =\n16 00:25:42 +0000 2009\",\"id\":8078,\"mode\":\"public\",\"uri\":\"\\/applepie\\/lists\\=\n/stars\",\"member_count\":55,\"description\":\"\",\"name\":\"stars\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1708", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:22 GMT", "etag": "\"d7b952f9dea644c87da380a6429db9b3\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:22 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:22 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCOBNhJ9AAToHaWQiJTc1YjE0MzIzOGQ4YjY2%250AZjFjMDg1N2I2NmU1NjMxOGQ4Ogxjc3JmX2lkIiU2ZTc0YWQ4ZTE3YjJiMTgz%250AZjAzMzBlMDY4NTkxZDZiMQ%253D%253D--079eb24874cced589d48e75935ee4536ed1dfd80; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578273417595; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:22 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "110097346c589aa659d24d9c1df80bab8ff1ff0c", "x-runtime": "0.06782", "x-transaction": "affc35fb1edc1a9a", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/suggestions.json" }, "response": { "body_quoted_printable": "[{\"slug\":\"music\",\"size\":99,\"name\":\"Music\"},{\"slug\":\"sports\",\"size\":74,\"name=\n\":\"Sports\"},{\"slug\":\"entertainment\",\"size\":81,\"name\":\"Entertainment\"},{\"slu=\ng\":\"funny\",\"size\":61,\"name\":\"Funny\"},{\"slug\":\"twitter\",\"size\":46,\"name\":\"Tw=\nitter\"},{\"slug\":\"news\",\"size\":49,\"name\":\"News\"},{\"slug\":\"technology\",\"size\"=\n:56,\"name\":\"Technology\"},{\"slug\":\"fashion\",\"size\":62,\"name\":\"Fashion\"},{\"sl=\nug\":\"food-drink\",\"size\":64,\"name\":\"Food & Drink\"},{\"slug\":\"television\",\"siz=\ne\":209,\"name\":\"Television\"},{\"slug\":\"family\",\"size\":38,\"name\":\"Family\"},{\"s=\nlug\":\"art-design\",\"size\":69,\"name\":\"Art & Design\"},{\"slug\":\"business\",\"size=\n\":45,\"name\":\"Business\"},{\"slug\":\"health\",\"size\":46,\"name\":\"Health\"},{\"slug\"=\n:\"books\",\"size\":62,\"name\":\"Books\"},{\"slug\":\"science\",\"size\":49,\"name\":\"Scie=\nnce\"},{\"slug\":\"faith-and-religion\",\"size\":76,\"name\":\"Faith and Religion\"},{=\n\"slug\":\"government\",\"size\":52,\"name\":\"Government\"},{\"slug\":\"social-good\",\"s=\nize\":48,\"name\":\"Social Good\"},{\"slug\":\"nba\",\"size\":127,\"name\":\"NBA\"},{\"slug=\n\":\"travel\",\"size\":44,\"name\":\"Travel\"},{\"slug\":\"staff-picks\",\"size\":69,\"name=\n\":\"Staff Picks\"},{\"slug\":\"mlb\",\"size\":80,\"name\":\"MLB\"},{\"slug\":\"nascar\",\"si=\nze\":98,\"name\":\"NASCAR\"},{\"slug\":\"nhl\",\"size\":62,\"name\":\"NHL\"},{\"slug\":\"pga\"=\n,\"size\":127,\"name\":\"PGA\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1226", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:23 GMT", "etag": "\"7b9d26d97f1e7eaf05052ed300521dad\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:23 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:23 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCPxOhJ9AAToHaWQiJWU2OWU4ODc2OTI3YzAx%250AMWVlNWZhMDRjYWM2NGY2NmVk--38faa7a66d82fce902bb522673cd1ddcf3b0e0c3; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578301518213; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:23 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "dfcfff0b6de37f77b34a03ed0a43aee71a4e4246", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066683", "x-runtime": "0.03593", "x-transaction": "f892b15ed09d68c8", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/suggestions/music.json" }, "response": { "body_quoted_printable": "{\"slug\":\"music\",\"size\":99,\"users\":[{\"notifications\":false,\"name\":\"Rihanna\",=\n\"profile_background_tile\":false,\"default_profile_image\":false,\"profile_side=\nbar_fill_color\":\"EFEFEF\",\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"friends_count\":=\n969,\"id\":79293791,\"followers_count\":31178509,\"time_zone\":\"Pacific Time (US =\n& Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.c=\no\\/v6qLcjAydl\",\"display_url\":\"rihannanow.com\",\"expanded_url\":\"http:\\/\\/www.=\nrihannanow.com\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smartur=\nl.it\\/UnapologeticDlx\",\"url\":\"http:\\/\\/t.co\\/t8Fc0HpXae\",\"indices\":[42,64],=\n\"display_url\":\"smarturl.it\\/UnapologeticDlx\"},{\"expanded_url\":\"http:\\/\\/sma=\nrturl.it\\/RihannaStay\",\"url\":\"http:\\/\\/t.co\\/WCyNUJNH29\",\"indices\":[86,108]=\n,\"display_url\":\"smarturl.it\\/RihannaStay\"},{\"expanded_url\":\"http:\\/\\/amzn.t=\no\\/13rkPEU\",\"url\":\"http:\\/\\/t.co\\/tfjLQW1StI\",\"indices\":[138,160],\"display_=\nurl\":\"amzn.to\\/13rkPEU\"}]}},\"location\":\"LA BABY!\",\"profile_background_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/869915227\\=\n/c41bee10b01787134a97dcb7438a0b0d.jpeg\",\"default_profile\":false,\"profile_ba=\nckground_color\":\"131516\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/79293791\\/1350068237\",\"statuses_count\":8243,\"lang\":\"en\",\"utc_=\noffset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nimages\\/3096110144\\/d097a719dba080cc99ca9dbfba85dfa4_normal.jpeg\",\"profile_=\nbackground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/86=\n9915227\\/c41bee10b01787134a97dcb7438a0b0d.jpeg\",\"listed_count\":90546,\"geo_e=\nnabled\":false,\"profile_link_color\":\"009999\",\"follow_request_sent\":false,\"id=\n_str\":\"79293791\",\"is_translator\":false,\"protected\":false,\"description\":\"Una=\npologetic, new album out now worldwide http:\\/\\/t.co\\/t8Fc0HpXae \\r\\n\\r\\nDo=\nwnload 'Stay' http:\\/\\/t.co\\/WCyNUJNH29\\r\\n777 Tour DVD Available NOW htt=\np:\\/\\/t.co\\/tfjLQW1StI\",\"profile_use_background_image\":true,\"profile_text_c=\nolor\":\"333333\",\"created_at\":\"Fri Oct 02 21:37:33 +0000 2009\",\"verified\":tru=\ne,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3096110144\\/d=\n097a719dba080cc99ca9dbfba85dfa4_normal.jpeg\",\"following\":false,\"screen_name=\n\":\"rihanna\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":319,=\n\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Shakira\",\"prof=\nile_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar_f=\nill_color\":\"C3E2FA\",\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"friends_count\":88,\"i=\nd\":44409004,\"followers_count\":21787023,\"time_zone\":\"Eastern Time (US & Cana=\nda)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Hj5=\nKfwjYJO\",\"display_url\":\"shakira.com\",\"expanded_url\":\"http:\\/\\/www.shakira.c=\nom\"}]},\"description\":{\"urls\":[]}},\"location\":\"Barranquilla\",\"profile_backgr=\nound_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/=\n585574393\\/w2qknrpubwprq07kvvz7.jpeg\",\"default_profile\":false,\"profile_back=\nground_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/44409004\\/1374010844\",\"statuses_count\":2033,\"lang\":\"en\",\"utc_of=\nfset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_im=\nages\\/378800000039826497\\/5df112163499cde887b50b16711666c7_normal.jpeg\",\"pr=\nofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_imag=\nes\\/585574393\\/w2qknrpubwprq07kvvz7.jpeg\",\"listed_count\":98582,\"geo_enabled=\n\":false,\"profile_link_color\":\"EDAB13\",\"follow_request_sent\":false,\"id_str\":=\n\"44409004\",\"is_translator\":false,\"protected\":false,\"description\":\"Welcome t=\no Shakira's Official Twitter Profile \\/ Bienvenidos al Perfil Oficial de Sh=\nakira en Twitter\",\"profile_use_background_image\":true,\"profile_text_color\":=\n\"080808\",\"created_at\":\"Wed Jun 03 17:38:07 +0000 2009\",\"verified\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000039826497\\=\n/5df112163499cde887b50b16711666c7_normal.jpeg\",\"following\":false,\"screen_na=\nme\":\"shakira\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":2,=\n\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Katy Perry\",\"p=\nrofile_background_tile\":false,\"default_profile_image\":false,\"profile_sideba=\nr_fill_color\":\"78C0A8\",\"url\":\"http:\\/\\/t.co\\/Y9MwzDOpMV\",\"friends_count\":12=\n3,\"id\":21447363,\"followers_count\":41172507,\"time_zone\":\"Alaska\",\"entities\":=\n{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Y9MwzDOpMV\",\"displa=\ny_url\":\"katyperry.com\",\"expanded_url\":\"http:\\/\\/www.katyperry.com\"}]},\"desc=\nription\":{\"urls\":[]}},\"location\":\"REALITY\",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/37880000005015299=\n5\\/e75100d9264b22a66585a9de9cfca669.jpeg\",\"default_profile\":false,\"profile_=\nbackground_color\":\"210538\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/p=\nrofile_banners\\/21447363\\/1376330374\",\"statuses_count\":4868,\"lang\":\"en\",\"ut=\nc_offset\":-32400,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_images\\/378800000230869090\\/e3b3fb06545c77d4c70519d3674e50b7_normal.jpeg\"=\n,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_=\nimages\\/378800000050152995\\/e75100d9264b22a66585a9de9cfca669.jpeg\",\"listed_=\ncount\":134308,\"geo_enabled\":false,\"profile_link_color\":\"803D72\",\"follow_req=\nuest_sent\":false,\"id_str\":\"21447363\",\"is_translator\":false,\"protected\":fals=\ne,\"description\":\"Tweaking the (t)werk into a prism burst...\",\"profile_use_b=\nackground_image\":true,\"profile_text_color\":\"5E412F\",\"created_at\":\"Fri Feb 2=\n0 23:45:56 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/profile_images\\/378800000230869090\\/e3b3fb06545c77d4c70519d3674e50b=\n7_normal.jpeg\",\"following\":false,\"screen_name\":\"katyperry\",\"profile_sidebar=\n_border_color\":\"FFFFFF\",\"favourites_count\":2,\"contributors_enabled\":false},=\n{\"notifications\":false,\"name\":\"Taylor Swift\",\"profile_background_tile\":fals=\ne,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\"=\n:\"http:\\/\\/t.co\\/hZtHeBu93U\",\"friends_count\":108,\"id\":17919972,\"followers_c=\nount\":32691043,\"time_zone\":null,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22=\n],\"url\":\"http:\\/\\/t.co\\/hZtHeBu93U\",\"display_url\":\"twitter.com\\/taylorswift=\n13\",\"expanded_url\":\"http:\\/\\/twitter.com\\/taylorswift13\"}]},\"description\":{=\n\"urls\":[]}},\"location\":null,\"profile_background_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e=\n6a9eada9945.jpeg\",\"default_profile\":false,\"profile_background_color\":\"C0DEE=\nD\",\"statuses_count\":1895,\"lang\":\"en\",\"utc_offset\":null,\"profile_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1825696714\\/image_normal.jp=\ng\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"listed_count\":=\n112309,\"geo_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_se=\nnt\":false,\"id_str\":\"17919972\",\"is_translator\":false,\"protected\":false,\"desc=\nription\":\"Happy. Free. Confused. Lonely. \\nAt the same time.\",\"profile_use_=\nbackground_image\":false,\"profile_text_color\":\"333333\",\"created_at\":\"Sat Dec=\n 06 10:10:54 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_images\\/1825696714\\/image_normal.jpg\",\"following\":false,\"=\nscreen_name\":\"taylorswift13\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favou=\nrites_count\":0,\"contributors_enabled\":false},{\"notifications\":false,\"name\":=\n\"Justin Bieber\",\"profile_background_tile\":true,\"default_profile_image\":fals=\ne,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/2oSNE36kNM\",\"=\nfriends_count\":121817,\"id\":27260086,\"followers_count\":43380804,\"time_zone\":=\n\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"=\nurl\":\"http:\\/\\/t.co\\/2oSNE36kNM\",\"display_url\":\"youtube.com\\/justinbieber\",=\n\"expanded_url\":\"http:\\/\\/www.youtube.com\\/justinbieber\"}]},\"description\":{\"=\nurls\":[]}},\"location\":\"All Around The World\",\"profile_background_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/885769807\\/043f=\naf7949366ef2486c28a74311aa5d.jpeg\",\"default_profile\":false,\"profile_backgro=\nund_color\":\"C0DEED\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_=\nbanners\\/27260086\\/1355357428\",\"statuses_count\":23184,\"lang\":\"en\",\"utc_offs=\net\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_imag=\nes\\/3467035972\\/4c978ba8510da3fb77d2d5e9ae7c93f0_normal.jpeg\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/885769=\n807\\/043faf7949366ef2486c28a74311aa5d.jpeg\",\"listed_count\":553213,\"geo_enab=\nled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_st=\nr\":\"27260086\",\"is_translator\":false,\"protected\":false,\"description\":\"#BELIE=\nVE is on ITUNES and in STORES WORLDWIDE! - SO MUCH LOVE FOR THE FANS...you =\nare always there for me and I will always be there for you. MUCH LOVE. than=\nks\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"crea=\nted_at\":\"Sat Mar 28 16:41:22 +0000 2009\",\"verified\":true,\"profile_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3467035972\\/4c978ba8510da3fb77d2d=\n5e9ae7c93f0_normal.jpeg\",\"following\":false,\"screen_name\":\"justinbieber\",\"pr=\nofile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":13,\"contributors_en=\nabled\":false},{\"notifications\":false,\"name\":\"Lady Gaga\",\"profile_background=\n_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"DDF=\nFCC\",\"url\":\"http:\\/\\/t.co\\/6y7xRxEuw3\",\"friends_count\":135223,\"id\":14230524=\n,\"followers_count\":39790418,\"time_zone\":\"Quito\",\"entities\":{\"url\":{\"urls\":[=\n{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/6y7xRxEuw3\",\"display_url\":\"smarturl=\n.it\\/Applause\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Applause\"}]},\"descript=\nion\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\/Applause\",\"url\":\"http:=\n\\/\\/t.co\\/6y7xRxEuw3\",\"indices\":[71,93],\"display_url\":\"smarturl.it\\/Applaus=\ne\"}]}},\"location\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_background_images\\/378800000050060495\\/13506f61e5eb69fd1=\n09095c8d7edd701.jpeg\",\"default_profile\":false,\"profile_background_color\":\"F=\nAF0FA\",\"statuses_count\":2970,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000280665322\\/b=\ndd8a8c3b63f6aeb83f21c77f640723f_normal.jpeg\",\"profile_background_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000050060495\\/135=\n06f61e5eb69fd109095c8d7edd701.jpeg\",\"listed_count\":242971,\"geo_enabled\":fal=\nse,\"profile_link_color\":\"2FC2EF\",\"follow_request_sent\":false,\"id_str\":\"1423=\n0524\",\"is_translator\":false,\"protected\":false,\"description\":\"BUY MY NEW SIN=\nGLE 'APPLAUSE' AND PRE-ORDER MY ALBUM 'ARTPOP' HERE NOW! http:\\/\\/t.co\\/6y7=\nxRxEuw3\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",=\n\"created_at\":\"Wed Mar 26 22:37:48 +0000 2008\",\"verified\":true,\"profile_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000280665322\\/bdd8a8c3=\nb63f6aeb83f21c77f640723f_normal.jpeg\",\"following\":false,\"screen_name\":\"lady=\ngaga\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":4,\"contrib=\nutors_enabled\":false},{\"notifications\":false,\"name\":\"Justin Timberlake \",\"p=\nrofile_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar=\n_fill_color\":\"efefef\",\"url\":\"http:\\/\\/t.co\\/X6zAokAw7k\",\"friends_count\":51,=\n\"id\":26565946,\"followers_count\":24349571,\"time_zone\":\"Pacific Time (US & Ca=\nnada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/X=\n6zAokAw7k\",\"display_url\":\"justintimberlake.com\",\"expanded_url\":\"http:\\/\\/ww=\nw.justintimberlake.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Memphis, =\nTN\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/=\nthemes\\/theme14\\/bg.gif\",\"default_profile\":false,\"profile_background_color\"=\n:\"131516\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2=\n6565946\\/1373662313\",\"statuses_count\":1717,\"lang\":\"en\",\"utc_offset\":-28800,=\n\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3788000=\n00124507172\\/728bfe4df7da85de938b56aa3adaebca_normal.jpeg\",\"profile_backgro=\nund_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"li=\nsted_count\":70172,\"geo_enabled\":false,\"profile_link_color\":\"009999\",\"follow=\n_request_sent\":false,\"id_str\":\"26565946\",\"is_translator\":false,\"protected\":=\nfalse,\"description\":\"Official Justin Timberlake Twitter.\",\"profile_use_back=\nground_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Wed Mar 25 1=\n9:10:50 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.=\ncom\\/profile_images\\/378800000124507172\\/728bfe4df7da85de938b56aa3adaebca_n=\normal.jpeg\",\"following\":false,\"screen_name\":\"jtimberlake\",\"profile_sidebar_=\nborder_color\":\"eeeeee\",\"favourites_count\":0,\"contributors_enabled\":false},{=\n\"notifications\":false,\"name\":\"Britney Spears\",\"profile_background_tile\":fal=\nse,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"F4F4F4\",\"url=\n\":\"http:\\/\\/t.co\\/uGaHnNsbCr\",\"friends_count\":407436,\"id\":16409683,\"followe=\nrs_count\":30762387,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"ur=\nl\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/uGaHnNsbCr\",\"display_ur=\nl\":\"facebook.com\\/britneyspears\",\"expanded_url\":\"http:\\/\\/facebook.com\\/bri=\ntneyspears\"}]},\"description\":{\"urls\":[]}},\"location\":\"Los Angeles, CA\",\"pro=\nfile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgrou=\nnd_images\\/378800000031857991\\/0bfd7bb3f02ea1b9ceea0c25ae470234.jpeg\",\"defa=\nult_profile\":false,\"profile_background_color\":\"FFFFFF\",\"profile_banner_url\"=\n:\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/16409683\\/1374685737\",\"statuses=\n_count\":2535,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/378800000179819225\\/a337b8a29608b7135=\n40c637afdd91232_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_background_images\\/378800000031857991\\/0bfd7bb3f02ea1b9cee=\na0c25ae470234.jpeg\",\"listed_count\":126489,\"geo_enabled\":false,\"profile_link=\n_color\":\"9E9E9E\",\"follow_request_sent\":false,\"id_str\":\"16409683\",\"is_transl=\nator\":false,\"protected\":false,\"description\":\"It\\u2019s Britney Bitch!\",\"pro=\nfile_use_background_image\":true,\"profile_text_color\":\"222222\",\"created_at\":=\n\"Mon Sep 22 20:47:35 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_images\\/378800000179819225\\/a337b8a29608b713540c6=\n37afdd91232_normal.jpeg\",\"following\":false,\"screen_name\":\"britneyspears\",\"p=\nrofile_sidebar_border_color\":\"000000\",\"favourites_count\":101,\"contributors_=\nenabled\":false},{\"notifications\":false,\"name\":\"Bruno Mars\",\"profile_backgro=\nund_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_color\":=\n\"E6F6F9\",\"url\":\"http:\\/\\/t.co\\/MbzmauRmIq\",\"friends_count\":76,\"id\":10022086=\n4,\"followers_count\":16709660,\"time_zone\":null,\"entities\":{\"url\":{\"urls\":[{\"=\nindices\":[0,22],\"url\":\"http:\\/\\/t.co\\/MbzmauRmIq\",\"display_url\":\"brunomars.=\ncom\",\"expanded_url\":\"http:\\/\\/www.brunomars.com\"}]},\"description\":{\"urls\":[=\n]}},\"location\":\"Los Angeles, CA\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/794344025\\/4d0356092343661b=\n6693eba439fa1c43.jpeg\",\"default_profile\":false,\"profile_background_color\":\"=\nF0DBB7\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/100=\n220864\\/1361145117\",\"statuses_count\":2812,\"lang\":\"en\",\"utc_offset\":null,\"pr=\nofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3226400917=\n\\/f40c1a666b4eae3cf3855c38e90598fd_normal.jpeg\",\"profile_background_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/794344025\\/4d0356092=\n343661b6693eba439fa1c43.jpeg\",\"listed_count\":34071,\"geo_enabled\":false,\"pro=\nfile_link_color\":\"0A0104\",\"follow_request_sent\":false,\"id_str\":\"100220864\",=\n\"is_translator\":false,\"protected\":false,\"description\":\"#MySecondAlbumIsOutS=\non\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"crea=\nted_at\":\"Tue Dec 29 13:07:04 +0000 2009\",\"verified\":true,\"profile_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3226400917\\/f40c1a666b4eae3cf3855=\nc38e90598fd_normal.jpeg\",\"following\":false,\"screen_name\":\"BrunoMars\",\"profi=\nle_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":13,\"contributors_enabl=\ned\":false},{\"notifications\":false,\"name\":\"Selena Gomez\",\"profile_background=\n_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"25=\n2429\",\"url\":\"http:\\/\\/t.co\\/pOCMcRhGYg\",\"friends_count\":1319,\"id\":23375688,=\n\"followers_count\":16267888,\"time_zone\":\"Pacific Time (US & Canada)\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/pOCMcRhGYg\",\"di=\nsplay_url\":\"selenagomez.com\",\"expanded_url\":\"http:\\/\\/www.selenagomez.com\"}=\n]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\/sgiTunesa2=\n\",\"url\":\"http:\\/\\/t.co\\/AIF1Isw3LG\",\"indices\":[84,106],\"display_url\":\"smart=\nurl.it\\/sgiTunesa2\"}]}},\"location\":\"Los Angeles \",\"profile_background_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3788000000=\n47948247\\/97af678275460c7a599c7a7363de3d11.jpeg\",\"default_profile\":false,\"p=\nrofile_background_color\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg=\n.com\\/profile_banners\\/23375688\\/1374595319\",\"statuses_count\":2784,\"lang\":\"=\nen\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\=\n/profile_images\\/3753097463\\/c75792bbff88ebef21eb0de621fe08d7_normal.jpeg\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/378800000047948247\\/97af678275460c7a599c7a7363de3d11.jpeg\",\"listed_c=\nount\":133206,\"geo_enabled\":false,\"profile_link_color\":\"FF0000\",\"follow_requ=\nest_sent\":false,\"id_str\":\"23375688\",\"is_translator\":false,\"protected\":false=\n,\"description\":\"The Official Selena Gomez Twitter Page. New album STARS DAN=\nCE available on iTunes - http:\\/\\/t.co\\/AIF1Isw3LG\",\"profile_use_background=\n_image\":true,\"profile_text_color\":\"CC3399\",\"created_at\":\"Mon Mar 09 00:16:4=\n5 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_images\\/3753097463\\/c75792bbff88ebef21eb0de621fe08d7_normal.jpeg\",\"f=\nollowing\":false,\"screen_name\":\"selenagomez\",\"profile_sidebar_border_color\":=\n\"FFFFFF\",\"favourites_count\":23,\"contributors_enabled\":false},{\"notification=\ns\":false,\"name\":\"Twitter Music\",\"profile_background_tile\":true,\"default_pro=\nfile_image\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"url\":\"http:\\/\\/t.c=\no\\/7eUtBKV1bf\",\"friends_count\":83,\"id\":373471064,\"followers_count\":3303731,=\n\"time_zone\":\"Hawaii\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"ht=\ntp:\\/\\/t.co\\/7eUtBKV1bf\",\"display_url\":\"music.twitter.com\",\"expanded_url\":\"=\nhttp:\\/\\/music.twitter.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Twitt=\ner HQ\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/image=\ns\\/themes\\/theme14\\/bg.gif\",\"default_profile\":false,\"profile_background_col=\nor\":\"131516\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/373471064\\/1347670819\",\"statuses_count\":3058,\"lang\":\"en\",\"utc_offset\":-36=\n000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378=\n2510816\\/ae4c20cca7d4cc918bba74458def2066_normal.png\",\"profile_background_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"listed_=\ncount\":5969,\"geo_enabled\":false,\"profile_link_color\":\"009999\",\"follow_reque=\nst_sent\":false,\"id_str\":\"373471064\",\"is_translator\":false,\"protected\":false=\n,\"description\":\"Music related Tweets from around the world.\",\"profile_use_b=\nackground_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Wed Sep 1=\n4 16:50:47 +0000 2011\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/profile_images\\/3782510816\\/ae4c20cca7d4cc918bba74458def2066_normal=\n.png\",\"following\":false,\"screen_name\":\"TwitterMusic\",\"profile_sidebar_borde=\nr_color\":\"000000\",\"favourites_count\":415,\"contributors_enabled\":false},{\"no=\ntifications\":false,\"name\":\"Avril Lavigne\",\"profile_background_tile\":false,\"=\ndefault_profile_image\":false,\"profile_sidebar_fill_color\":\"1A1A17\",\"url\":nu=\nll,\"friends_count\":37,\"id\":73992972,\"followers_count\":12668462,\"time_zone\":=\n\"Pacific Time (US & Canada)\",\"entities\":{\"description\":{\"urls\":[]}},\"locati=\non\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_background_images\\/378800000055972548\\/870adb10d3931b9df30e25fd3e0d9a3=\nb.jpeg\",\"default_profile\":false,\"profile_background_color\":\"100C0B\",\"profil=\ne_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/73992972\\/13770412=\n13\",\"statuses_count\":1420,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000327348170\\/298d=\n2d52a2b6f7f1be6cf06ae0a12431_normal.jpeg\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000055972548\\/870adb=\n10d3931b9df30e25fd3e0d9a3b.jpeg\",\"listed_count\":37310,\"geo_enabled\":false,\"=\nprofile_link_color\":\"FF0000\",\"follow_request_sent\":false,\"id_str\":\"73992972=\n\",\"is_translator\":false,\"protected\":false,\"description\":\"Professional Rocke=\nr \\/ \\r\\nNew Single Available August 27\",\"profile_use_background_image\"=\n:true,\"profile_text_color\":\"ABABAB\",\"created_at\":\"Sun Sep 13 22:43:00 +0000=\n 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/378800000327348170\\/298d2d52a2b6f7f1be6cf06ae0a12431_normal.jpeg\",\"=\nfollowing\":false,\"screen_name\":\"AvrilLavigne\",\"profile_sidebar_border_color=\n\":\"000000\",\"favourites_count\":5,\"contributors_enabled\":false},{\"notificatio=\nns\":false,\"name\":\"Alicia Keys\",\"profile_background_tile\":false,\"default_pro=\nfile_image\":false,\"profile_sidebar_fill_color\":\"D91C26\",\"url\":\"http:\\/\\/t.c=\no\\/BDXoODVMXE\",\"friends_count\":408,\"id\":35094637,\"followers_count\":15895884=\n,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indi=\nces\":[0,22],\"url\":\"http:\\/\\/t.co\\/BDXoODVMXE\",\"display_url\":\"aliciakeys.com=\n\",\"expanded_url\":\"http:\\/\\/www.aliciakeys.com\"}]},\"description\":{\"urls\":[]}=\n},\"location\":\"New York City\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_background_images\\/378800000053320388\\/0b1262ecc48=\nc4dfd29646ad7c5659387.jpeg\",\"default_profile\":false,\"profile_background_col=\nor\":\"150D1A\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/35094637\\/1376711061\",\"statuses_count\":4164,\"lang\":\"en\",\"utc_offset\":-180=\n00,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3788=\n00000163880575\\/b6a87cd4a4152e23c8d4fe417dfb168f_normal.jpeg\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800=\n000053320388\\/0b1262ecc48c4dfd29646ad7c5659387.jpeg\",\"listed_count\":50266,\"=\ngeo_enabled\":false,\"profile_link_color\":\"171415\",\"follow_request_sent\":fals=\ne,\"id_str\":\"35094637\",\"is_translator\":false,\"protected\":false,\"description\"=\n:\"Passionate about my work, in love with my family and dedicated to spreadi=\nng light. It's contagious!;-)\",\"profile_use_background_image\":true,\"profile=\n_text_color\":\"090A02\",\"created_at\":\"Sat Apr 25 00:46:24 +0000 2009\",\"verifi=\ned\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800=\n000163880575\\/b6a87cd4a4152e23c8d4fe417dfb168f_normal.jpeg\",\"following\":fal=\nse,\"screen_name\":\"aliciakeys\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favo=\nurites_count\":3,\"contributors_enabled\":false},{\"notifications\":false,\"name\"=\n:\"Simon Cowell\",\"profile_background_tile\":false,\"default_profile_image\":fal=\nse,\"profile_sidebar_fill_color\":\"252429\",\"url\":\"http:\\/\\/t.co\\/gKrnOcU7CQ\",=\n\"friends_count\":1484,\"id\":413487212,\"followers_count\":7882042,\"time_zone\":\"=\nPacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"u=\nrl\":\"http:\\/\\/t.co\\/gKrnOcU7CQ\",\"display_url\":\"thexfactorusa.com\",\"expanded=\n_url\":\"http:\\/\\/www.thexfactorusa.com\\/\"}]},\"description\":{\"urls\":[]}},\"loc=\nation\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nimages\\/themes\\/theme9\\/bg.gif\",\"default_profile\":false,\"profile_background=\n_color\":\"1A1B1F\",\"statuses_count\":754,\"lang\":\"en\",\"utc_offset\":-28800,\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1642774110\\/=\nsimoncowelltwitter2_normal.jpg\",\"profile_background_image_url\":\"http:\\/\\/a0=\n.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"listed_count\":10014,\"geo_enabl=\ned\":false,\"profile_link_color\":\"2FC2EF\",\"follow_request_sent\":false,\"id_str=\n\":\"413487212\",\"is_translator\":false,\"protected\":false,\"description\":null,\"p=\nrofile_use_background_image\":true,\"profile_text_color\":\"666666\",\"created_at=\n\":\"Tue Nov 15 23:12:59 +0000 2011\",\"verified\":true,\"profile_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_images\\/1642774110\\/simoncowelltwitter2_normal.=\njpg\",\"following\":false,\"screen_name\":\"SimonCowell\",\"profile_sidebar_border_=\ncolor\":\"181A1E\",\"favourites_count\":2,\"contributors_enabled\":false},{\"notifi=\ncations\":false,\"name\":\"Adele\",\"profile_background_tile\":false,\"default_prof=\nile_image\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"url\":\"http:\\/\\/t.co=\n\\/Yr71qltaxt\",\"friends_count\":174,\"id\":184910040,\"followers_count\":16970054=\n,\"time_zone\":\"Quito\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"ht=\ntp:\\/\\/t.co\\/Yr71qltaxt\",\"display_url\":\"adele.tv\",\"expanded_url\":\"http:\\/\\/=\nwww.adele.tv\\/\"}]},\"description\":{\"urls\":[]}},\"location\":\"London\\/NYC\",\"pro=\nfile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgrou=\nnd_images\\/167616538\\/bg.jpg\",\"default_profile\":false,\"profile_background_c=\nolor\":\"131516\",\"statuses_count\":178,\"lang\":\"en\",\"utc_offset\":-18000,\"profil=\ne_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1676212439\\/im=\nage_normal.jpg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_background_images\\/167616538\\/bg.jpg\",\"listed_count\":26337,\"geo_enabled=\n\":false,\"profile_link_color\":\"009999\",\"follow_request_sent\":false,\"id_str\":=\n\"184910040\",\"is_translator\":false,\"protected\":false,\"description\":\"Official=\n Twitter account for Adele. @XLRECORDINGS \\/ @ColumbiaRecords recording art=\nist.\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"cr=\neated_at\":\"Mon Aug 30 19:53:19 +0000 2010\",\"verified\":true,\"profile_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1676212439\\/image_normal.jpg\",\"=\nfollowing\":false,\"screen_name\":\"OfficialAdele\",\"profile_sidebar_border_colo=\nr\":\"EEEEEE\",\"favourites_count\":0,\"contributors_enabled\":false},{\"notificati=\nons\":false,\"name\":\"Miley Ray Cyrus\",\"profile_background_tile\":true,\"default=\n_profile_image\":false,\"profile_sidebar_fill_color\":\"000000\",\"url\":\"http:\\/\\=\n/t.co\\/zhwe6ZcufX\",\"friends_count\":276,\"id\":268414482,\"followers_count\":132=\n03460,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{=\n\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/zhwe6ZcufX\",\"display_url\":\"mileycyru=\ns.com\",\"expanded_url\":\"http:\\/\\/www.mileycyrus.com\"}]},\"description\":{\"urls=\n\":[]}},\"location\":\"PLUTO \",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/872656424\\/464b050842949a34d7c4ce=\ne3c861ad0d.jpeg\",\"default_profile\":false,\"profile_background_color\":\"000000=\n\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/268414482=\n\\/1376599858\",\"statuses_count\":5152,\"lang\":\"en\",\"utc_offset\":-28800,\"profil=\ne_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/37880000030496=\n5762\\/87da65c66e5011d42200bca9a85ce785_normal.jpeg\",\"profile_background_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/872656424\\/464b0=\n50842949a34d7c4cee3c861ad0d.jpeg\",\"listed_count\":53539,\"geo_enabled\":true,\"=\nprofile_link_color\":\"0D0101\",\"follow_request_sent\":false,\"id_str\":\"26841448=\n2\",\"is_translator\":false,\"protected\":false,\"description\":\"california face. =\nwith a down south rump. #BANGERZOCTOBER 8th\",\"profile_use_background_image\"=\n:false,\"profile_text_color\":\"FF8400\",\"created_at\":\"Fri Mar 18 18:36:02 +000=\n0 2011\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/378800000304965762\\/87da65c66e5011d42200bca9a85ce785_normal.jpeg\",=\n\"following\":false,\"screen_name\":\"MileyCyrus\",\"profile_sidebar_border_color\"=\n:\"FFFFFF\",\"favourites_count\":26,\"contributors_enabled\":false},{\"notificatio=\nns\":false,\"name\":\"Chris Brown \",\"profile_background_tile\":false,\"default_pr=\nofile_image\":false,\"profile_sidebar_fill_color\":\"D0D8D9\",\"url\":\"http:\\/\\/t.=\nco\\/YO6fyi5sBn\",\"friends_count\":1907,\"id\":119509520,\"followers_count\":12935=\n268,\"time_zone\":null,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"ht=\ntp:\\/\\/t.co\\/YO6fyi5sBn\",\"display_url\":\"chrisbrownworld.com\",\"expanded_url\"=\n:\"http:\\/\\/www.chrisbrownworld.com\"}]},\"description\":{\"urls\":[{\"expanded_ur=\nl\":\"http:\\/\\/thechrisbrownchannel.com\",\"url\":\"http:\\/\\/t.co\\/f979hdjgSS\",\"i=\nndices\":[30,52],\"display_url\":\"thechrisbrownchannel.com\"}]}},\"location\":nul=\nl,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/378800000030537486\\/0d69352d6bacf72a3e2b1baa4e0747f6.jpeg\"=\n,\"default_profile\":false,\"profile_background_color\":\"999999\",\"profile_banne=\nr_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/119509520\\/1376809364\",\"s=\ntatuses_count\":726,\"lang\":\"en\",\"utc_offset\":null,\"profile_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000324242652\\/fb8743e5354cf=\n1bd863c8dfb2c211b9f_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_background_images\\/378800000030537486\\/0d69352d6bacf72=\na3e2b1baa4e0747f6.jpeg\",\"listed_count\":46078,\"geo_enabled\":true,\"profile_li=\nnk_color\":\"0A0101\",\"follow_request_sent\":false,\"id_str\":\"119509520\",\"is_tra=\nnslator\":false,\"protected\":false,\"description\":\"Official Chris Brown Twitte=\nr\\r\\nhttp:\\/\\/t.co\\/f979hdjgSS\",\"profile_use_background_image\":true,\"profil=\ne_text_color\":\"4327E6\",\"created_at\":\"Wed Mar 03 21:39:14 +0000 2010\",\"verif=\nied\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37880=\n0000324242652\\/fb8743e5354cf1bd863c8dfb2c211b9f_normal.jpeg\",\"following\":fa=\nlse,\"screen_name\":\"chrisbrown\",\"profile_sidebar_border_color\":\"000000\",\"fav=\nourites_count\":437,\"contributors_enabled\":false},{\"notifications\":false,\"na=\nme\":\"Pitbull\",\"profile_background_tile\":false,\"default_profile_image\":false=\n,\"profile_sidebar_fill_color\":\"D6D6D6\",\"url\":\"http:\\/\\/t.co\\/kff4RccE4v\",\"f=\nriends_count\":2432,\"id\":31927467,\"followers_count\":13479039,\"time_zone\":\"Ea=\nstern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url=\n\":\"http:\\/\\/t.co\\/kff4RccE4v\",\"display_url\":\"bit.ly\\/16gFtwZ\",\"expanded_url=\n\":\"http:\\/\\/bit.ly\\/16gFtwZ\"}]},\"description\":{\"urls\":[]}},\"location\":\"Miam=\ni, FL\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/378800000007953770\\/af54fb6f005fb52df4eeb235c726b00d.=\njpeg\",\"default_profile\":false,\"profile_background_color\":\"000000\",\"profile_=\nbanner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31927467\\/1372209141=\n\",\"statuses_count\":4765,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000046595406\\/752a90=\ne142eaa4f6047b1ab678234591_normal.jpeg\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000007953770\\/af54fb6f=\n005fb52df4eeb235c726b00d.jpeg\",\"listed_count\":20223,\"geo_enabled\":false,\"pr=\nofile_link_color\":\"FF000D\",\"follow_request_sent\":false,\"id_str\":\"31927467\",=\n\"is_translator\":false,\"protected\":false,\"description\":\"International Supers=\ntar. Entrepreneur. Philanthropist. 305 till I die. daleeeee\",\"profile_use_=\nbackground_image\":true,\"profile_text_color\":\"C40808\",\"created_at\":\"Thu Apr =\n16 16:03:02 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_images\\/378800000046595406\\/752a90e142eaa4f6047b1ab6782345=\n91_normal.jpeg\",\"following\":false,\"screen_name\":\"Pitbull\",\"profile_sidebar_=\nborder_color\":\"FFFFFF\",\"favourites_count\":15,\"contributors_enabled\":false},=\n{\"notifications\":false,\"name\":\"P!nk\",\"profile_background_tile\":false,\"defau=\nlt_profile_image\":false,\"profile_sidebar_fill_color\":\"E6F6F9\",\"url\":\"http:\\=\n/\\/t.co\\/spVFUPAxU3\",\"friends_count\":250,\"id\":28706024,\"followers_count\":18=\n722504,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[=\n{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/spVFUPAxU3\",\"display_url\":\"twitter.=\ncom\\/pink\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pink\"}]},\"description\":{\"u=\nrls\":[]}},\"location\":\"los angeles\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/178806023\\/grammys13.jpg\"=\n,\"default_profile\":false,\"profile_background_color\":\"DBE9ED\",\"statuses_coun=\nt\":4811,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahanderson_112_normal.=\njpg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/178806023\\/grammys13.jpg\",\"listed_count\":64447,\"geo_enabled\":fa=\nlse,\"profile_link_color\":\"CC3366\",\"follow_request_sent\":false,\"id_str\":\"287=\n06024\",\"is_translator\":false,\"protected\":false,\"description\":\"it's all happ=\nening\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"c=\nreated_at\":\"Sat Apr 04 01:16:34 +0000 2009\",\"verified\":true,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahanderson=\n_112_normal.jpg\",\"following\":false,\"screen_name\":\"Pink\",\"profile_sidebar_bo=\nrder_color\":\"DBE9ED\",\"favourites_count\":136,\"contributors_enabled\":false},{=\n\"notifications\":false,\"name\":\"iTunes Music\",\"profile_background_tile\":false=\n,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"E0E0E0\",\"url\":=\n\"http:\\/\\/t.co\\/fyXFRaLkOT\",\"friends_count\":11,\"id\":74580436,\"followers_cou=\nnt\":4458438,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"ur=\nls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/fyXFRaLkOT\",\"display_url\":\"itu=\nnes.com\\/music\",\"expanded_url\":\"http:\\/\\/itunes.com\\/music\"}]},\"description=\n\":{\"urls\":[]}},\"location\":\"Cupertino, CA \",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/280868779\\/Twitte=\nr_Festival_Background.jpg\",\"default_profile\":false,\"profile_background_colo=\nr\":\"EAEAEA\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\=\n/74580436\\/1367250070\",\"statuses_count\":9566,\"lang\":\"en\",\"utc_offset\":-2880=\n0,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/35916=\n40302\\/8c793512c36ba3d9573f85fda2617666_normal.png\",\"profile_background_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/280868779\\/Twitt=\ner_Festival_Background.jpg\",\"listed_count\":16207,\"geo_enabled\":false,\"profi=\nle_link_color\":\"0088CC\",\"follow_request_sent\":false,\"id_str\":\"74580436\",\"is=\n_translator\":false,\"protected\":false,\"description\":null,\"profile_use_backgr=\nound_image\":false,\"profile_text_color\":\"333333\",\"created_at\":\"Tue Sep 15 22=\n:49:25 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/3591640302\\/8c793512c36ba3d9573f85fda2617666_normal.png=\n\",\"following\":false,\"screen_name\":\"iTunesMusic\",\"profile_sidebar_border_col=\nor\":\"C7C7C7\",\"favourites_count\":3,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"Lil Wayne WEEZY F\",\"profile_background_tile\":true,\"defa=\nult_profile_image\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"url\":\"http:=\n\\/\\/t.co\\/Drv5zXOC\",\"friends_count\":39,\"id\":116362700,\"followers_count\":129=\n58411,\"time_zone\":\"Alaska\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,20],\"ur=\nl\":\"http:\\/\\/t.co\\/Drv5zXOC\",\"display_url\":\"youngmoney.com\",\"expanded_url\":=\n\"http:\\/\\/youngmoney.com\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\=\n/\\/trukfit.com\",\"url\":\"http:\\/\\/t.co\\/wMwkyzCu\",\"indices\":[15,35],\"display_=\nurl\":\"trukfit.com\"}]}},\"location\":\"Mars\",\"profile_background_image_url_http=\ns\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/77710465\\/lil-wayne=\n-gq-2.jpg\",\"default_profile\":false,\"profile_background_color\":\"131516\",\"sta=\ntuses_count\":800,\"lang\":\"en\",\"utc_offset\":-32400,\"profile_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_images\\/712863751\\/lil-wayne-gq-2_normal.=\njpg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/77710465\\/lil-wayne-gq-2.jpg\",\"listed_count\":34310,\"geo_enabled=\n\":false,\"profile_link_color\":\"009999\",\"follow_request_sent\":false,\"id_str\":=\n\"116362700\",\"is_translator\":false,\"protected\":false,\"description\":\"IM YOUNG=\n MONEY http:\\/\\/t.co\\/wMwkyzCu\",\"profile_use_background_image\":true,\"profil=\ne_text_color\":\"333333\",\"created_at\":\"Mon Feb 22 05:29:44 +0000 2010\",\"verif=\nied\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/71286=\n3751\\/lil-wayne-gq-2_normal.jpg\",\"following\":false,\"screen_name\":\"LilTunech=\ni\",\"profile_sidebar_border_color\":\"EEEEEE\",\"favourites_count\":8,\"contributo=\nrs_enabled\":false},{\"notifications\":false,\"name\":\"IG: @NickiMinaj\",\"profile=\n_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_=\ncolor\":\"E5507E\",\"url\":\"http:\\/\\/t.co\\/AdsVzU1Cj0\",\"friends_count\":2756,\"id\"=\n:35787166,\"followers_count\":16818717,\"time_zone\":\"Eastern Time (US & Canada=\n)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/AdsVz=\nU1Cj0\",\"display_url\":\"MYPINKFRIDAY.COM\",\"expanded_url\":\"http:\\/\\/MYPINKFRID=\nAY.COM\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\/Mi=\nnajHS\",\"url\":\"http:\\/\\/t.co\\/FQTaryox27\",\"indices\":[33,55],\"display_url\":\"s=\nmarturl.it\\/MinajHS\"}]}},\"location\":null,\"profile_background_image_url_http=\ns\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/344918034409996672\\=\n/69ca57d46567f9752c46d59f5385247b.jpeg\",\"default_profile\":false,\"profile_ba=\nckground_color\":\"F7F2F4\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/35787166\\/1376338365\",\"statuses_count\":24106,\"lang\":\"en\",\"utc=\n_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_images\\/378800000316386250\\/5279bb8f77785443245e98cd47efc5b1_normal.jpeg\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/344918034409996672\\/69ca57d46567f9752c46d59f5385247b.jpeg\",\"listed_c=\nount\":60731,\"geo_enabled\":false,\"profile_link_color\":\"0F2E94\",\"follow_reque=\nst_sent\":false,\"id_str\":\"35787166\",\"is_translator\":false,\"protected\":false,=\n\"description\":\"THE REUP is in STORES NOW!!!!!! [http:\\/\\/t.co\\/FQTaryox27]\"=\n,\"profile_use_background_image\":true,\"profile_text_color\":\"362720\",\"created=\n_at\":\"Mon Apr 27 16:36:43 +0000 2009\",\"verified\":true,\"profile_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_images\\/378800000316386250\\/5279bb8f77785443=\n245e98cd47efc5b1_normal.jpeg\",\"following\":false,\"screen_name\":\"NICKIMINAJ\",=\n\"profile_sidebar_border_color\":\"000000\",\"favourites_count\":5398,\"contributo=\nrs_enabled\":false},{\"notifications\":false,\"name\":\"Snoop Dogg\",\"profile_back=\nground_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_colo=\nr\":\"EFEFEF\",\"url\":\"http:\\/\\/t.co\\/7FeGHPLWWA\",\"friends_count\":2446,\"id\":300=\n4231,\"followers_count\":10893782,\"time_zone\":\"Pacific Time (US & Canada)\",\"e=\nntities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/7FeGHPLWWA=\n\",\"display_url\":\"snoopdogg.com\",\"expanded_url\":\"http:\\/\\/snoopdogg.com\"}]},=\n\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/www.iTunes.com\\/reincarnat=\ned\",\"url\":\"http:\\/\\/t.co\\/VLLDgHr9Dq\",\"indices\":[30,52],\"display_url\":\"iTun=\nes.com\\/reincarnated\"}]}},\"location\":null,\"profile_background_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/850184789\\/70f95c6=\n78fc6a099722147c2b2e8185b.jpeg\",\"default_profile\":false,\"profile_background=\n_color\":\"131516\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_ban=\nners\\/3004231\\/1354585970\",\"statuses_count\":15312,\"lang\":\"en\",\"utc_offset\":=\n-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/=\n3280442413\\/15b33820231f166481f5d71b6ffdcd64_normal.png\",\"profile_backgroun=\nd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/850184789\\/=\n70f95c678fc6a099722147c2b2e8185b.jpeg\",\"listed_count\":44153,\"geo_enabled\":t=\nrue,\"profile_link_color\":\"009999\",\"follow_request_sent\":false,\"id_str\":\"300=\n4231\",\"is_translator\":false,\"protected\":false,\"description\":\"Order Reincarn=\nated Right HERE http:\\/\\/t.co\\/VLLDgHr9Dq\",\"profile_use_background_image\":t=\nrue,\"profile_text_color\":\"333333\",\"created_at\":\"Fri Mar 30 19:05:42 +0000 2=\n007\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_im=\nages\\/3280442413\\/15b33820231f166481f5d71b6ffdcd64_normal.png\",\"following\":=\nfalse,\"screen_name\":\"SnoopDogg\",\"profile_sidebar_border_color\":\"FFFFFF\",\"fa=\nvourites_count\":19,\"contributors_enabled\":false},{\"notifications\":false,\"na=\nme\":\"KANYE WEST\",\"profile_background_tile\":true,\"default_profile_image\":fal=\nse,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/ZdywsugSWD\",=\n\"friends_count\":1,\"id\":169686021,\"followers_count\":9760959,\"time_zone\":\"Haw=\naii\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Zdy=\nwsugSWD\",\"display_url\":\"KANYEWEST.COM\",\"expanded_url\":\"http:\\/\\/KANYEWEST.C=\nOM\"}]},\"description\":{\"urls\":[]}},\"location\":null,\"profile_background_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/390200267\\=\n/Screen_Shot_2011-12-27_at_11.53.35_PM.png\",\"default_profile\":false,\"profil=\ne_background_color\":\"C0DEED\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\=\n/profile_banners\\/169686021\\/1359417382\",\"statuses_count\":24,\"lang\":\"en\",\"u=\ntc_offset\":-36000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_images\\/1132696610\\/securedownload_normal.jpeg\",\"profile_background_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/390200267\\/Screen=\n_Shot_2011-12-27_at_11.53.35_PM.png\",\"listed_count\":44935,\"geo_enabled\":fal=\nse,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"1696=\n86021\",\"is_translator\":false,\"protected\":false,\"description\":null,\"profile_=\nuse_background_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Thu =\nJul 22 23:00:05 +0000 2010\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/1132696610\\/securedownload_normal.jpeg\",\"follo=\nwing\":false,\"screen_name\":\"kanyewest\",\"profile_sidebar_border_color\":\"C0DEE=\nD\",\"favourites_count\":1,\"contributors_enabled\":false},{\"notifications\":fals=\ne,\"name\":\"Drizzy\",\"profile_background_tile\":true,\"default_profile_image\":fa=\nlse,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http:\\/\\/t.co\\/C9ZI8aYDQe\"=\n,\"friends_count\":623,\"id\":27195114,\"followers_count\":11734133,\"time_zone\":\"=\nQuito\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/C=\n9ZI8aYDQe\",\"display_url\":\"octobersveryown.net\",\"expanded_url\":\"http:\\/\\/www=\n.octobersveryown.net\"}]},\"description\":{\"urls\":[]}},\"location\":\"Paradise\",\"=\nprofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backg=\nround_images\\/378800000047499140\\/76e10d339ba77dd335501d46f3c112ab.jpeg\",\"d=\nefault_profile\":false,\"profile_background_color\":\"000000\",\"profile_banner_u=\nrl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/27195114\\/1353329762\",\"statu=\nses_count\":1454,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_images\\/3322570747\\/3df2d8018762c163acaec5=\n093812aab3_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_background_images\\/378800000047499140\\/76e10d339ba77dd335501d46=\nf3c112ab.jpeg\",\"listed_count\":35124,\"geo_enabled\":false,\"profile_link_color=\n\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"27195114\",\"is_translator\":=\nfalse,\"protected\":false,\"description\":\"Nothing Was The Same\",\"profile_use_b=\nackground_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Sat Mar 2=\n8 07:17:46 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/profile_images\\/3322570747\\/3df2d8018762c163acaec5093812aab3_normal=\n.jpeg\",\"following\":false,\"screen_name\":\"Drake\",\"profile_sidebar_border_colo=\nr\":\"FFFFFF\",\"favourites_count\":10,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"Coldplay\",\"profile_background_tile\":false,\"default_prof=\nile_image\":false,\"profile_sidebar_fill_color\":\"000000\",\"url\":\"http:\\/\\/t.co=\n\\/o4giPXR9Ua\",\"friends_count\":2218,\"id\":18863815,\"followers_count\":10994686=\n,\"time_zone\":null,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:=\n\\/\\/t.co\\/o4giPXR9Ua\",\"display_url\":\"coldplay.com\",\"expanded_url\":\"http:\\/\\=\n/www.coldplay.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Harveytown\",\"p=\nrofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgr=\nound_images\\/669129063\\/52e4f1efcf25f1d881d3124349fae3a1.jpeg\",\"default_pro=\nfile\":false,\"profile_background_color\":\"010220\",\"profile_banner_url\":\"https=\n:\\/\\/pbs.twimg.com\\/profile_banners\\/18863815\\/1371036504\",\"statuses_count\"=\n:2912,\"lang\":\"en\",\"utc_offset\":null,\"profile_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_images\\/378800000264580078\\/58b1ea59eedb4a3477b2328c27=\n3479b2_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_background_images\\/669129063\\/52e4f1efcf25f1d881d3124349fae3a1.jpeg=\n\",\"listed_count\":47157,\"geo_enabled\":false,\"profile_link_color\":\"21A3FF\",\"f=\nollow_request_sent\":false,\"id_str\":\"18863815\",\"is_translator\":false,\"protec=\nted\":false,\"description\":\"The official Coldplay Twitter page (the members o=\nf Coldplay only tweet from here, so please ignore imposters)\",\"profile_use_=\nbackground_image\":true,\"profile_text_color\":\"FF188C\",\"created_at\":\"Sun Jan =\n11 11:04:45 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.tw=\nimg.com\\/profile_images\\/378800000264580078\\/58b1ea59eedb4a3477b2328c273479=\nb2_normal.jpeg\",\"following\":false,\"screen_name\":\"coldplay\",\"profile_sidebar=\n_border_color\":\"FFFFFF\",\"favourites_count\":71,\"contributors_enabled\":false}=\n,{\"notifications\":false,\"name\":\"demetria lovato\",\"profile_background_tile\":=\nfalse,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"B9BEB8\",\"=\nurl\":\"http:\\/\\/t.co\\/NQZw37y4ai\",\"friends_count\":221,\"id\":21111883,\"followe=\nrs_count\":17020472,\"time_zone\":\"Mountain Time (US & Canada)\",\"entities\":{\"u=\nrl\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/NQZw37y4ai\",\"display_u=\nrl\":\"facebook.com\\/DemiLovato\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/D=\nemiLovato\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\=\n/dliTunesa1\",\"url\":\"http:\\/\\/t.co\\/cZoqCMkEDT\",\"indices\":[87,109],\"display_=\nurl\":\"smarturl.it\\/dliTunesa1\"}]}},\"location\":\"DALLAS\\/LA\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n78800000045520748\\/9970951508a34db1e9a46bd5f475c07d.jpeg\",\"default_profile\"=\n:false,\"profile_background_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/=\npbs.twimg.com\\/profile_banners\\/21111883\\/1375761090\",\"statuses_count\":9674=\n,\"lang\":\"en\",\"utc_offset\":-25200,\"profile_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_images\\/378800000248460922\\/9d6e8d8a24650372e314f485265eb=\n40c_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_background_images\\/378800000045520748\\/9970951508a34db1e9a46bd5f475c07=\nd.jpeg\",\"listed_count\":102346,\"geo_enabled\":false,\"profile_link_color\":\"000=\n000\",\"follow_request_sent\":false,\"id_str\":\"21111883\",\"is_translator\":false,=\n\"protected\":false,\"description\":\"New album DEMI feat. Made in the USA and H=\neart Attack available NOW!!! Download here - http:\\/\\/t.co\\/cZoqCMkEDT\",\"pr=\nofile_use_background_image\":true,\"profile_text_color\":\"666666\",\"created_at\"=\n:\"Tue Feb 17 18:02:08 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/378800000248460922\\/9d6e8d8a24650372e314=\nf485265eb40c_normal.jpeg\",\"following\":false,\"screen_name\":\"ddlovato\",\"profi=\nle_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":33,\"contributors_enabl=\ned\":false},{\"notifications\":false,\"name\":\"Trey Songz\",\"profile_background_t=\nile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"6B66=\n66\",\"url\":\"http:\\/\\/t.co\\/1aKMIomBcn\",\"friends_count\":3232,\"id\":24966423,\"f=\nollowers_count\":6639712,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\"=\n:{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/1aKMIomBcn\",\"displ=\nay_url\":\"TREYSONGZ.COM\",\"expanded_url\":\"http:\\/\\/WWW.TREYSONGZ.COM\"}]},\"des=\ncription\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/bit.ly\\/theangelnetwork\",\"url\"=\n:\"http:\\/\\/t.co\\/FmAgBEVrMc\",\"indices\":[18,40],\"display_url\":\"bit.ly\\/thean=\ngelnetwork\"},{\"expanded_url\":\"http:\\/\\/www.angelswithheartfoundation.org\",\"=\nurl\":\"http:\\/\\/t.co\\/10xCmHROX2\",\"indices\":[113,135],\"display_url\":\"angelsw=\nithheartfoundation.org\"}]}},\"location\":\"Im outchea...\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/33668=\n7691\\/TREY3.jpg\",\"default_profile\":false,\"profile_background_color\":\"0A090A=\n\",\"statuses_count\":9080,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000130149605\\/4dacf3=\nfe4d78262cd3d093ace3aaf52c_normal.jpeg\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/336687691\\/TREY3.jpg\",\"liste=\nd_count\":23323,\"geo_enabled\":false,\"profile_link_color\":\"474344\",\"follow_re=\nquest_sent\":false,\"id_str\":\"24966423\",\"is_translator\":false,\"protected\":fal=\nse,\"description\":\"The Angel Network http:\\/\\/t.co\\/FmAgBEVrMc (available on=\n iPhone and android)\\r\\n\\r\\nGrey Goose Cherry Noir Ambassador\\r\\nhttp:\\/\\/t=\n.co\\/10xCmHROX2\",\"profile_use_background_image\":false,\"profile_text_color\":=\n\"0F0E0E\",\"created_at\":\"Tue Mar 17 22:10:47 +0000 2009\",\"verified\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000130149605\\=\n/4dacf3fe4d78262cd3d093ace3aaf52c_normal.jpeg\",\"following\":false,\"screen_na=\nme\":\"TreySongz\",\"profile_sidebar_border_color\":\"1A1114\",\"favourites_count\":=\n147,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Ludacris\",=\n\"profile_background_tile\":true,\"default_profile_image\":false,\"profile_sideb=\nar_fill_color\":\"252429\",\"url\":\"http:\\/\\/t.co\\/7pTNZEsyp6\",\"friends_count\":2=\n76,\"id\":17696167,\"followers_count\":8079206,\"time_zone\":\"Eastern Time (US & =\nCanada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\=\n/7pTNZEsyp6\",\"display_url\":\"ludaversal.com\",\"expanded_url\":\"http:\\/\\/www.lu=\ndaversal.com\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/tinyurl.c=\nom\\/o5nlk8r\",\"url\":\"http:\\/\\/t.co\\/PNoSSfYzgl\",\"indices\":[37,59],\"display_u=\nrl\":\"tinyurl.com\\/o5nlk8r\"}]}},\"location\":\"International\",\"profile_backgrou=\nnd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/61=\n663157\\/Conjure_bottle.jpg\",\"default_profile\":false,\"profile_background_col=\nor\":\"1A1B1F\",\"statuses_count\":10562,\"lang\":\"en\",\"utc_offset\":-18000,\"profil=\ne_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1813757781\\/Lu=\ndacris_normal.jpg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_background_images\\/61663157\\/Conjure_bottle.jpg\",\"listed_count\":2549=\n3,\"geo_enabled\":false,\"profile_link_color\":\"2FC2EF\",\"follow_request_sent\":f=\nalse,\"id_str\":\"17696167\",\"is_translator\":false,\"protected\":false,\"descripti=\non\":\"#IDGAFMixtape OUT NOW Download Here: http:\\/\\/t.co\\/PNoSSfYzgl LUDAVER=\nSAL COMING SOON.\",\"profile_use_background_image\":true,\"profile_text_color\":=\n\"666666\",\"created_at\":\"Fri Nov 28 02:06:50 +0000 2008\",\"verified\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1813757781\\/Ludacri=\ns_normal.jpg\",\"following\":false,\"screen_name\":\"Ludacris\",\"profile_sidebar_b=\norder_color\":\"181A1E\",\"favourites_count\":29,\"contributors_enabled\":false},{=\n\"notifications\":false,\"name\":\"J. Cole\",\"profile_background_tile\":false,\"def=\nault_profile_image\":false,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http=\n:\\/\\/t.co\\/mtUMbQaCdG\",\"friends_count\":375,\"id\":19028953,\"followers_count\":=\n4300098,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":=\n[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/mtUMbQaCdG\",\"display_url\":\"jcolemu=\nsic.com\",\"expanded_url\":\"http:\\/\\/www.jcolemusic.com\"}]},\"description\":{\"ur=\nls\":[]}},\"location\":\"Carolina in my mind\",\"profile_background_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/850246512\\/8ade99f=\n611767df6960441fd09114ddf.png\",\"default_profile\":false,\"profile_background_=\ncolor\":\"000000\",\"statuses_count\":2279,\"lang\":\"en\",\"utc_offset\":-18000,\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3563347017\\/=\nf1bb78e6b2c90f2cdfc28e0b0917bd36_normal.jpeg\",\"profile_background_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/850246512\\/8ade99f6117=\n67df6960441fd09114ddf.png\",\"listed_count\":10964,\"geo_enabled\":false,\"profil=\ne_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"19028953\",\"is_=\ntranslator\":false,\"protected\":false,\"description\":\"Let these words be the C=\nolors, I'm just paintin my heart\",\"profile_use_background_image\":true,\"prof=\nile_text_color\":\"333333\",\"created_at\":\"Thu Jan 15 17:08:04 +0000 2009\",\"ver=\nified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/356=\n3347017\\/f1bb78e6b2c90f2cdfc28e0b0917bd36_normal.jpeg\",\"following\":false,\"s=\ncreen_name\":\"JColeNC\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_c=\nount\":61,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Big S=\nean\",\"profile_background_tile\":false,\"default_profile_image\":false,\"profile=\n_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/Yj0KymDd3j\",\"friends_co=\nunt\":1823,\"id\":17915334,\"followers_count\":4528791,\"time_zone\":\"Eastern Time=\n (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/=\n\\/t.co\\/Yj0KymDd3j\",\"display_url\":\"uknowbigsean.com\",\"expanded_url\":\"http:\\=\n/\\/uknowbigsean.com\\/\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/=\nbit.ly\\/QsqmWP\",\"url\":\"http:\\/\\/t.co\\/3KfWQSGUBd\",\"indices\":[79,101],\"displ=\nay_url\":\"bit.ly\\/QsqmWP\"},{\"expanded_url\":\"http:\\/\\/youtube.com\\/bseandon\",=\n\"url\":\"http:\\/\\/t.co\\/mrOAwaDYts\",\"indices\":[102,124],\"display_url\":\"youtub=\ne.com\\/bseandon\"},{\"expanded_url\":\"http:\\/\\/facebook.com\\/uknowbigsean\",\"ur=\nl\":\"http:\\/\\/t.co\\/EqIfTIk4d1\",\"indices\":[125,147],\"display_url\":\"facebook.=\ncom\\/uknowbigsean\"}]}},\"location\":\"Detroit, MI\",\"profile_background_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/837629822\\/8=\ncef3bbd629a98c1e146abcac2db68e2.jpeg\",\"default_profile\":false,\"profile_back=\nground_color\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/17915334\\/1374866184\",\"statuses_count\":15726,\"lang\":\"en\",\"utc_o=\nffset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/378800000192930114\\/82f996844b581a9d3deeb70df4cda3f1_normal.jpeg\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/837629822\\/8cef3bbd629a98c1e146abcac2db68e2.jpeg\",\"listed_count\":9344,=\n\"geo_enabled\":false,\"profile_link_color\":\"005CB3\",\"follow_request_sent\":fal=\nse,\"id_str\":\"17915334\",\"is_translator\":false,\"protected\":false,\"description=\n\":\"Detroit... #GOOD #FFOE my new album Hall Of Fame 8.27.13... For now enjo=\ny this http:\\/\\/t.co\\/3KfWQSGUBd http:\\/\\/t.co\\/mrOAwaDYts http:\\/\\/t.co\\/E=\nqIfTIk4d1\",\"profile_use_background_image\":true,\"profile_text_color\":\"000000=\n\",\"created_at\":\"Sat Dec 06 03:17:02 +0000 2008\",\"verified\":true,\"profile_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000192930114\\/82f996=\n844b581a9d3deeb70df4cda3f1_normal.jpeg\",\"following\":false,\"screen_name\":\"Bi=\ngSean\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":63,\"contr=\nibutors_enabled\":false},{\"notifications\":false,\"name\":\"Mac.\",\"profile_backg=\nround_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_color\"=\n:\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/XefFUPioog\",\"friends_count\":792,\"id\":230653=\n54,\"followers_count\":4015754,\"time_zone\":\"Eastern Time (US & Canada)\",\"enti=\nties\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/XefFUPioog\",\"=\ndisplay_url\":\"macmillerofficial.com\",\"expanded_url\":\"http:\\/\\/macmilleroffi=\ncial.com\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\/=\nwatchingmovies\",\"url\":\"http:\\/\\/t.co\\/j2KmjhUIak\",\"indices\":[36,58],\"displa=\ny_url\":\"smarturl.it\\/watchingmovies\"}]}},\"location\":\"The Space Migration To=\nur \",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_background_images\\/863919480\\/19c471a918711afd152cb782d878e109.jpeg\",\"defa=\nult_profile\":false,\"profile_background_color\":\"C0DEED\",\"profile_banner_url\"=\n:\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/23065354\\/1376349398\",\"statuses=\n_count\":24905,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_images\\/378800000296039270\\/665ecda6105d0e25=\n3361ae82b974548b_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_background_images\\/863919480\\/19c471a918711afd152cb782d87=\n8e109.jpeg\",\"listed_count\":6935,\"geo_enabled\":false,\"profile_link_color\":\"0=\n084B4\",\"follow_request_sent\":false,\"id_str\":\"23065354\",\"is_translator\":fals=\ne,\"protected\":false,\"description\":\"watching movies with the sound off: http=\n:\\/\\/t.co\\/j2KmjhUIak\\r\\n\\r\\n*Based World*\",\"profile_use_background_image\":=\ntrue,\"profile_text_color\":\"333333\",\"created_at\":\"Fri Mar 06 13:52:47 +0000 =\n2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/378800000296039270\\/665ecda6105d0e253361ae82b974548b_normal.jpeg\",\"f=\nollowing\":false,\"screen_name\":\"MacMiller\",\"profile_sidebar_border_color\":\"0=\n00000\",\"favourites_count\":762,\"contributors_enabled\":false},{\"notifications=\n\":false,\"name\":\"BET's 106 & Park\",\"profile_background_tile\":true,\"default_p=\nrofile_image\":false,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http:\\/\\/t=\n.co\\/t8ZPZ5z9F7\",\"friends_count\":552,\"id\":30309979,\"followers_count\":525939=\n3,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"ind=\nices\":[0,22],\"url\":\"http:\\/\\/t.co\\/t8ZPZ5z9F7\",\"display_url\":\"bet.com\\/106a=\nndpark\",\"expanded_url\":\"http:\\/\\/bet.com\\/106andpark\"}]},\"description\":{\"ur=\nls\":[]}},\"location\":\"New York, NY\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/764855064\\/f25b0981afc598=\n10e6be931dabdfb0d3.jpeg\",\"default_profile\":false,\"profile_background_color\"=\n:\"9AE4E8\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/3=\n0309979\\/1377012395\",\"statuses_count\":14540,\"lang\":\"en\",\"utc_offset\":-18000=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/334254=\n1417\\/5e180d67f07f2d012c47589179e991ea_normal.jpeg\",\"profile_background_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/764855064\\/f25b0=\n981afc59810e6be931dabdfb0d3.jpeg\",\"listed_count\":17414,\"geo_enabled\":false,=\n\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"3030997=\n9\",\"is_translator\":false,\"protected\":false,\"description\":\"BET's music video=\n countdown show with the livest audience on television! Find out who's #On1=\n06Today, what happened #OnTheLast106 & get FREE #106Tix\",\"profile_use_backg=\nround_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Fri Apr 10 20=\n:52:00 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/3342541417\\/5e180d67f07f2d012c47589179e991ea_normal.jpe=\ng\",\"following\":false,\"screen_name\":\"106andpark\",\"profile_sidebar_border_col=\nor\":\"FFFFFF\",\"favourites_count\":58,\"contributors_enabled\":false},{\"notifica=\ntions\":false,\"name\":\"Diddy\",\"profile_background_tile\":true,\"default_profile=\n_image\":false,\"profile_sidebar_fill_color\":\"181F1F\",\"url\":\"http:\\/\\/t.co\\/s=\n3e5eXEoU5\",\"friends_count\":1567,\"id\":18220175,\"followers_count\":8749871,\"ti=\nme_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\"=\n:[0,22],\"url\":\"http:\\/\\/t.co\\/s3e5eXEoU5\",\"display_url\":\"facebook.com\\/Didd=\ny\",\"expanded_url\":\"http:\\/\\/www.facebook.com\\/Diddy\"}]},\"description\":{\"url=\ns\":[]}},\"location\":\"EVERYWHERE!!!\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/378800000024715541\\/09eb3=\n0b9122deb669c3c610b25ac320d.jpeg\",\"default_profile\":false,\"profile_backgrou=\nnd_color\":\"030303\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_b=\nanners\\/18220175\\/1373934953\",\"statuses_count\":21694,\"lang\":\"en\",\"utc_offse=\nt\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_image=\ns\\/378800000140057297\\/fd03759ccf34b36f8bbe14e393e1cba3_normal.jpeg\",\"profi=\nle_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\=\n/378800000024715541\\/09eb30b9122deb669c3c610b25ac320d.jpeg\",\"listed_count\":=\n34313,\"geo_enabled\":true,\"profile_link_color\":\"646666\",\"follow_request_sent=\n\":false,\"id_str\":\"18220175\",\"is_translator\":false,\"protected\":false,\"descri=\nption\":\"KING COMBS\",\"profile_use_background_image\":true,\"profile_text_color=\n\":\"348A8A\",\"created_at\":\"Thu Dec 18 17:52:09 +0000 2008\",\"verified\":true,\"p=\nrofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37880000014005729=\n7\\/fd03759ccf34b36f8bbe14e393e1cba3_normal.jpeg\",\"following\":false,\"screen_=\nname\":\"iamdiddy\",\"profile_sidebar_border_color\":\"000000\",\"favourites_count\"=\n:57,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Cher \",\"pr=\nofile_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar=\n_fill_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\/OGvTBcOF7Z\",\"friends_count\":109=\n,\"id\":124003770,\"followers_count\":1708633,\"time_zone\":\"Pacific Time (US & C=\nanada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/=\nOGvTBcOF7Z\",\"display_url\":\"cher.com\",\"expanded_url\":\"http:\\/\\/cher.com\"}]},=\n\"description\":{\"urls\":[]}},\"location\":\"Malibu, California\",\"profile_backgro=\nund_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3=\n78800000003540521\\/e4a68ccebdb712064e513196909188cb.jpeg\",\"default_profile\"=\n:false,\"profile_background_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/=\npbs.twimg.com\\/profile_banners\\/124003770\\/1370892968\",\"statuses_count\":842=\n4,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_images\\/3782614006\\/17d1d1a2e48c5c4052517a418874c677_nor=\nmal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ba=\nckground_images\\/378800000003540521\\/e4a68ccebdb712064e513196909188cb.jpeg\"=\n,\"listed_count\":9466,\"geo_enabled\":true,\"profile_link_color\":\"F92649\",\"foll=\now_request_sent\":false,\"id_str\":\"124003770\",\"is_translator\":false,\"protecte=\nd\":false,\"description\":\"Old or young-talented or Star-Deeply Superficial or=\n Both-Very smart or unprepared 4 here-fits among but never fits in.Feet fi=\nrmly planted in Mid air,\\r\\nLoved ?\",\"profile_use_background_image\":true,\"p=\nrofile_text_color\":\"333333\",\"created_at\":\"Wed Mar 17 23:05:55 +0000 2010\",\"=\nverified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n3782614006\\/17d1d1a2e48c5c4052517a418874c677_normal.jpeg\",\"following\":false=\n,\"screen_name\":\"cher\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_c=\nount\":42,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Brad =\nPaisley\",\"profile_background_tile\":false,\"default_profile_image\":false,\"pro=\nfile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http:\\/\\/t.co\\/4cdbRsOQBn\",\"friend=\ns_count\":60,\"id\":41265813,\"followers_count\":1959209,\"time_zone\":\"Central Ti=\nme (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:=\n\\/\\/t.co\\/4cdbRsOQBn\",\"display_url\":\"bradpaisley.com\",\"expanded_url\":\"http:=\n\\/\\/www.bradpaisley.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Nashvill=\ne, TN\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/812869534\\/4f42c342c35e52f6487fd322daa20a85.jpeg\",\"de=\nfault_profile\":false,\"profile_background_color\":\"1F1F27\",\"statuses_count\":3=\n600,\"lang\":\"en\",\"utc_offset\":-21600,\"profile_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_images\\/2167990745\\/Screen_Shot_2012-04-26_at_1.43.16_=\nPM_normal.png\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_background_images\\/812869534\\/4f42c342c35e52f6487fd322daa20a85.jpeg\",\"li=\nsted_count\":8387,\"geo_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow_=\nrequest_sent\":false,\"id_str\":\"41265813\",\"is_translator\":false,\"protected\":f=\nalse,\"description\":\"In 1972, a crack commando unit was sent to prison by a =\nmilitary court for a crime they didn't commit. I was also born.\",\"profile_u=\nse_background_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Wed M=\nay 20 01:37:57 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0=\n.twimg.com\\/profile_images\\/2167990745\\/Screen_Shot_2012-04-26_at_1.43.16_P=\nM_normal.png\",\"following\":false,\"screen_name\":\"BradPaisley\",\"profile_sideba=\nr_border_color\":\"000000\",\"favourites_count\":4,\"contributors_enabled\":false}=\n,{\"notifications\":false,\"name\":\"Nelly_Mo \",\"profile_background_tile\":false,=\n\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"=\nhttp:\\/\\/t.co\\/tIOe39p7Zn\",\"friends_count\":1242,\"id\":24775528,\"followers_co=\nunt\":3332711,\"time_zone\":\"Central Time (US & Canada)\",\"entities\":{\"url\":{\"u=\nrls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/tIOe39p7Zn\",\"display_url\":\"ne=\nlly.net\",\"expanded_url\":\"http:\\/\\/www.nelly.net\"}]},\"description\":{\"urls\":[=\n]}},\"location\":\"St. Louis\",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/378800000007600367\\/ba7c318a9f1e9=\n929bed6a4350a6959cc.jpeg\",\"default_profile\":false,\"profile_background_color=\n\":\"9AE4E8\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/=\n24775528\\/1372123864\",\"statuses_count\":7433,\"lang\":\"en\",\"utc_offset\":-21600=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800=\n000041914047\\/8ae96607e33ad1502493c03c0c179f8a_normal.jpeg\",\"profile_backgr=\nound_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/37880000=\n0007600367\\/ba7c318a9f1e9929bed6a4350a6959cc.jpeg\",\"listed_count\":10637,\"ge=\no_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,=\n\"id_str\":\"24775528\",\"is_translator\":false,\"protected\":false,\"description\":\"=\nNELLY's OFFICIAL TWITTER...CEO of Nelly Inc, Derrty Ent, Apple Bottom Cloth=\ning and a St. Lunatic\",\"profile_use_background_image\":true,\"profile_text_co=\nlor\":\"333333\",\"created_at\":\"Mon Mar 16 21:38:48 +0000 2009\",\"verified\":true=\n,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37880000004191=\n4047\\/8ae96607e33ad1502493c03c0c179f8a_normal.jpeg\",\"following\":false,\"scre=\nen_name\":\"Nelly_Mo\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_cou=\nnt\":10,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Ashley =\nTisdale\",\"profile_background_tile\":false,\"default_profile_image\":false,\"pro=\nfile_sidebar_fill_color\":\"C0DFEC\",\"url\":\"http:\\/\\/t.co\\/OWPfrYdmSy\",\"friend=\ns_count\":165,\"id\":18091904,\"followers_count\":10465370,\"time_zone\":\"Pacific =\nTime (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"htt=\np:\\/\\/t.co\\/OWPfrYdmSy\",\"display_url\":\"ashleytisdale.com\",\"expanded_url\":\"h=\nttp:\\/\\/www.ashleytisdale.com\"}]},\"description\":{\"urls\":[]}},\"location\":nul=\nl,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/53084670\\/ashleytisdale_youtube_channel_13_copy2.jpg\",\"def=\nault_profile\":false,\"profile_background_color\":\"022330\",\"statuses_count\":40=\n79,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/3582192042\\/c6164ea54bb1da4136eed60405f1c184_no=\nrmal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_b=\nackground_images\\/53084670\\/ashleytisdale_youtube_channel_13_copy2.jpg\",\"li=\nsted_count\":46801,\"geo_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow=\n_request_sent\":false,\"id_str\":\"18091904\",\"is_translator\":false,\"protected\":=\nfalse,\"description\":\"My official twitter page!! Hoping my tweets inspire yo=\nu :)\",\"profile_use_background_image\":true,\"profile_text_color\":\"333333\",\"cr=\neated_at\":\"Sat Dec 13 02:32:20 +0000 2008\",\"verified\":true,\"profile_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3582192042\\/c6164ea54bb1da4136e=\ned60405f1c184_normal.jpeg\",\"following\":false,\"screen_name\":\"ashleytisdale\",=\n\"profile_sidebar_border_color\":\"A8C7F7\",\"favourites_count\":143,\"contributor=\ns_enabled\":false},{\"notifications\":false,\"name\":\"LL COOL J\",\"profile_backgr=\nound_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_color\":=\n\"DDFFCC\",\"url\":\"http:\\/\\/t.co\\/xTh5ouEI8d\",\"friends_count\":6201,\"id\":193300=\n43,\"followers_count\":3893675,\"time_zone\":\"Pacific Time (US & Canada)\",\"enti=\nties\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/xTh5ouEI8d\",\"=\ndisplay_url\":\"LLCOOLJ.com\",\"expanded_url\":\"http:\\/\\/www.LLCOOLJ.com\"}]},\"de=\nscription\":{\"urls\":[]}},\"location\":\"Queens, NY\",\"profile_background_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/671106406\\/3=\nba492f962b7e55859966a1997d6a3e8.jpeg\",\"default_profile\":false,\"profile_back=\nground_color\":\"9AE4E8\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profi=\nle_banners\\/19330043\\/1360293722\",\"statuses_count\":19510,\"lang\":\"en\",\"utc_o=\nffset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/3560672568\\/b367c93d75760a2f6874893e01eb7a65_normal.jpeg\",\"profile_b=\nackground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/671=\n106406\\/3ba492f962b7e55859966a1997d6a3e8.jpeg\",\"listed_count\":17861,\"geo_en=\nabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_=\nstr\":\"19330043\",\"is_translator\":false,\"protected\":false,\"description\":\"Stil=\nl learning\",\"profile_use_background_image\":true,\"profile_text_color\":\"33333=\n3\",\"created_at\":\"Thu Jan 22 07:24:15 +0000 2009\",\"verified\":true,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3560672568\\/b367c93d75760=\na2f6874893e01eb7a65_normal.jpeg\",\"following\":false,\"screen_name\":\"llcoolj\",=\n\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":128,\"contributor=\ns_enabled\":false},{\"notifications\":false,\"name\":\"KELENDRIA ROWLAND\",\"profil=\ne_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fil=\nl_color\":\"95E8EC\",\"url\":\"http:\\/\\/t.co\\/PdFqFdKwzF\",\"friends_count\":1465,\"i=\nd\":30782495,\"followers_count\":5308908,\"time_zone\":\"Eastern Time (US & Canad=\na)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/PdFq=\nFdKwzF\",\"display_url\":\"KellyRowland.com\",\"expanded_url\":\"http:\\/\\/www.Kelly=\nRowland.com\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.i=\nt\\/KellyRTAGGDlxExiT\",\"url\":\"http:\\/\\/t.co\\/BEnn4XoJgZ\",\"indices\":[50,72],\"=\ndisplay_url\":\"smarturl.it\\/KellyRTAGGDlxE\\u2026\"}]}},\"location\":\"MIAMI BEAC=\nH, FLA.\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_background_images\\/378800000048880383\\/860036b82c5a05d17635ca6ae76eaf5=\ne.jpeg\",\"default_profile\":false,\"profile_background_color\":\"000000\",\"profil=\ne_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/30782495\\/13761860=\n89\",\"statuses_count\":7145,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3627835707\\/ca3b57ec28a5=\ned3ee5042801079ddb6b_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/378800000048880383\\/860036b82c5a05=\nd17635ca6ae76eaf5e.jpeg\",\"listed_count\":14949,\"geo_enabled\":false,\"profile_=\nlink_color\":\"8A8C8C\",\"follow_request_sent\":false,\"id_str\":\"30782495\",\"is_tr=\nanslator\":false,\"protected\":false,\"description\":\"My new album 'Talk a Good =\nGame' is available NOW: http:\\/\\/t.co\\/BEnn4XoJgZ -xo\",\"profile_use_backgro=\nund_image\":true,\"profile_text_color\":\"3C3940\",\"created_at\":\"Mon Apr 13 02:1=\n5:13 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_images\\/3627835707\\/ca3b57ec28a5ed3ee5042801079ddb6b_normal.jpeg\"=\n,\"following\":false,\"screen_name\":\"KELLYROWLAND\",\"profile_sidebar_border_col=\nor\":\"FFFFFF\",\"favourites_count\":8,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"John Legend\",\"profile_background_tile\":false,\"default_p=\nrofile_image\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"url\":null,\"frien=\nds_count\":426,\"id\":18228898,\"followers_count\":4747473,\"time_zone\":\"Eastern =\nTime (US & Canada)\",\"entities\":{\"description\":{\"urls\":[{\"expanded_url\":\"htt=\np:\\/\\/smarturl.it\\/LoveInTheFutureDX\",\"url\":\"http:\\/\\/t.co\\/eZC0YJdUFt\",\"in=\ndices\":[27,49],\"display_url\":\"smarturl.it\\/LoveInTheFutur\\u2026\"}]}},\"locat=\nion\":\"New York, NY, USA\",\"profile_background_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_background_images\\/378800000045789425\\/143ac213ee68211=\n748efe5cdf38d9f94.jpeg\",\"default_profile\":false,\"profile_background_color\":=\n\"FBFBFB\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18=\n228898\\/1375797645\",\"statuses_count\":5430,\"lang\":\"en\",\"utc_offset\":-18000,\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/37880000=\n0138790988\\/9c6e6a74a266412be2ea56ac6c210a35_normal.jpeg\",\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/3788000000=\n45789425\\/143ac213ee68211748efe5cdf38d9f94.jpeg\",\"listed_count\":20031,\"geo_=\nenabled\":true,\"profile_link_color\":\"009999\",\"follow_request_sent\":false,\"id=\n_str\":\"18228898\",\"is_translator\":false,\"protected\":false,\"description\":\"Pre=\n-order #LoveInTheFuture http:\\/\\/t.co\\/eZC0YJdUFt\",\"profile_use_background_=\nimage\":true,\"profile_text_color\":\"000000\",\"created_at\":\"Thu Dec 18 23:42:30=\n +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pr=\nofile_images\\/378800000138790988\\/9c6e6a74a266412be2ea56ac6c210a35_normal.j=\npeg\",\"following\":false,\"screen_name\":\"johnlegend\",\"profile_sidebar_border_c=\nolor\":\"FFFFFF\",\"favourites_count\":3,\"contributors_enabled\":false},{\"notific=\nations\":false,\"name\":\"Jason Mraz\",\"profile_background_tile\":false,\"default_=\nprofile_image\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"url\":\"http:\\/\\/=\nt.co\\/5U9heHynUv\",\"friends_count\":18,\"id\":19018401,\"followers_count\":516434=\n6,\"time_zone\":\"Alaska\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"=\nhttp:\\/\\/t.co\\/5U9heHynUv\",\"display_url\":\"jasonmraz.com\",\"expanded_url\":\"ht=\ntp:\\/\\/jasonmraz.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"San Diego, =\nCA\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/526249557\\/Twitter-skin.jpg\",\"default_profile\":false,\"pr=\nofile_background_color\":\"EEEEEE\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.=\ncom\\/profile_banners\\/19018401\\/1374209620\",\"statuses_count\":2432,\"lang\":\"e=\nn\",\"utc_offset\":-32400,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_images\\/378800000138755246\\/233aae9f3a844c60de70a9b3b5234d50_normal=\n.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/526249557\\/Twitter-skin.jpg\",\"listed_count\":28396,\"geo_enable=\nd\":false,\"profile_link_color\":\"CC3333\",\"follow_request_sent\":false,\"id_str\"=\n:\"19018401\",\"is_translator\":false,\"protected\":false,\"description\":\"The Offi=\ncial Jason Mraz You Very Much Twitter Account. Follow @theRKOP for the late=\nst news.\",\"profile_use_background_image\":false,\"profile_text_color\":\"333333=\n\",\"created_at\":\"Thu Jan 15 11:16:33 +0000 2009\",\"verified\":true,\"profile_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000138755246\\/233aae=\n9f3a844c60de70a9b3b5234d50_normal.jpeg\",\"following\":false,\"screen_name\":\"ja=\nson_mraz\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":24,\"co=\nntributors_enabled\":false},{\"notifications\":false,\"name\":\"T-Raww\",\"profile_=\nbackground_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_c=\nolor\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\/hLrbrJ4igr\",\"friends_count\":3597,\"id\":=\n22733444,\"followers_count\":5119713,\"time_zone\":\"Central Time (US & Canada)\"=\n,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/hLrbrJ4=\nigr\",\"display_url\":\"TygasWorld.com\",\"expanded_url\":\"http:\\/\\/TygasWorld.com=\n\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/popwater.com\",\"url\":\"=\nhttp:\\/\\/t.co\\/6wnfohyzrx\",\"indices\":[16,38],\"display_url\":\"popwater.com\"}]=\n}},\"location\":\"#HotelCalifornia\",\"profile_background_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_background_images\\/812635350\\/287cb85a01927ca0=\n595eee7a58bba2a4.jpeg\",\"default_profile\":false,\"profile_background_color\":\"=\nF0F0F0\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/227=\n33444\\/1361069663\",\"statuses_count\":7471,\"lang\":\"en\",\"utc_offset\":-21600,\"p=\nrofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000=\n167615498\\/6833128bb8d5c1a64a608a9506a6be2f_normal.jpeg\",\"profile_backgroun=\nd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/812635350\\/=\n287cb85a01927ca0595eee7a58bba2a4.jpeg\",\"listed_count\":13302,\"geo_enabled\":t=\nrue,\"profile_link_color\":\"EB0000\",\"follow_request_sent\":false,\"id_str\":\"227=\n33444\",\"is_translator\":false,\"protected\":false,\"description\":\"LastKings.co\\=\nr\\n\\r\\nhttp:\\/\\/t.co\\/6wnfohyzrx\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n#LastKings\",\"profil=\ne_use_background_image\":true,\"profile_text_color\":\"000000\",\"created_at\":\"We=\nd Mar 04 04:29:52 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/378800000167615498\\/6833128bb8d5c1a64a608a95=\n06a6be2f_normal.jpeg\",\"following\":false,\"screen_name\":\"Tyga\",\"profile_sideb=\nar_border_color\":\"000000\",\"favourites_count\":17,\"contributors_enabled\":fals=\ne},{\"notifications\":false,\"name\":\"Wyclef Jean\",\"profile_background_tile\":fa=\nlse,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"F3F3F3\",\"ur=\nl\":\"http:\\/\\/t.co\\/9b9POjRVCP\",\"friends_count\":8524,\"id\":20659839,\"follower=\ns_count\":3295666,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\"=\n:{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/9b9POjRVCP\",\"display_url\"=\n:\"wyclefjean.wordpress.com\",\"expanded_url\":\"http:\\/\\/wyclefjean.wordpress.c=\nom\\/\"}]},\"description\":{\"urls\":[]}},\"location\":\"\\u00dcT: 40.759398,-73.9877=\n82\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/833057569\\/aa55a1d352f2068ea82bc68844aba805.jpeg\",\"defau=\nlt_profile\":false,\"profile_background_color\":\"EBEBEB\",\"profile_banner_url\":=\n\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20659839\\/1365026110\",\"statuses_=\ncount\":25648,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/3472865437\\/698a3a61d91cc9f556d3c294b=\n0b763de_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_background_images\\/833057569\\/aa55a1d352f2068ea82bc68844aba805.jpe=\ng\",\"listed_count\":14061,\"geo_enabled\":true,\"profile_link_color\":\"990000\",\"f=\nollow_request_sent\":false,\"id_str\":\"20659839\",\"is_translator\":false,\"protec=\nted\":false,\"description\":\"The Official Wyclef Twitter Page\",\"profile_use_ba=\nckground_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Thu Feb 12=\n 07:11:07 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_images\\/3472865437\\/698a3a61d91cc9f556d3c294b0b763de_normal.=\njpeg\",\"following\":false,\"screen_name\":\"wyclef\",\"profile_sidebar_border_colo=\nr\":\"FFFFFF\",\"favourites_count\":76,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"Wale Folarin \",\"profile_background_tile\":false,\"default=\n_profile_image\":false,\"profile_sidebar_fill_color\":\"FFFFFF\",\"url\":\"http:\\/\\=\n/t.co\\/R8CqjWAp7J\",\"friends_count\":1233,\"id\":17929027,\"followers_count\":314=\n8568,\"time_zone\":\"Central Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"=\nindices\":[0,22],\"url\":\"http:\\/\\/t.co\\/R8CqjWAp7J\",\"display_url\":\"ralphfolar=\nin.com\",\"expanded_url\":\"http:\\/\\/ralphfolarin.com\"}]},\"description\":{\"urls\"=\n:[]}},\"location\":\"The Gifted\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/378800000013969591\\/12be27ae8c=\ne2ec071a2b6126c308ea5e.png\",\"default_profile\":false,\"profile_background_col=\nor\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/17929027\\/1372786321\",\"statuses_count\":38925,\"lang\":\"en\",\"utc_offset\":-21=\n600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378=\n800000078580864\\/d0a652aa328f33eda4e2d8286f99b416_normal.jpeg\",\"profile_bac=\nkground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/37880=\n0000013969591\\/12be27ae8ce2ec071a2b6126c308ea5e.png\",\"listed_count\":12118,\"=\ngeo_enabled\":false,\"profile_link_color\":\"ED2724\",\"follow_request_sent\":fals=\ne,\"id_str\":\"17929027\",\"is_translator\":false,\"protected\":false,\"description\"=\n:\"The Gifted June 25 2013\",\"profile_use_background_image\":true,\"profile_tex=\nt_color\":\"000000\",\"created_at\":\"Sat Dec 06 21:15:10 +0000 2008\",\"verified\":=\ntrue,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3788000000=\n78580864\\/d0a652aa328f33eda4e2d8286f99b416_normal.jpeg\",\"following\":false,\"=\nscreen_name\":\"Wale\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_cou=\nnt\":125,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Ozzy O=\nsbourne\",\"profile_background_tile\":false,\"default_profile_image\":false,\"pro=\nfile_sidebar_fill_color\":\"252429\",\"url\":\"http:\\/\\/t.co\\/38g2SvGhEZ\",\"friend=\ns_count\":71,\"id\":24963961,\"followers_count\":3035219,\"time_zone\":\"Pacific Ti=\nme (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:=\n\\/\\/t.co\\/38g2SvGhEZ\",\"display_url\":\"ozzy.com\",\"expanded_url\":\"http:\\/\\/www=\n.ozzy.com\"}]},\"description\":{\"urls\":[]}},\"location\":null,\"profile_backgroun=\nd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/113=\n452082\\/ozzy_twiter_bg.jpg\",\"default_profile\":false,\"profile_background_col=\nor\":\"1A1B1F\",\"statuses_count\":1200,\"lang\":\"en\",\"utc_offset\":-28800,\"profile=\n_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2946590122\\/09a=\ndd4b845b1b20dab0c8f3dda6d16c3_normal.jpeg\",\"profile_background_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_background_images\\/113452082\\/ozzy_twiter_bg=\n.jpg\",\"listed_count\":16271,\"geo_enabled\":true,\"profile_link_color\":\"2FC2EF\"=\n,\"follow_request_sent\":false,\"id_str\":\"24963961\",\"is_translator\":false,\"pro=\ntected\":false,\"description\":\"The Prince of Darkness\",\"profile_use_backgroun=\nd_image\":true,\"profile_text_color\":\"666666\",\"created_at\":\"Tue Mar 17 21:56:=\n55 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_images\\/2946590122\\/09add4b845b1b20dab0c8f3dda6d16c3_normal.jpeg\",\"=\nfollowing\":false,\"screen_name\":\"OfficialOzzy\",\"profile_sidebar_border_color=\n\":\"181A1E\",\"favourites_count\":0,\"contributors_enabled\":false},{\"notificatio=\nns\":false,\"name\":\"Rolling Stone\",\"profile_background_tile\":false,\"default_p=\nrofile_image\":false,\"profile_sidebar_fill_color\":\"252429\",\"url\":\"http:\\/\\/t=\n.co\\/Aqez6VvBKM\",\"friends_count\":304,\"id\":14780915,\"followers_count\":296724=\n1,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"ind=\nices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Aqez6VvBKM\",\"display_url\":\"rollingstone.=\ncom\",\"expanded_url\":\"http:\\/\\/www.rollingstone.com\"}]},\"description\":{\"urls=\n\":[{\"expanded_url\":\"http:\\/\\/RollingStone.com\",\"url\":\"http:\\/\\/t.co\\/QhLIiM=\nncPf\",\"indices\":[57,79],\"display_url\":\"RollingStone.com\"}]}},\"location\":\"Ne=\nw York, New York\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/92816292\\/rs_bkd.jpg\",\"default_profile\":fa=\nlse,\"profile_background_color\":\"0B0B0E\",\"profile_banner_url\":\"https:\\/\\/pbs=\n.twimg.com\\/profile_banners\\/14780915\\/1348002574\",\"statuses_count\":23070,\"=\nlang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_images\\/1693601337\\/RS-icon-twitter_normal.jpg\",\"profile_ba=\nckground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/9281=\n6292\\/rs_bkd.jpg\",\"listed_count\":29017,\"geo_enabled\":false,\"profile_link_co=\nlor\":\"2FC2EF\",\"follow_request_sent\":false,\"id_str\":\"14780915\",\"is_translato=\nr\":false,\"protected\":false,\"description\":\"The latest news and more from Rol=\nling Stone magazine and http:\\/\\/t.co\\/QhLIiMncPf.\",\"profile_use_background=\n_image\":true,\"profile_text_color\":\"666666\",\"created_at\":\"Thu May 15 02:52:2=\n7 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_images\\/1693601337\\/RS-icon-twitter_normal.jpg\",\"following\":false,\"s=\ncreen_name\":\"RollingStone\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favouri=\ntes_count\":5,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"D=\nepeche Mode\",\"profile_background_tile\":false,\"default_profile_image\":false,=\n\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http:\\/\\/t.co\\/9VckiU2FhU\",\"fr=\niends_count\":5940,\"id\":26347170,\"followers_count\":1664676,\"time_zone\":\"Alas=\nka\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/9Vck=\niU2FhU\",\"display_url\":\"depechemode.com\",\"expanded_url\":\"http:\\/\\/www.depech=\nemode.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Burbank, CA (band webm=\naster)\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_background_images\\/7115102\\/discography_bg_main.jpg\",\"default_profile\":=\nfalse,\"profile_background_color\":\"000000\",\"profile_banner_url\":\"https:\\/\\/p=\nbs.twimg.com\\/profile_banners\\/26347170\\/1357151305\",\"statuses_count\":692,\"=\nlang\":\"en\",\"utc_offset\":-32400,\"profile_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_images\\/3055941966\\/8e1200abd2db9f4e332f6a60005d9686_normal=\n.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/7115102\\/discography_bg_main.jpg\",\"listed_count\":13144,\"geo_e=\nnabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id=\n_str\":\"26347170\",\"is_translator\":false,\"protected\":false,\"description\":\"Fro=\nm beginnings in Basildon, Essex, to the Universe, Depeche Mode have been cr=\neating their brand of music for 30 years.\",\"profile_use_background_image\":f=\nalse,\"profile_text_color\":\"333333\",\"created_at\":\"Tue Mar 24 22:52:15 +0000 =\n2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/3055941966\\/8e1200abd2db9f4e332f6a60005d9686_normal.jpeg\",\"following=\n\":false,\"screen_name\":\"depechemode\",\"profile_sidebar_border_color\":\"000000\"=\n,\"favourites_count\":29,\"contributors_enabled\":false},{\"notifications\":false=\n,\"name\":\"Travie McCoy\",\"profile_background_tile\":true,\"default_profile_imag=\ne\":false,\"profile_sidebar_fill_color\":\"252429\",\"url\":\"http:\\/\\/t.co\\/MMaGfN=\noeWQ\",\"friends_count\":336,\"id\":39325978,\"followers_count\":3321575,\"time_zon=\ne\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22=\n],\"url\":\"http:\\/\\/t.co\\/MMaGfNoeWQ\",\"display_url\":\"gymclassheroes.com\",\"exp=\nanded_url\":\"http:\\/\\/gymclassheroes.com\"}]},\"description\":{\"urls\":[]}},\"loc=\nation\":\"New York, NY\",\"profile_background_image_url_https\":\"https:\\/\\/si0.t=\nwimg.com\\/profile_background_images\\/357127578\\/pcc2.jpg\",\"default_profile\"=\n:false,\"profile_background_color\":\"1A1B1F\",\"statuses_count\":3319,\"lang\":\"en=\n\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_images\\/3303509625\\/4f6ea91b504e4c707ddefe91c363a9b6_normal.jpeg\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/357127578\\/pcc2.jpg\",\"listed_count\":8657,\"geo_enabled\":true,\"profile_l=\nink_color\":\"2FC2EF\",\"follow_request_sent\":false,\"id_str\":\"39325978\",\"is_tra=\nnslator\":false,\"protected\":false,\"description\":null,\"profile_use_background=\n_image\":true,\"profile_text_color\":\"666666\",\"created_at\":\"Mon May 11 19:52:5=\n6 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_images\\/3303509625\\/4f6ea91b504e4c707ddefe91c363a9b6_normal.jpeg\",\"f=\nollowing\":false,\"screen_name\":\"TravieMcCoy\",\"profile_sidebar_border_color\":=\n\"181A1E\",\"favourites_count\":17,\"contributors_enabled\":false},{\"notification=\ns\":false,\"name\":\"deadmau5\",\"profile_background_tile\":true,\"default_profile_=\nimage\":false,\"profile_sidebar_fill_color\":\"000000\",\"url\":\"http:\\/\\/t.co\\/Ot=\nEo1oZaq8\",\"friends_count\":254,\"id\":22412376,\"followers_count\":2389757,\"time=\n_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[=\n0,22],\"url\":\"http:\\/\\/t.co\\/OtEo1oZaq8\",\"display_url\":\"deadmau5.com\",\"expan=\nded_url\":\"http:\\/\\/www.deadmau5.com\"}]},\"description\":{\"urls\":[]}},\"locatio=\nn\":\"9th circle of hell\",\"profile_background_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_background_images\\/633097334\\/etecldyneiq7uiesf3tz.jpeg=\n\",\"default_profile\":false,\"profile_background_color\":\"003A42\",\"profile_bann=\ner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/22412376\\/1372543463\",\"s=\ntatuses_count\":16443,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000065084903\\/6933842eb=\n5f4eb33ea580912e9b51e65_normal.jpeg\",\"profile_background_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_background_images\\/633097334\\/etecldyneiq7uiesf3tz=\n.jpeg\",\"listed_count\":15063,\"geo_enabled\":true,\"profile_link_color\":\"00E1FF=\n\",\"follow_request_sent\":false,\"id_str\":\"22412376\",\"is_translator\":false,\"pr=\notected\":false,\"description\":\"ERMAGERD GERSTS N STERF\",\"profile_use_backgro=\nund_image\":false,\"profile_text_color\":\"ABABAB\",\"created_at\":\"Sun Mar 01 21:=\n59:41 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_images\\/378800000065084903\\/6933842eb5f4eb33ea580912e9b51e65_nor=\nmal.jpeg\",\"following\":false,\"screen_name\":\"deadmau5\",\"profile_sidebar_borde=\nr_color\":\"FFFFFF\",\"favourites_count\":9,\"contributors_enabled\":false},{\"noti=\nfications\":false,\"name\":\"Pearl Jam\",\"profile_background_tile\":false,\"defaul=\nt_profile_image\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"url\":\"http:\\/=\n\\/t.co\\/sGQjzDFfFJ\",\"friends_count\":298,\"id\":15155074,\"followers_count\":216=\n2387,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"=\nindices\":[0,22],\"url\":\"http:\\/\\/t.co\\/sGQjzDFfFJ\",\"display_url\":\"pearljam.c=\nom\",\"expanded_url\":\"http:\\/\\/www.pearljam.com\"}]},\"description\":{\"urls\":[{\"=\nexpanded_url\":\"http:\\/\\/smarturl.it\\/PJLightningBolt\",\"url\":\"http:\\/\\/t.co\\=\n/gdBG7twcVq\",\"indices\":[60,82],\"display_url\":\"smarturl.it\\/PJLightningBolt\"=\n}]}},\"location\":\"Seattle, WA\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/378800000021363744\\/ac384c4cb7=\n2d7ffab6dc2249374b0a86.jpeg\",\"default_profile\":false,\"profile_background_co=\nlor\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banner=\ns\\/15155074\\/1373569533\",\"statuses_count\":1469,\"lang\":\"en\",\"utc_offset\":-28=\n800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378=\n800000120265865\\/5f7c7fc3fe962ece623cb41ec7a8d33e_normal.png\",\"profile_back=\nground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800=\n000021363744\\/ac384c4cb72d7ffab6dc2249374b0a86.jpeg\",\"listed_count\":17309,\"=\ngeo_enabled\":false,\"profile_link_color\":\"DE1D1D\",\"follow_request_sent\":fals=\ne,\"id_str\":\"15155074\",\"is_translator\":false,\"protected\":false,\"description\"=\n:\"Pearl Jam's Official Twitter.\\nPreorder Lightning Bolt here: http:\\/\\/t.c=\no\\/gdBG7twcVq\",\"profile_use_background_image\":true,\"profile_text_color\":\"33=\n3333\",\"created_at\":\"Wed Jun 18 06:59:14 +0000 2008\",\"verified\":true,\"profil=\ne_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000120265865\\/5f=\n7c7fc3fe962ece623cb41ec7a8d33e_normal.png\",\"following\":false,\"screen_name\":=\n\"PearlJam\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":42,\"c=\nontributors_enabled\":false},{\"notifications\":false,\"name\":\"Al Yankovic\",\"pr=\nofile_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar_=\nfill_color\":\"DDFFCC\",\"url\":\"http:\\/\\/t.co\\/rwtnBFlCio\",\"friends_count\":330,=\n\"id\":22461427,\"followers_count\":3100206,\"time_zone\":\"Pacific Time (US & Can=\nada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/rw=\ntnBFlCio\",\"display_url\":\"weirdal.com\",\"expanded_url\":\"http:\\/\\/www.weirdal.=\ncom\"}]},\"description\":{\"urls\":[]}},\"location\":\"Los Angeles\",\"profile_backgr=\nound_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/=\n5009241\\/906623544_l.jpg\",\"default_profile\":false,\"profile_background_color=\n\":\"9AE4E8\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/=\n22461427\\/1376557509\",\"statuses_count\":2259,\"lang\":\"en\",\"utc_offset\":-28800=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/246073=\n324\\/IL2_normal.jpg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_background_images\\/5009241\\/906623544_l.jpg\",\"listed_count\":31868,=\n\"geo_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":fal=\nse,\"id_str\":\"22461427\",\"is_translator\":false,\"protected\":false,\"description=\n\":\"You know... the Eat It guy.\",\"profile_use_background_image\":true,\"profil=\ne_text_color\":\"333333\",\"created_at\":\"Mon Mar 02 07:00:29 +0000 2009\",\"verif=\nied\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/24607=\n3324\\/IL2_normal.jpg\",\"following\":false,\"screen_name\":\"alyankovic\",\"profile=\n_sidebar_border_color\":\"BDDCAD\",\"favourites_count\":904,\"contributors_enable=\nd\":false},{\"notifications\":false,\"name\":\"Sara Bareilles\",\"profile_backgroun=\nd_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"B=\n8C9FF\",\"url\":\"http:\\/\\/t.co\\/UWzRxPIxzg\",\"friends_count\":193,\"id\":6211972,\"=\nfollowers_count\":2816805,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities=\n\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/UWzRxPIxzg\",\"disp=\nlay_url\":\"sarabmusic.com\",\"expanded_url\":\"http:\\/\\/www.sarabmusic.com\"}]},\"=\ndescription\":{\"urls\":[]}},\"location\":\"Everywhere\",\"profile_background_image=\n_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/3788000000=\n24818414\\/a152a16738b3561f16d79ef7ee12f7bc.jpeg\",\"default_profile\":false,\"p=\nrofile_background_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg=\n.com\\/profile_banners\\/6211972\\/1373343822\",\"statuses_count\":3950,\"lang\":\"e=\nn\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_images\\/3434138339\\/d9dd3cc1febfae4887f166d8cef98320_normal.png\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/378800000024818414\\/a152a16738b3561f16d79ef7ee12f7bc.jpeg\",\"listed_cou=\nnt\":14735,\"geo_enabled\":false,\"profile_link_color\":\"0000FF\",\"follow_request=\n_sent\":false,\"id_str\":\"6211972\",\"is_translator\":false,\"protected\":false,\"de=\nscription\":null,\"profile_use_background_image\":true,\"profile_text_color\":\"0=\n00000\",\"created_at\":\"Mon May 21 23:17:07 +0000 2007\",\"verified\":true,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3434138339\\/d9dd3cc1f=\nebfae4887f166d8cef98320_normal.png\",\"following\":false,\"screen_name\":\"SaraBa=\nreilles\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":8,\"cont=\nributors_enabled\":false},{\"notifications\":false,\"name\":\"Slash\",\"profile_bac=\nkground_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_col=\nor\":\"000000\",\"url\":\"http:\\/\\/t.co\\/92MSiBpltv\",\"friends_count\":431,\"id\":228=\n32029,\"followers_count\":2552337,\"time_zone\":\"Pacific Time (US & Canada)\",\"e=\nntities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/92MSiBpltv=\n\",\"display_url\":\"slashonline.com\",\"expanded_url\":\"http:\\/\\/slashonline.com\"=\n}]},\"description\":{\"urls\":[]}},\"location\":null,\"profile_background_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/153374471\\/sl=\nash_twitter.jpg\",\"default_profile\":false,\"profile_background_color\":\"050101=\n\",\"statuses_count\":4683,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3504501985\\/4c31b1293bd3b5=\n834130f11879404037_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0=\n.twimg.com\\/profile_background_images\\/153374471\\/slash_twitter.jpg\",\"liste=\nd_count\":18921,\"geo_enabled\":true,\"profile_link_color\":\"1EB8F5\",\"follow_req=\nuest_sent\":false,\"id_str\":\"22832029\",\"is_translator\":false,\"protected\":fals=\ne,\"description\":\"Official Twitter page for Slash\",\"profile_use_background_i=\nmage\":true,\"profile_text_color\":\"666666\",\"created_at\":\"Wed Mar 04 20:51:27 =\n+0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/3504501985\\/4c31b1293bd3b5834130f11879404037_normal.jpeg\",\"fol=\nlowing\":false,\"screen_name\":\"Slash\",\"profile_sidebar_border_color\":\"666666\"=\n,\"favourites_count\":84,\"contributors_enabled\":false},{\"notifications\":false=\n,\"name\":\"Jim Jones \",\"profile_background_tile\":false,\"default_profile_image=\n\":false,\"profile_sidebar_fill_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\/G2HIVg1=\nfkU\",\"friends_count\":582,\"id\":21705616,\"followers_count\":3244307,\"time_zone=\n\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22]=\n,\"url\":\"http:\\/\\/t.co\\/G2HIVg1fkU\",\"display_url\":\"capolife.com\",\"expanded_u=\nrl\":\"http:\\/\\/www.capolife.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"H=\narlem\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/364318203\\/vampirelifefrontcover.jpg\",\"default_profil=\ne\":false,\"profile_background_color\":\"FFFFFF\",\"statuses_count\":16770,\"lang\":=\n\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_images\\/378800000093425803\\/9a66e13c9930b44a43339eaf7bf33760_norm=\nal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_bac=\nkground_images\\/364318203\\/vampirelifefrontcover.jpg\",\"listed_count\":7396,\"=\ngeo_enabled\":true,\"profile_link_color\":\"0A0A0A\",\"follow_request_sent\":false=\n,\"id_str\":\"21705616\",\"is_translator\":false,\"protected\":false,\"description\":=\n\"#VampireLife bookings for #JimJones bookjimjones@gmail.com info@nextofkin=\nent.com\",\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",=\n\"created_at\":\"Mon Feb 23 23:10:39 +0000 2009\",\"verified\":true,\"profile_imag=\ne_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000093425803\\/9a66e13c=\n9930b44a43339eaf7bf33760_normal.jpeg\",\"following\":false,\"screen_name\":\"jimj=\nonescapo\",\"profile_sidebar_border_color\":\"000000\",\"favourites_count\":16,\"co=\nntributors_enabled\":false},{\"notifications\":false,\"name\":\"MC HAMMER\",\"profi=\nle_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fil=\nl_color\":\"efefef\",\"url\":\"http:\\/\\/t.co\\/Ms9AlNw6b5\",\"friends_count\":50007,\"=\nid\":6273552,\"followers_count\":3258303,\"time_zone\":\"Pacific Time (US & Canad=\na)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Ms9A=\nlNw6b5\",\"display_url\":\"alchemistmgmt.com\",\"expanded_url\":\"http:\\/\\/www.alch=\nemistmgmt.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Bay Area, Californ=\nia\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/=\nthemes\\/theme14\\/bg.gif\",\"default_profile\":false,\"profile_background_color\"=\n:\"131516\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/6=\n273552\\/1374297850\",\"statuses_count\":34167,\"lang\":\"en\",\"utc_offset\":-28800,=\n\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3788000=\n00162390170\\/2f40ba523e42e9ecc836bd43de0ee411_normal.jpeg\",\"profile_backgro=\nund_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme14\\/bg.gif\",\"li=\nsted_count\":15094,\"geo_enabled\":true,\"profile_link_color\":\"009999\",\"follow_=\nrequest_sent\":false,\"id_str\":\"6273552\",\"is_translator\":false,\"protected\":fa=\nlse,\"description\":null,\"profile_use_background_image\":true,\"profile_text_co=\nlor\":\"333333\",\"created_at\":\"Wed May 23 22:50:33 +0000 2007\",\"verified\":true=\n,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37880000016239=\n0170\\/2f40ba523e42e9ecc836bd43de0ee411_normal.jpeg\",\"following\":false,\"scre=\nen_name\":\"MCHammer\",\"profile_sidebar_border_color\":\"eeeeee\",\"favourites_cou=\nnt\":9706,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Kimbe=\nrly Cole\",\"profile_background_tile\":true,\"default_profile_image\":false,\"pro=\nfile_sidebar_fill_color\":\"E5507E\",\"url\":\"http:\\/\\/t.co\\/e0HqPwU1wQ\",\"friend=\ns_count\":2808,\"id\":19829645,\"followers_count\":1912446,\"time_zone\":\"Pacific =\nTime (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"htt=\np:\\/\\/t.co\\/e0HqPwU1wQ\",\"display_url\":\"facebook.com\\/kimberlycolemu\\u2026\",=\n\"expanded_url\":\"http:\\/\\/www.facebook.com\\/kimberlycolemusic\"}]},\"descripti=\non\":{\"urls\":[]}},\"location\":\"Hollywood, CA \",\"profile_background_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/378800000054641=\n233\\/b8d8510c465dc1a9d0d25dd56d1c46ee.png\",\"default_profile\":false,\"profile=\n_background_color\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/=\nprofile_banners\\/19829645\\/1360186532\",\"statuses_count\":14550,\"lang\":\"en\",\"=\nutc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_images\\/3217554112\\/c6464d61ac9819d2ebfb4ab8c6acbe88_normal.jpeg\",\"prof=\nile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images=\n\\/378800000054641233\\/b8d8510c465dc1a9d0d25dd56d1c46ee.png\",\"listed_count\":=\n3649,\"geo_enabled\":false,\"profile_link_color\":\"000000\",\"follow_request_sent=\n\":false,\"id_str\":\"19829645\",\"is_translator\":false,\"protected\":false,\"descri=\nption\":\"MTV christened her Buzzworthy. Clear Channel's iHeart Radio called=\n her One to Watch. Kimberly Cole is making her mark. KimberlyColeMusic@gmai=\nl.com\",\"profile_use_background_image\":true,\"profile_text_color\":\"362720\",\"c=\nreated_at\":\"Sat Jan 31 20:21:42 +0000 2009\",\"verified\":true,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3217554112\\/c6464d61ac9819d2eb=\nfb4ab8c6acbe88_normal.jpeg\",\"following\":false,\"screen_name\":\"KimberlyCole1\"=\n,\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":3,\"contributors=\n_enabled\":false},{\"notifications\":false,\"name\":\"Lenny Kravitz\",\"profile_bac=\nkground_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_colo=\nr\":\"92998F\",\"url\":\"http:\\/\\/t.co\\/oIpxV6ZF7p\",\"friends_count\":1897,\"id\":230=\n06794,\"followers_count\":4384234,\"time_zone\":\"Eastern Time (US & Canada)\",\"e=\nntities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/oIpxV6ZF7p=\n\",\"display_url\":\"lennykravitzmusic.com\",\"expanded_url\":\"http:\\/\\/www.lennyk=\nravitzmusic.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Paris\",\"profile_=\nbackground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_im=\nages\\/378800000055168886\\/477523e6352a86c3bedea109142f91f0.jpeg\",\"default_p=\nrofile\":false,\"profile_background_color\":\"000000\",\"profile_banner_url\":\"htt=\nps:\\/\\/pbs.twimg.com\\/profile_banners\\/23006794\\/1376939771\",\"statuses_coun=\nt\":1138,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_images\\/378800000187182887\\/c5fa7f32461ef14910a522=\n812a3ca6bc_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_background_images\\/378800000055168886\\/477523e6352a86c3bedea109=\n142f91f0.jpeg\",\"listed_count\":25760,\"geo_enabled\":true,\"profile_link_color\"=\n:\"0F7195\",\"follow_request_sent\":false,\"id_str\":\"23006794\",\"is_translator\":f=\nalse,\"protected\":false,\"description\":\"Are You Gonna Go My Way 20th Annivers=\nary Deluxe Edition In Stores & Online 9\\/24\",\"profile_use_background_image\"=\n:true,\"profile_text_color\":\"333333\",\"created_at\":\"Fri Mar 06 00:51:27 +0000=\n 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/378800000187182887\\/c5fa7f32461ef14910a522812a3ca6bc_normal.jpeg\",\"=\nfollowing\":false,\"screen_name\":\"LennyKravitz\",\"profile_sidebar_border_color=\n\":\"FFFFFF\",\"favourites_count\":3,\"contributors_enabled\":false},{\"notificatio=\nns\":false,\"name\":\"Dolly Parton\",\"profile_background_tile\":false,\"default_pr=\nofile_image\":false,\"profile_sidebar_fill_color\":\"8DD1E6\",\"url\":\"http:\\/\\/t.=\nco\\/CwH9MvizaL\",\"friends_count\":21,\"id\":14790966,\"followers_count\":2709465,=\n\"time_zone\":\"Central Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indic=\nes\":[0,22],\"url\":\"http:\\/\\/t.co\\/CwH9MvizaL\",\"display_url\":\"dollypartonmusi=\nc.net\",\"expanded_url\":\"http:\\/\\/www.dollypartonmusic.net\"}]},\"description\":=\n{\"urls\":[{\"expanded_url\":\"http:\\/\\/facebook.com\\/DollyParton\",\"url\":\"http:\\=\n/\\/t.co\\/hqZckRzRBY\",\"indices\":[45,67],\"display_url\":\"facebook.com\\/DollyPa=\nrton\"},{\"expanded_url\":\"http:\\/\\/OfficialDollyParton.tumblr.com\",\"url\":\"htt=\np:\\/\\/t.co\\/GIJslIrwX1\",\"indices\":[68,90],\"display_url\":\"OfficialDollyParto=\nn.tumblr.com\"}]}},\"location\":\"Nashville, Tennessee\",\"profile_background_ima=\nge_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/80114396=\n2\\/bc2f097637fbd514261288fb6fdbb1f3.jpeg\",\"default_profile\":false,\"profile_=\nbackground_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/p=\nrofile_banners\\/14790966\\/1347983047\",\"statuses_count\":717,\"lang\":\"en\",\"utc=\n_offset\":-21600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_images\\/3764210470\\/212b47b120e1ff61a661a2e57f652e60_normal.jpeg\",\"profile=\n_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/8=\n01143962\\/bc2f097637fbd514261288fb6fdbb1f3.jpeg\",\"listed_count\":14523,\"geo_=\nenabled\":false,\"profile_link_color\":\"050933\",\"follow_request_sent\":false,\"i=\nd_str\":\"14790966\",\"is_translator\":false,\"protected\":false,\"description\":\"Wo=\nrkin' 9 to 5, what a way to make a living! http:\\/\\/t.co\\/hqZckRzRBY http:\\=\n/\\/t.co\\/GIJslIrwX1\",\"profile_use_background_image\":true,\"profile_text_colo=\nr\":\"362720\",\"created_at\":\"Thu May 15 20:00:06 +0000 2008\",\"verified\":true,\"=\nprofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3764210470\\/212b=\n47b120e1ff61a661a2e57f652e60_normal.jpeg\",\"following\":false,\"screen_name\":\"=\nDollyParton\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":1,\"=\ncontributors_enabled\":false},{\"notifications\":false,\"name\":\"weezer\",\"profil=\ne_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fil=\nl_color\":\"D4D4D4\",\"url\":\"http:\\/\\/t.co\\/yrlovQ1lw7\",\"friends_count\":339,\"id=\n\":16685316,\"followers_count\":1248619,\"time_zone\":\"Pacific Time (US & Canada=\n)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/yrlov=\nQ1lw7\",\"display_url\":\"weezer.com\",\"expanded_url\":\"http:\\/\\/www.weezer.com\"}=\n]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/www.theweezercruise.com=\n\\/\",\"url\":\"http:\\/\\/t.co\\/A7k2c1zDWG\",\"indices\":[70,92],\"display_url\":\"thew=\neezercruise.com\"}]}},\"location\":\"Los Angeles\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/413781670\\/Wee=\nzerTwitterBackgorundNavy.jpg\",\"default_profile\":false,\"profile_background_c=\nolor\":\"EEEEEE\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banne=\nrs\\/16685316\\/1356333860\",\"statuses_count\":3646,\"lang\":\"en\",\"utc_offset\":-2=\n8800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/17=\n93336519\\/twitter_normal.png\",\"profile_background_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_background_images\\/413781670\\/WeezerTwitterBackgorundNavy=\n.jpg\",\"listed_count\":10227,\"geo_enabled\":false,\"profile_link_color\":\"FF2200=\n\",\"follow_request_sent\":false,\"id_str\":\"16685316\",\"is_translator\":false,\"pr=\notected\":false,\"description\":\"the weezer cruise 2014\\r\\nFebruary 13-17, 201=\n4\\r\\nFlorida to the Bahamas\\r\\nhttp:\\/\\/t.co\\/A7k2c1zDWG\",\"profile_use_back=\nground_image\":true,\"profile_text_color\":\"050505\",\"created_at\":\"Fri Oct 10 1=\n6:33:54 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.=\ncom\\/profile_images\\/1793336519\\/twitter_normal.png\",\"following\":false,\"scr=\neen_name\":\"Weezer\",\"profile_sidebar_border_color\":\"E8E8E8\",\"favourites_coun=\nt\":1,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Paul van =\nDyk\",\"profile_background_tile\":false,\"default_profile_image\":false,\"profile=\n_sidebar_fill_color\":\"222A2E\",\"url\":\"http:\\/\\/t.co\\/LFdXlmclSo\",\"friends_co=\nunt\":318,\"id\":20696985,\"followers_count\":1014470,\"time_zone\":\"Berlin\",\"enti=\nties\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/LFdXlmclSo\",\"=\ndisplay_url\":\"paulvandyk.com\",\"expanded_url\":\"http:\\/\\/www.paulvandyk.com\"}=\n]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/www.youtube.com\\/paulva=\nndyk\",\"url\":\"http:\\/\\/t.co\\/XGBBwsKcqr\",\"indices\":[108,130],\"display_url\":\"=\nyoutube.com\\/paulvandyk\"}]}},\"location\":\"Berlin\",\"profile_background_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/37880000005=\n5574148\\/8debaba99c6f19fac908d8281414c37b.jpeg\",\"default_profile\":false,\"pr=\nofile_background_color\":\"E2E2E2\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.=\ncom\\/profile_banners\\/20696985\\/1358959618\",\"statuses_count\":5422,\"lang\":\"e=\nn\",\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pr=\nofile_images\\/3153100002\\/53df401b2a4e9c8d04dbfd24a51cdf11_normal.jpeg\",\"pr=\nofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_imag=\nes\\/378800000055574148\\/8debaba99c6f19fac908d8281414c37b.jpeg\",\"listed_coun=\nt\":7468,\"geo_enabled\":false,\"profile_link_color\":\"2FC2EF\",\"follow_request_s=\nent\":false,\"id_str\":\"20696985\",\"is_translator\":false,\"protected\":false,\"des=\ncription\":\"Grammy-nominated artist and globally acclaimed DJ\\/Producer. Che=\nck out a new episode of PvD TV every week on http:\\/\\/t.co\\/XGBBwsKcqr\",\"pr=\nofile_use_background_image\":true,\"profile_text_color\":\"66A2BD\",\"created_at\"=\n:\"Thu Feb 12 17:45:00 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/3153100002\\/53df401b2a4e9c8d04dbfd24a51c=\ndf11_normal.jpeg\",\"following\":false,\"screen_name\":\"PAULVANDYK\",\"profile_sid=\nebar_border_color\":\"FFFFFF\",\"favourites_count\":19,\"contributors_enabled\":fa=\nlse},{\"notifications\":false,\"name\":\"MARS\",\"profile_background_tile\":true,\"d=\nefault_profile_image\":false,\"profile_sidebar_fill_color\":\"FFFFFF\",\"url\":\"ht=\ntp:\\/\\/t.co\\/GBW5empqSG\",\"friends_count\":27,\"id\":20823773,\"followers_count\"=\n:1146196,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\"=\n:[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/GBW5empqSG\",\"display_url\":\"thirty=\nsecondstomars.com\",\"expanded_url\":\"http:\\/\\/www.thirtysecondstomars.com\"}]}=\n,\"description\":{\"urls\":[]}},\"location\":\"http:\\/\\/smarturl.it\\/LLFD\",\"profil=\ne_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_=\nimages\\/341159074\\/twtr_2A.jpg\",\"default_profile\":false,\"profile_background=\n_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_ban=\nners\\/20823773\\/1362063874\",\"statuses_count\":12224,\"lang\":\"en\",\"utc_offset\"=\n:-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\=\n/3604591499\\/e63e6d86bc56c1f024fd730357068a50_normal.jpeg\",\"profile_backgro=\nund_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/341159074=\n\\/twtr_2A.jpg\",\"listed_count\":11472,\"geo_enabled\":false,\"profile_link_color=\n\":\"C20000\",\"follow_request_sent\":false,\"id_str\":\"20823773\",\"is_translator\":=\nfalse,\"protected\":false,\"description\":\"PROVEHITO IN ALTUM \\u2022 LOVE LUST =\nFAITH + DREAMS \\u2022 NOW AVAILABLE\",\"profile_use_background_image\":false,\"=\nprofile_text_color\":\"000000\",\"created_at\":\"Sat Feb 14 01:28:26 +0000 2009\",=\n\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\=\n/3604591499\\/e63e6d86bc56c1f024fd730357068a50_normal.jpeg\",\"following\":fals=\ne,\"screen_name\":\"30SECONDSTOMARS\",\"profile_sidebar_border_color\":\"FFFFFF\",\"=\nfavourites_count\":499,\"contributors_enabled\":false},{\"notifications\":false,=\n\"name\":\"Mastermind\",\"profile_background_tile\":true,\"default_profile_image\":=\nfalse,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/P1bzBmPDe=\ns\",\"friends_count\":426,\"id\":149726145,\"followers_count\":2890348,\"time_zone\"=\n:\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],=\n\"url\":\"http:\\/\\/t.co\\/P1bzBmPDes\",\"display_url\":\"RozayRaw.com\",\"expanded_ur=\nl\":\"http:\\/\\/www.RozayRaw.com\"}]},\"description\":{\"urls\":[]}},\"location\":nul=\nl,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/378800000029925211\\/7de601c750c4bee2b6f6c3e8c47f996a.jpeg\"=\n,\"default_profile\":false,\"profile_background_color\":\"0A010A\",\"profile_banne=\nr_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/149726145\\/1374454991\",\"s=\ntatuses_count\":34060,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000309454419\\/d1dbf30cd=\nf0d6a4827cf0699ade4f965_normal.jpeg\",\"profile_background_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_background_images\\/378800000029925211\\/7de601c750c=\n4bee2b6f6c3e8c47f996a.jpeg\",\"listed_count\":11020,\"geo_enabled\":false,\"profi=\nle_link_color\":\"C95D04\",\"follow_request_sent\":false,\"id_str\":\"149726145\",\"i=\ns_translator\":false,\"protected\":false,\"description\":\"Rich fly fat boss who =\nluvs @wingstop lemon pepper wings.\",\"profile_use_background_image\":true,\"pr=\nofile_text_color\":\"330000\",\"created_at\":\"Sun May 30 02:16:03 +0000 2010\",\"v=\nerified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3=\n78800000309454419\\/d1dbf30cdf0d6a4827cf0699ade4f965_normal.jpeg\",\"following=\n\":false,\"screen_name\":\"rickyrozay\",\"profile_sidebar_border_color\":\"000000\",=\n\"favourites_count\":350,\"contributors_enabled\":false},{\"notifications\":false=\n,\"name\":\"Bombay Bicycle Club\",\"profile_background_tile\":false,\"default_prof=\nile_image\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co=\n\\/v5NYbaaOnm\",\"friends_count\":53,\"id\":21114159,\"followers_count\":677883,\"ti=\nme_zone\":\"London\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:=\n\\/\\/t.co\\/v5NYbaaOnm\",\"display_url\":\"facebook.com\\/bombaybicyclec\\u2026\",\"e=\nxpanded_url\":\"http:\\/\\/facebook.com\\/bombaybicycleclub\"}]},\"description\":{\"=\nurls\":[]}},\"location\":\"\\u00dcT: 50.817185,-0.117639\",\"profile_background_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"d=\nefault_profile\":true,\"profile_background_color\":\"C0DEED\",\"statuses_count\":2=\n094,\"lang\":\"en\",\"utc_offset\":0,\"profile_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_images\\/1393866479\\/Bombay_Bicycle_smiles_lo_res_normal.jpg=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/th=\neme1\\/bg.png\",\"listed_count\":2152,\"geo_enabled\":false,\"profile_link_color\":=\n\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"21114159\",\"is_translator\":fa=\nlse,\"protected\":false,\"description\":null,\"profile_use_background_image\":tru=\ne,\"profile_text_color\":\"333333\",\"created_at\":\"Tue Feb 17 18:26:06 +0000 200=\n9\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_imag=\nes\\/1393866479\\/Bombay_Bicycle_smiles_lo_res_normal.jpg\",\"following\":false,=\n\"screen_name\":\"BombayBicycle\",\"profile_sidebar_border_color\":\"C0DEED\",\"favo=\nurites_count\":1,\"contributors_enabled\":false},{\"notifications\":false,\"name\"=\n:\"Jimmy Eat World\",\"profile_background_tile\":false,\"default_profile_image\":=\nfalse,\"profile_sidebar_fill_color\":\"F7F7F7\",\"url\":\"http:\\/\\/t.co\\/3LK5ykiWm=\nD\",\"friends_count\":118018,\"id\":14994465,\"followers_count\":2784131,\"time_zon=\ne\":\"Arizona\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t=\n.co\\/3LK5ykiWmD\",\"display_url\":\"jimmyeatworld.com\",\"expanded_url\":\"http:\\/\\=\n/www.jimmyeatworld.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Mesa, Ari=\nzona\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_background_images\\/886688914\\/d1ea4676876b1217dbfd9df79eefeb9d.jpeg\",\"def=\nault_profile\":false,\"profile_background_color\":\"000000\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14994465\\/1366938949\",\"statuse=\ns_count\":2846,\"lang\":\"en\",\"utc_offset\":-25200,\"profile_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_images\\/3755234470\\/9c5be9c316bd31565036917b=\n781ae2f7_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com=\n\\/profile_background_images\\/886688914\\/d1ea4676876b1217dbfd9df79eefeb9d.jp=\neg\",\"listed_count\":10884,\"geo_enabled\":true,\"profile_link_color\":\"B4A389\",\"=\nfollow_request_sent\":false,\"id_str\":\"14994465\",\"is_translator\":false,\"prote=\ncted\":false,\"description\":\"Damage out June 11, 2013\",\"profile_use_backgroun=\nd_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Tue Jun 03 16:29:=\n21 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_images\\/3755234470\\/9c5be9c316bd31565036917b781ae2f7_normal.jpeg\",\"=\nfollowing\":false,\"screen_name\":\"jimmyeatworld\",\"profile_sidebar_border_colo=\nr\":\"000000\",\"favourites_count\":159,\"contributors_enabled\":false},{\"notifica=\ntions\":false,\"name\":\"Cage The Elephant\",\"profile_background_tile\":false,\"de=\nfault_profile_image\":false,\"profile_sidebar_fill_color\":\"807070\",\"url\":\"htt=\np:\\/\\/t.co\\/kbmvKefqSO\",\"friends_count\":54,\"id\":19341413,\"followers_count\":=\n817059,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[=\n{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/kbmvKefqSO\",\"display_url\":\"cagethee=\nlephant.com\",\"expanded_url\":\"http:\\/\\/www.cagetheelephant.com\"}]},\"descript=\nion\":{\"urls\":[]}},\"location\":\"Touring...\",\"profile_background_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/378800000050730171=\n\\/0053cdb2463bb8ef8976e3bb08392fc1.jpeg\",\"default_profile\":false,\"profile_b=\nackground_color\":\"C0DEED\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pr=\nofile_banners\\/19341413\\/1376411828\",\"statuses_count\":2096,\"lang\":\"en\",\"utc=\n_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile=\n_images\\/378800000289017036\\/80318a2f3361997d30014ace0c5469dd_normal.jpeg\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/378800000050730171\\/0053cdb2463bb8ef8976e3bb08392fc1.jpeg\",\"listed_c=\nount\":3117,\"geo_enabled\":false,\"profile_link_color\":\"EDCD00\",\"follow_reques=\nt_sent\":false,\"id_str\":\"19341413\",\"is_translator\":false,\"protected\":false,\"=\ndescription\":\"official twitter for Cage The Elephant\",\"profile_use_backgrou=\nnd_image\":true,\"profile_text_color\":\"000000\",\"created_at\":\"Thu Jan 22 15:01=\n:28 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_images\\/378800000289017036\\/80318a2f3361997d30014ace0c5469dd_norma=\nl.jpeg\",\"following\":false,\"screen_name\":\"CageTheElephant\",\"profile_sidebar_=\nborder_color\":\"FFFFFF\",\"favourites_count\":59,\"contributors_enabled\":false},=\n{\"notifications\":false,\"name\":\"Imogen Heap\",\"profile_background_tile\":true,=\n\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"0D0D0D\",\"url\":\"=\nhttp:\\/\\/t.co\\/J0dIduebmu\",\"friends_count\":31296,\"id\":14523801,\"followers_c=\nount\":1986346,\"time_zone\":\"London\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0=\n,22],\"url\":\"http:\\/\\/t.co\\/J0dIduebmu\",\"display_url\":\"imogenheap.com\",\"expa=\nnded_url\":\"http:\\/\\/www.imogenheap.com\"}]},\"description\":{\"urls\":[{\"expande=\nd_url\":\"http:\\/\\/imogenheap.com\",\"url\":\"http:\\/\\/t.co\\/Eff03zbf\",\"indices\":=\n[104,124],\"display_url\":\"imogenheap.com\"}]}},\"location\":\"Londonish\",\"profil=\ne_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_=\nimages\\/356397564\\/iblog-grid-bg.jpg\",\"default_profile\":false,\"profile_back=\nground_color\":\"3A6366\",\"statuses_count\":4832,\"lang\":\"en\",\"utc_offset\":0,\"pr=\nofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2733581511=\n\\/ac9caffe5cfa0e618527657b054c365e_normal.jpeg\",\"profile_background_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/356397564\\/iblog-gri=\nd-bg.jpg\",\"listed_count\":12898,\"geo_enabled\":true,\"profile_link_color\":\"3A6=\n366\",\"follow_request_sent\":false,\"id_str\":\"14523801\",\"is_translator\":false,=\n\"protected\":false,\"description\":\"Writing + recording songs for 4th Solo alb=\num. Releasing songs as I go. Latest projects + song downloads http:\\/\\/t.co=\n\\/Eff03zbf xx\",\"profile_use_background_image\":true,\"profile_text_color\":\"66=\n6666\",\"created_at\":\"Fri Apr 25 07:38:01 +0000 2008\",\"verified\":true,\"profil=\ne_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2733581511\\/ac9caffe5c=\nfa0e618527657b054c365e_normal.jpeg\",\"following\":false,\"screen_name\":\"imogen=\nheap\",\"profile_sidebar_border_color\":\"3A6366\",\"favourites_count\":1,\"contrib=\nutors_enabled\":false},{\"notifications\":false,\"name\":\"Questlove Jenkins\",\"pr=\nofile_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar_=\nfill_color\":\"E61014\",\"url\":\"http:\\/\\/t.co\\/P6bx9kOudU\",\"friends_count\":5941=\n,\"id\":14939981,\"followers_count\":2707124,\"time_zone\":\"Eastern Time (US & Ca=\nnada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/P=\n6bx9kOudU\",\"display_url\":\"itunes.apple.com\\/us\\/artist\\/the-\\u2026\",\"expand=\ned_url\":\"http:\\/\\/itunes.apple.com\\/us\\/artist\\/the-roots\\/id43680\"}]},\"des=\ncription\":{\"urls\":[]}},\"location\":\"Philly & Fi-Di NYC & 31Rock\",\"profile_ba=\nckground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_imag=\nes\\/54883997\\/babydrum.png\",\"default_profile\":false,\"profile_background_col=\nor\":\"662C00\",\"statuses_count\":47716,\"lang\":\"en\",\"utc_offset\":-18000,\"profil=\ne_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1168342829\\/Sc=\nreen_shot_2010-11-15_at_9.08.26_PM_normal.png\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/54883997\\/babydrum.pn=\ng\",\"listed_count\":19683,\"geo_enabled\":true,\"profile_link_color\":\"0F0102\",\"f=\nollow_request_sent\":false,\"id_str\":\"14939981\",\"is_translator\":false,\"protec=\nted\":false,\"description\":\"your favorite twitterer's favorite music snob.\",\"=\nprofile_use_background_image\":true,\"profile_text_color\":\"8A8A26\",\"created_a=\nt\":\"Thu May 29 02:17:23 +0000 2008\",\"verified\":true,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/1168342829\\/Screen_shot_2010-11-15_at_=\n9.08.26_PM_normal.png\",\"following\":false,\"screen_name\":\"questlove\",\"profile=\n_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":53,\"contributors_enabled=\n\":false},{\"notifications\":false,\"name\":\"OK Go\",\"profile_background_tile\":fa=\nlse,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"79ABD1\",\"ur=\nl\":\"http:\\/\\/t.co\\/yL63HMqGKO\",\"friends_count\":88,\"id\":6815302,\"followers_c=\nount\":998263,\"time_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"u=\nrls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/yL63HMqGKO\",\"display_url\":\"ok=\ngo.net\",\"expanded_url\":\"http:\\/\\/okgo.net\"}]},\"description\":{\"urls\":[]}},\"l=\nocation\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_background_images\\/480449805\\/OKGo_agnostic_Twitter.jpg\",\"default=\n_profile\":false,\"profile_background_color\":\"9AE4E8\",\"statuses_count\":2676,\"=\nlang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_images\\/1994512620\\/FB_agnostic_band_photo_normal.jpg\",\"pro=\nfile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_image=\ns\\/480449805\\/OKGo_agnostic_Twitter.jpg\",\"listed_count\":6126,\"geo_enabled\":=\nfalse,\"profile_link_color\":\"3963A6\",\"follow_request_sent\":false,\"id_str\":\"6=\n815302\",\"is_translator\":false,\"protected\":false,\"description\":\"The will to =\nrock is strong indeed.\",\"profile_use_background_image\":true,\"profile_text_c=\nolor\":\"F2F7F7\",\"created_at\":\"Thu Jun 14 16:16:39 +0000 2007\",\"verified\":tru=\ne,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1994512620\\/F=\nB_agnostic_band_photo_normal.jpg\",\"following\":false,\"screen_name\":\"okgo\",\"p=\nrofile_sidebar_border_color\":\"FCFCFC\",\"favourites_count\":92,\"contributors_e=\nnabled\":false},{\"notifications\":false,\"name\":\"Alison Sudol\",\"profile_backgr=\nound_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_color\":=\n\"FF9F0F\",\"url\":\"http:\\/\\/t.co\\/2QyCkOuqBD\",\"friends_count\":868,\"id\":5248441=\n,\"followers_count\":1841707,\"time_zone\":\"Pacific Time (US & Canada)\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/2QyCkOuqBD\",\"di=\nsplay_url\":\"afinefrenzy.com\",\"expanded_url\":\"http:\\/\\/afinefrenzy.com\"}]},\"=\ndescription\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\/pines\",\"url\":\"=\nhttp:\\/\\/t.co\\/PDXbECRQdF\",\"indices\":[50,72],\"display_url\":\"smarturl.it\\/pi=\nnes\"}]}},\"location\":\"here\",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/850769954\\/8ca3bb90c583ab602be529=\n9ffd2c3ca0.jpeg\",\"default_profile\":false,\"profile_background_color\":\"6E6254=\n\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/5248441\\/=\n1349905960\",\"statuses_count\":6634,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3566530979\\/a7a6=\n3494c4fc7b9c37d1150cf35ce042_normal.jpeg\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/850769954\\/8ca3bb90c583ab6=\n02be5299ffd2c3ca0.jpeg\",\"listed_count\":6276,\"geo_enabled\":false,\"profile_li=\nnk_color\":\"6B2808\",\"follow_request_sent\":false,\"id_str\":\"5248441\",\"is_trans=\nlator\":false,\"protected\":false,\"description\":\"'Pines' & The Story of Pines =\navailable on iTunes: http:\\/\\/t.co\\/PDXbECRQdF\",\"profile_use_background_ima=\nge\":true,\"profile_text_color\":\"235903\",\"created_at\":\"Thu Apr 19 17:05:51 +0=\n000 2007\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_images\\/3566530979\\/a7a63494c4fc7b9c37d1150cf35ce042_normal.jpeg\",\"follo=\nwing\":false,\"screen_name\":\"AFineFrenzy\",\"profile_sidebar_border_color\":\"FFF=\nFFF\",\"favourites_count\":71,\"contributors_enabled\":false},{\"notifications\":f=\nalse,\"name\":\"Amanda Palmer\",\"profile_background_tile\":true,\"default_profile=\n_image\":false,\"profile_sidebar_fill_color\":\"FFA9A9\",\"url\":\"http:\\/\\/t.co\\/s=\nIJQklv6PI\",\"friends_count\":260,\"id\":10798802,\"followers_count\":909051,\"time=\n_zone\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[=\n0,22],\"url\":\"http:\\/\\/t.co\\/sIJQklv6PI\",\"display_url\":\"amandapalmer.net\",\"e=\nxpanded_url\":\"http:\\/\\/amandapalmer.net\"}]},\"description\":{\"urls\":[{\"expand=\ned_url\":\"http:\\/\\/bit.ly\\/SeeAFP\",\"url\":\"http:\\/\\/t.co\\/TLQ7zNvnCq\",\"indice=\ns\":[95,117],\"display_url\":\"bit.ly\\/SeeAFP\"}]}},\"location\":\"boston\\/cambridg=\ne\\/the road\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\=\n/profile_background_images\\/632168720\\/61b6tbbxplvtstqjonta.png\",\"default_p=\nrofile\":false,\"profile_background_color\":\"F58CAD\",\"profile_banner_url\":\"htt=\nps:\\/\\/pbs.twimg.com\\/profile_banners\\/10798802\\/1372466808\",\"statuses_coun=\nt\":51582,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_images\\/1807063170\\/afp_twitter_icon_normal.jpg\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/632168720\\/61b6tbbxplvtstqjonta.png\",\"listed_count\":10556,\"geo_enabl=\ned\":false,\"profile_link_color\":\"1A184D\",\"follow_request_sent\":false,\"id_str=\n\":\"10798802\",\"is_translator\":false,\"protected\":false,\"description\":\"perform=\ner, writer, giver, taker, yeller, listener, love-lover, rule-hater. on tour=\n everywhere: http:\\/\\/t.co\\/TLQ7zNvnCq\",\"profile_use_background_image\":true=\n,\"profile_text_color\":\"493636\",\"created_at\":\"Mon Dec 03 01:27:35 +0000 2007=\n\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_image=\ns\\/1807063170\\/afp_twitter_icon_normal.jpg\",\"following\":false,\"screen_name\"=\n:\"amandapalmer\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":=\n54,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Sonny \",\"pr=\nofile_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar=\n_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/9S7ovUb5QV\",\"friends_count\":570=\n,\"id\":18825961,\"followers_count\":3112301,\"time_zone\":\"Pacific Time (US & Ca=\nnada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/9=\nS7ovUb5QV\",\"display_url\":\"facebook.com\\/skrillex\",\"expanded_url\":\"http:\\/\\/=\nfacebook.com\\/skrillex\"}]},\"description\":{\"urls\":[]}},\"location\":\"\\u00dcT: =\n33.997971,-118.280807\",\"profile_background_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"default_profile\":true,\"profile_=\nbackground_color\":\"C0DEED\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/p=\nrofile_banners\\/18825961\\/1361352415\",\"statuses_count\":10620,\"lang\":\"en\",\"u=\ntc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_images\\/378800000177002882\\/3e43092f8a55737317c30dde2fc5db93_normal.jpeg=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/th=\neme1\\/bg.png\",\"listed_count\":10332,\"geo_enabled\":true,\"profile_link_color\":=\n\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"18825961\",\"is_translator\":fa=\nlse,\"protected\":false,\"description\":\"your friend\",\"profile_use_background_i=\nmage\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Sat Jan 10 03:49:35 =\n+0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/378800000177002882\\/3e43092f8a55737317c30dde2fc5db93_normal.jp=\neg\",\"following\":false,\"screen_name\":\"Skrillex\",\"profile_sidebar_border_colo=\nr\":\"C0DEED\",\"favourites_count\":21,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"Flea\",\"profile_background_tile\":false,\"default_profile_=\nimage\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/Me=\n8e4nAL1P\",\"friends_count\":365,\"id\":196925561,\"followers_count\":903749,\"time=\n_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[=\n0,22],\"url\":\"http:\\/\\/t.co\\/Me8e4nAL1P\",\"display_url\":\"silverlakeconservato=\nry.com\",\"expanded_url\":\"http:\\/\\/www.silverlakeconservatory.com\\/\"}]},\"desc=\nription\":{\"urls\":[]}},\"location\":\"a hotel room somewhere\",\"profile_backgrou=\nnd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.pn=\ng\",\"default_profile\":true,\"profile_background_color\":\"C0DEED\",\"statuses_cou=\nnt\":3899,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_images\\/3777056558\\/3b218746f2a54984242e86077329f=\nf51_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/ima=\nges\\/themes\\/theme1\\/bg.png\",\"listed_count\":5593,\"geo_enabled\":false,\"profi=\nle_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"196925561\",\"i=\ns_translator\":false,\"protected\":false,\"description\":\"a small man\",\"profile_=\nuse_background_image\":true,\"profile_text_color\":\"333333\",\"created_at\":\"Thu =\nSep 30 06:52:01 +0000 2010\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/3777056558\\/3b218746f2a54984242e86077329ff51_n=\normal.jpeg\",\"following\":false,\"screen_name\":\"flea333\",\"profile_sidebar_bord=\ner_color\":\"C0DEED\",\"favourites_count\":9,\"contributors_enabled\":false},{\"not=\nifications\":false,\"name\":\"Pete Wentz \",\"profile_background_tile\":true,\"defa=\nult_profile_image\":false,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http:=\n\\/\\/t.co\\/l7lJA0x5bT\",\"friends_count\":351,\"id\":16264006,\"followers_count\":2=\n807820,\"time_zone\":\"Quito\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"ur=\nl\":\"http:\\/\\/t.co\\/l7lJA0x5bT\",\"display_url\":\"petewentz.com\",\"expanded_url\"=\n:\"http:\\/\\/www.petewentz.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"jet=\n lag city.\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_background_images\\/280704405\\/petewolf.jpg\",\"default_profile\":false=\n,\"profile_background_color\":\"9AE4E8\",\"profile_banner_url\":\"https:\\/\\/pbs.tw=\nimg.com\\/profile_banners\\/16264006\\/1354306133\",\"statuses_count\":12784,\"lan=\ng\":\"en\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_images\\/378800000193831140\\/e7a5cdd392f0f4abffb8f4ff40f1b93d_n=\normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nbackground_images\\/280704405\\/petewolf.jpg\",\"listed_count\":16643,\"geo_enabl=\ned\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str=\n\":\"16264006\",\"is_translator\":false,\"protected\":false,\"description\":\"i headb=\nang in the rock and roll band fall out boy (part time pizza aficionado)\",\"p=\nrofile_use_background_image\":true,\"profile_text_color\":\"333333\",\"created_at=\n\":\"Fri Sep 12 21:34:37 +0000 2008\",\"verified\":true,\"profile_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_images\\/378800000193831140\\/e7a5cdd392f0f4abffb=\n8f4ff40f1b93d_normal.jpeg\",\"following\":false,\"screen_name\":\"petewentz\",\"pro=\nfile_sidebar_border_color\":\"BDDCAD\",\"favourites_count\":1,\"contributors_enab=\nled\":false},{\"notifications\":false,\"name\":\"Steve Aoki\",\"profile_background_=\ntile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"A6EA=\nFF\",\"url\":\"http:\\/\\/t.co\\/F4K5TRB6rP\",\"friends_count\":1170,\"id\":17019152,\"f=\nollowers_count\":1447280,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\"=\n:{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/F4K5TRB6rP\",\"displ=\nay_url\":\"dimmak.com\",\"expanded_url\":\"http:\\/\\/dimmak.com\"}]},\"description\":=\n{\"urls\":[{\"expanded_url\":\"http:\\/\\/youtube.com\\/steveaoki\",\"url\":\"http:\\/\\/=\nt.co\\/iZe18IvC2E\",\"indices\":[32,54],\"display_url\":\"youtube.com\\/steveaoki\"}=\n,{\"expanded_url\":\"http:\\/\\/facebook.com\\/steveaoki\",\"url\":\"http:\\/\\/t.co\\/L=\nRj1S9qgoP\",\"indices\":[61,83],\"display_url\":\"facebook.com\\/steveaoki\"},{\"exp=\nanded_url\":\"http:\\/\\/steveaoki.com\",\"url\":\"http:\\/\\/t.co\\/QYv0GUhI6T\",\"indi=\nces\":[92,114],\"display_url\":\"steveaoki.com\"},{\"expanded_url\":\"http:\\/\\/bit.=\nly\\/VoteAokiDJMag2013\",\"url\":\"http:\\/\\/t.co\\/XIQ3efZAjf\",\"indices\":[121,143=\n],\"display_url\":\"bit.ly\\/VoteAokiDJMag2\\u2026\"}]}},\"location\":\"\\u00dcT: 34.=\n075736,-118.301746\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twi=\nmg.com\\/profile_background_images\\/378800000024424877\\/1714f163c1651db2163f=\n670dbf8d08d0.jpeg\",\"default_profile\":false,\"profile_background_color\":\"0000=\n00\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1701915=\n2\\/1373909394\",\"statuses_count\":19350,\"lang\":\"en\",\"utc_offset\":-28800,\"prof=\nile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000138=\n560683\\/27d4c585d05bf6df24ff22d6ac5ec954_normal.png\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000024424=\n877\\/1714f163c1651db2163f670dbf8d08d0.jpeg\",\"listed_count\":6895,\"geo_enable=\nd\":false,\"profile_link_color\":\"000000\",\"follow_request_sent\":false,\"id_str\"=\n:\"17019152\",\"is_translator\":false,\"protected\":false,\"description\":\"chief of=\n @dimmakrecs\\r\\nsubscribe http:\\/\\/t.co\\/iZe18IvC2E\\r\\nlike http:\\/\\/t.co\\/=\nLRj1S9qgoP\\r\\nupdate http:\\/\\/t.co\\/QYv0GUhI6T\\r\\nvote http:\\/\\/t.co\\/XIQ3e=\nfZAjf\",\"profile_use_background_image\":true,\"profile_text_color\":\"000000\",\"c=\nreated_at\":\"Tue Oct 28 11:19:27 +0000 2008\",\"verified\":true,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000138560683\\/27d4c585d0=\n5bf6df24ff22d6ac5ec954_normal.png\",\"following\":false,\"screen_name\":\"steveao=\nki\",\"profile_sidebar_border_color\":\"000000\",\"favourites_count\":17,\"contribu=\ntors_enabled\":false},{\"notifications\":false,\"name\":\"Trent Reznor\",\"profile_=\nbackground_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_=\ncolor\":\"252429\",\"url\":\"http:\\/\\/t.co\\/ZTIthuVzEq\",\"friends_count\":192,\"id\":=\n15901190,\"followers_count\":1603929,\"time_zone\":\"Pacific Time (US & Canada)\"=\n,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/ZTIthuV=\nzEq\",\"display_url\":\"nin.com\",\"expanded_url\":\"http:\\/\\/www.nin.com\\/\"}]},\"de=\nscription\":{\"urls\":[]}},\"location\":\"Los Angeles\",\"profile_background_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"defau=\nlt_profile\":false,\"profile_background_color\":\"1A1B1F\",\"statuses_count\":797,=\n\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.tw=\nimg.com\\/profile_images\\/58499973\\/robo1_normal.jpg\",\"profile_background_im=\nage_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"listed_co=\nunt\":22282,\"geo_enabled\":true,\"profile_link_color\":\"2FC2EF\",\"follow_request=\n_sent\":false,\"id_str\":\"15901190\",\"is_translator\":false,\"protected\":false,\"d=\nescription\":\"Nine Inch Nails, How To Destroy Angels and other things.\",\"pro=\nfile_use_background_image\":true,\"profile_text_color\":\"666666\",\"created_at\":=\n\"Tue Aug 19 05:53:47 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_images\\/58499973\\/robo1_normal.jpg\",\"following\":f=\nalse,\"screen_name\":\"trent_reznor\",\"profile_sidebar_border_color\":\"181A1E\",\"=\nfavourites_count\":1,\"contributors_enabled\":false},{\"notifications\":false,\"n=\name\":\"Ryan Adams\",\"profile_background_tile\":true,\"default_profile_image\":fa=\nlse,\"profile_sidebar_fill_color\":\"01000F\",\"url\":\"http:\\/\\/t.co\\/vdG24VLice\"=\n,\"friends_count\":202,\"id\":318531174,\"followers_count\":507148,\"time_zone\":\"P=\nacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"ur=\nl\":\"http:\\/\\/t.co\\/vdG24VLice\",\"display_url\":\"paxamrecords.com\",\"expanded_u=\nrl\":\"http:\\/\\/paxamrecords.com\\/\"}]},\"description\":{\"urls\":[]}},\"location\":=\n\"Los Angeles CA\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_background_images\\/563042697\\/ESO_-_Trillions_of_Stars.jpg\",\"d=\nefault_profile\":false,\"profile_background_color\":\"000000\",\"profile_banner_u=\nrl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/318531174\\/1373961064\",\"stat=\nuses_count\":6602,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000141411057\\/7e25f6e9afdf7=\n16c56e54b63a99115a8_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_background_images\\/563042697\\/ESO_-_Trillions_of_Stars=\n.jpg\",\"listed_count\":1640,\"geo_enabled\":false,\"profile_link_color\":\"E60000\"=\n,\"follow_request_sent\":false,\"id_str\":\"318531174\",\"is_translator\":false,\"pr=\notected\":false,\"description\":\"stay weird\",\"profile_use_background_image\":tr=\nue,\"profile_text_color\":\"F20909\",\"created_at\":\"Thu Jun 16 16:48:48 +0000 20=\n11\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ima=\nges\\/378800000141411057\\/7e25f6e9afdf716c56e54b63a99115a8_normal.jpeg\",\"fol=\nlowing\":false,\"screen_name\":\"TheRyanAdams\",\"profile_sidebar_border_color\":\"=\nFF0F0F\",\"favourites_count\":5937,\"contributors_enabled\":false},{\"notificatio=\nns\":false,\"name\":\"The Flaming Lips\",\"profile_background_tile\":false,\"defaul=\nt_profile_image\":false,\"profile_sidebar_fill_color\":\"000000\",\"url\":\"http:\\/=\n\\/t.co\\/g4VWRv0EMm\",\"friends_count\":3451,\"id\":18057465,\"followers_count\":96=\n6913,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"=\nindices\":[0,22],\"url\":\"http:\\/\\/t.co\\/g4VWRv0EMm\",\"display_url\":\"flaminglip=\ns.com\",\"expanded_url\":\"http:\\/\\/www.flaminglips.com\"}]},\"description\":{\"url=\ns\":[{\"expanded_url\":\"http:\\/\\/smarturl.it\\/lipsalbum\",\"url\":\"http:\\/\\/t.co\\=\n/r04JxCDern\",\"indices\":[51,73],\"display_url\":\"smarturl.it\\/lipsalbum\"}]}},\"=\nlocation\":\"Oklahoma City, OK\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/844487338\\/ee1f1f289f69d24ccca=\n29676f8d32f5f.jpeg\",\"default_profile\":false,\"profile_background_color\":\"6DC=\nAD9\",\"statuses_count\":4558,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1766612775\\/325396_1015=\n0373942023186_8505613185_8242183_1572364442_o_normal.jpg\",\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/844487338\\=\n/ee1f1f289f69d24ccca29676f8d32f5f.jpeg\",\"listed_count\":6895,\"geo_enabled\":f=\nalse,\"profile_link_color\":\"828282\",\"follow_request_sent\":false,\"id_str\":\"18=\n057465\",\"is_translator\":false,\"protected\":false,\"description\":\"We will alwa=\nys love you. The new album is out now: http:\\/\\/t.co\\/r04JxCDern\",\"profile_=\nuse_background_image\":true,\"profile_text_color\":\"7D7D7D\",\"created_at\":\"Thu =\nDec 11 19:25:08 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/1766612775\\/325396_10150373942023186_850561318=\n5_8242183_1572364442_o_normal.jpg\",\"following\":false,\"screen_name\":\"theflam=\ninglips\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":16,\"con=\ntributors_enabled\":false},{\"notifications\":false,\"name\":\"Bootsy Collins\",\"p=\nrofile_background_tile\":false,\"default_profile_image\":false,\"profile_sideba=\nr_fill_color\":\"FFFFFF\",\"url\":\"http:\\/\\/t.co\\/Y9cjnB1Tb2\",\"friends_count\":27=\n3,\"id\":21771224,\"followers_count\":933770,\"time_zone\":\"Central Time (US & Ca=\nnada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Y=\n9cjnB1Tb2\",\"display_url\":\"youtube.com\\/watch?v=3DOS4Lsy\\u2026\",\"expanded_ur=\nl\":\"http:\\/\\/www.youtube.com\\/watch?v=3DOS4LsyvZGuc\"}]},\"description\":{\"url=\ns\":[]}},\"location\":\"The Land of Funkaholic's\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/817287248\\/e95=\n70acf4e8bf3a675399e2caed93ada.jpeg\",\"default_profile\":false,\"profile_backgr=\nound_color\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/21771224\\/1355236797\",\"statuses_count\":7373,\"lang\":\"en\",\"utc_offs=\net\":-21600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_imag=\nes\\/1229229762\\/_MG_0687_normal.jpg\",\"profile_background_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_background_images\\/817287248\\/e9570acf4e8bf3a67539=\n9e2caed93ada.jpeg\",\"listed_count\":4970,\"geo_enabled\":true,\"profile_link_col=\nor\":\"1427FA\",\"follow_request_sent\":false,\"id_str\":\"21771224\",\"is_translator=\n\":false,\"protected\":false,\"description\":\"I am the P-Master of the Universe,=\nSpreadin' Hope like Dope!\",\"profile_use_background_image\":true,\"profile_tex=\nt_color\":\"000000\",\"created_at\":\"Tue Feb 24 17:01:19 +0000 2009\",\"verified\":=\ntrue,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1229229762=\n\\/_MG_0687_normal.jpg\",\"following\":false,\"screen_name\":\"Bootsy_Collins\",\"pr=\nofile_sidebar_border_color\":\"000000\",\"favourites_count\":301,\"contributors_e=\nnabled\":false},{\"notifications\":false,\"name\":\"WOODKID\",\"profile_background_=\ntile\":true,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"DDEE=\nF6\",\"url\":\"http:\\/\\/t.co\\/fcGog5QWD2\",\"friends_count\":341,\"id\":51707796,\"fo=\nllowers_count\":151987,\"time_zone\":\"Paris\",\"entities\":{\"url\":{\"urls\":[{\"indi=\nces\":[0,22],\"url\":\"http:\\/\\/t.co\\/fcGog5QWD2\",\"display_url\":\"woodkid.com\",\"=\nexpanded_url\":\"http:\\/\\/www.woodkid.com\\/\"}]},\"description\":{\"urls\":[{\"expa=\nnded_url\":\"http:\\/\\/smarturl.it\\/TheGoldenAge\",\"url\":\"http:\\/\\/t.co\\/umdXyw=\nVIni\",\"indices\":[30,52],\"display_url\":\"smarturl.it\\/TheGoldenAge\"},{\"expand=\ned_url\":\"http:\\/\\/woodkid.tumblr.com\",\"url\":\"http:\\/\\/t.co\\/DLxf8b7UGu\",\"in=\ndices\":[54,76],\"display_url\":\"woodkid.tumblr.com\"}]}},\"location\":\"Paris \\/ =\nNew York \",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_background_images\\/817995154\\/ce9ee8d5b62cf1c07edf87acb8f35515.jpeg\"=\n,\"default_profile\":false,\"profile_background_color\":\"C0C0C0\",\"statuses_coun=\nt\":6366,\"lang\":\"en\",\"utc_offset\":3600,\"profile_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_images\\/2976280651\\/4f12a0d760719c45469f9231add86895=\n_normal.png\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_background_images\\/817995154\\/ce9ee8d5b62cf1c07edf87acb8f35515.jpeg\",\"list=\ned_count\":1044,\"geo_enabled\":false,\"profile_link_color\":\"286EB5\",\"follow_re=\nquest_sent\":false,\"id_str\":\"51707796\",\"is_translator\":false,\"protected\":fal=\nse,\"description\":\"THE GOLDEN AGE - OUT NOW - \\r\\n http:\\/\\/t.co\\/umdXywVIni=\n\\r\\nhttp:\\/\\/t.co\\/DLxf8b7UGu\",\"profile_use_background_image\":true,\"profile=\n_text_color\":\"333333\",\"created_at\":\"Sun Jun 28 11:26:53 +0000 2009\",\"verifi=\ned\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/297628=\n0651\\/4f12a0d760719c45469f9231add86895_normal.png\",\"following\":false,\"scree=\nn_name\":\"Woodkid\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count=\n\":134,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"BT\",\"pro=\nfile_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar_=\nfill_color\":\"0A0A0B\",\"url\":\"http:\\/\\/t.co\\/yAD3fccpWK\",\"friends_count\":334,=\n\"id\":432093,\"followers_count\":640427,\"time_zone\":\"Pacific Time (US & Canada=\n)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/yAD3f=\nccpWK\",\"display_url\":\"facebook.com\\/BT\",\"expanded_url\":\"http:\\/\\/www.facebo=\nok.com\\/BT\"}]},\"description\":{\"urls\":[]}},\"location\":\"On a shining blue dot=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/378800000019749563\\/d3e0db88740c2ab3a46e0e8474ae7ba2.jpeg\"=\n,\"default_profile\":false,\"profile_background_color\":\"FFFFFF\",\"profile_banne=\nr_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/432093\\/1368661363\",\"stat=\nuses_count\":14811,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\"=\n:\"https:\\/\\/si0.twimg.com\\/profile_images\\/3736932444\\/28d3154c63a660710c7e=\n1a20c8fca60b_normal.png\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.=\ncom\\/profile_background_images\\/378800000019749563\\/d3e0db88740c2ab3a46e0e8=\n474ae7ba2.jpeg\",\"listed_count\":5113,\"geo_enabled\":false,\"profile_link_color=\n\":\"707070\",\"follow_request_sent\":false,\"id_str\":\"432093\",\"is_translator\":fa=\nlse,\"protected\":false,\"description\":\"Grammy Nominated Composer and Technolo=\ngist. I am a man that believes sound can change the world. I seek, I learn.=\n\\r\\n\\r\\nBookings: nsolgot@teninonetalent.com\",\"profile_use_background_image=\n\":true,\"profile_text_color\":\"6B6B76\",\"created_at\":\"Tue Jan 02 04:52:46 +000=\n0 2007\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/3736932444\\/28d3154c63a660710c7e1a20c8fca60b_normal.png\",\"followin=\ng\":false,\"screen_name\":\"BT\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favour=\nites_count\":6142,\"contributors_enabled\":false},{\"notifications\":false,\"name=\n\":\"Matisyahu\",\"profile_background_tile\":false,\"default_profile_image\":false=\n,\"profile_sidebar_fill_color\":\"FAD900\",\"url\":\"http:\\/\\/t.co\\/pjYKTVGz9H\",\"f=\nriends_count\":87,\"id\":18022904,\"followers_count\":1697823,\"time_zone\":\"Easte=\nrn Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"=\nhttp:\\/\\/t.co\\/pjYKTVGz9H\",\"display_url\":\"matisyahuworld.com\",\"expanded_url=\n\":\"http:\\/\\/www.matisyahuworld.com\"}]},\"description\":{\"urls\":[{\"expanded_ur=\nl\":\"http:\\/\\/www.matisyahuworld.com\\/tour\",\"url\":\"http:\\/\\/t.co\\/hw9ln9u61n=\n\",\"indices\":[21,43],\"display_url\":\"matisyahuworld.com\\/tour\"}]}},\"location\"=\n:null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profil=\ne_background_images\\/378800000004413666\\/ce965abb3e48e1dcc4c425e380e9ef7f.j=\npeg\",\"default_profile\":false,\"profile_background_color\":\"000000\",\"profile_b=\nanner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/18022904\\/1348698785\"=\n,\"statuses_count\":3860,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3686776139\\/7bbec15ffecf3c3=\n05d62bfa92381b829_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_background_images\\/378800000004413666\\/ce965abb3e48e1dcc=\n4c425e380e9ef7f.jpeg\",\"listed_count\":6270,\"geo_enabled\":true,\"profile_link_=\ncolor\":\"183977\",\"follow_request_sent\":false,\"id_str\":\"18022904\",\"is_transla=\ntor\":false,\"protected\":false,\"description\":\"On tour this summer! http:\\/\\/t=\n.co\\/hw9ln9u61n\",\"profile_use_background_image\":true,\"profile_text_color\":\"=\n000000\",\"created_at\":\"Wed Dec 10 16:29:31 +0000 2008\",\"verified\":true,\"prof=\nile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3686776139\\/7bbec15f=\nfecf3c305d62bfa92381b829_normal.jpeg\",\"following\":false,\"screen_name\":\"mati=\nsyahu\",\"profile_sidebar_border_color\":\"000000\",\"favourites_count\":76,\"contr=\nibutors_enabled\":false},{\"notifications\":false,\"name\":\"Mark Hoppus\",\"profil=\ne_background_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fil=\nl_color\":\"6FCCF6\",\"url\":\"http:\\/\\/t.co\\/XRMJfXwo\",\"friends_count\":264,\"id\":=\n21955058,\"followers_count\":2531743,\"time_zone\":\"London\",\"entities\":{\"url\":{=\n\"urls\":[{\"indices\":[0,20],\"url\":\"http:\\/\\/t.co\\/XRMJfXwo\",\"display_url\":\"hi=\nmynameismark.com\",\"expanded_url\":\"http:\\/\\/www.himynameismark.com\"}]},\"desc=\nription\":{\"urls\":[]}},\"location\":\"London\\/Los Angeles\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/92020=\n10\\/Marktopus.jpg\",\"default_profile\":false,\"profile_background_color\":\"FFFF=\nFF\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2195505=\n8\\/1352666579\",\"statuses_count\":7218,\"lang\":\"en\",\"utc_offset\":0,\"profile_im=\nage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000141674308=\n\\/e29b9272a32edbfb5e6ee0765a10db23_normal.jpeg\",\"profile_background_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/9202010\\/Marktopus.j=\npg\",\"listed_count\":14787,\"geo_enabled\":false,\"profile_link_color\":\"0084B4\",=\n\"follow_request_sent\":false,\"id_str\":\"21955058\",\"is_translator\":false,\"prot=\nected\":false,\"description\":\"i require ham.\",\"profile_use_background_image\":=\ntrue,\"profile_text_color\":\"333333\",\"created_at\":\"Thu Feb 26 01:54:14 +0000 =\n2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/378800000141674308\\/e29b9272a32edbfb5e6ee0765a10db23_normal.jpeg\",\"f=\nollowing\":false,\"screen_name\":\"markhoppus\",\"profile_sidebar_border_color\":\"=\nBDDCAD\",\"favourites_count\":3136,\"contributors_enabled\":false},{\"notificatio=\nns\":false,\"name\":\"guster\",\"profile_background_tile\":true,\"default_profile_i=\nmage\":false,\"profile_sidebar_fill_color\":\"DAECF4\",\"url\":\"http:\\/\\/t.co\\/dFu=\nhYXHXj9\",\"friends_count\":137,\"id\":17053662,\"followers_count\":474511,\"time_z=\none\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,=\n22],\"url\":\"http:\\/\\/t.co\\/dFuhYXHXj9\",\"display_url\":\"guster.com\",\"expanded_=\nurl\":\"http:\\/\\/www.guster.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"pu=\nritan city, usa.\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/9163087\\/i.jpg\",\"default_profile\":false,\"p=\nrofile_background_color\":\"C6E2EE\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg=\n.com\\/profile_banners\\/17053662\\/1359296800\",\"statuses_count\":2605,\"lang\":\"=\nen\",\"utc_offset\":-18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\=\n/profile_images\\/133395415\\/57_el_agusanado_normal.jpg\",\"profile_background=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/9163087\\/i.j=\npg\",\"listed_count\":2340,\"geo_enabled\":false,\"profile_link_color\":\"1F98C7\",\"=\nfollow_request_sent\":false,\"id_str\":\"17053662\",\"is_translator\":false,\"prote=\ncted\":false,\"description\":\"a man, a plan, a canal, panama.\",\"profile_use_ba=\nckground_image\":true,\"profile_text_color\":\"663B12\",\"created_at\":\"Wed Oct 29=\n 22:17:17 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_images\\/133395415\\/57_el_agusanado_normal.jpg\",\"following\":f=\nalse,\"screen_name\":\"guster\",\"profile_sidebar_border_color\":\"C6E2EE\",\"favour=\nites_count\":13,\"contributors_enabled\":false},{\"notifications\":false,\"name\":=\n\"benjamin folds\",\"profile_background_tile\":false,\"default_profile_image\":fa=\nlse,\"profile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/a9sNfT1Idj\"=\n,\"friends_count\":383,\"id\":42343110,\"followers_count\":757489,\"time_zone\":\"Ce=\nntral Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url=\n\":\"http:\\/\\/t.co\\/a9sNfT1Idj\",\"display_url\":\"twitter.com\\/BenjaminFolds\",\"e=\nxpanded_url\":\"http:\\/\\/twitter.com\\/BenjaminFolds\"}]},\"description\":{\"urls\"=\n:[]}},\"location\":\"nashville\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"default_profile\":true,\"pr=\nofile_background_color\":\"C0DEED\",\"statuses_count\":4742,\"lang\":\"en\",\"utc_off=\nset\":-21600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ima=\nges\\/3384613386\\/373105e10ec091b879ebdc33e772907d_normal.jpeg\",\"profile_bac=\nkground_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",=\n\"listed_count\":8791,\"geo_enabled\":true,\"profile_link_color\":\"0084B4\",\"follo=\nw_request_sent\":false,\"id_str\":\"42343110\",\"is_translator\":false,\"protected\"=\n:false,\"description\":\"i play piano\",\"profile_use_background_image\":true,\"pr=\nofile_text_color\":\"333333\",\"created_at\":\"Mon May 25 03:43:03 +0000 2009\",\"v=\nerified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3=\n384613386\\/373105e10ec091b879ebdc33e772907d_normal.jpeg\",\"following\":false,=\n\"screen_name\":\"BenFolds\",\"profile_sidebar_border_color\":\"C0DEED\",\"favourite=\ns_count\":0,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Riv=\ners Cuomo\",\"profile_background_tile\":false,\"default_profile_image\":false,\"p=\nrofile_sidebar_fill_color\":\"DDEEF6\",\"url\":\"http:\\/\\/t.co\\/BcKOAooX6X\",\"frie=\nnds_count\":21,\"id\":14327149,\"followers_count\":962092,\"time_zone\":\"Pacific T=\nime (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http=\n:\\/\\/t.co\\/BcKOAooX6X\",\"display_url\":\"facebook.com\\/riverscuomo\",\"expanded_=\nurl\":\"http:\\/\\/www.facebook.com\\/riverscuomo\"}]},\"description\":{\"urls\":[{\"e=\nxpanded_url\":\"https:\\/\\/twitter.com\\/RiversCuomoJPN\",\"url\":\"https:\\/\\/t.co\\=\n/qKXgwaic\",\"indices\":[13,34],\"display_url\":\"twitter.com\\/RiversCuomoJPN\"},{=\n\"expanded_url\":\"https:\\/\\/www.facebook.com\\/scottandrivers\",\"url\":\"https:\\/=\n\\/t.co\\/MLV6xiMY\",\"indices\":[36,57],\"display_url\":\"facebook.com\\/scottandri=\nvers\"},{\"expanded_url\":\"http:\\/\\/www.facebook.com\\/riverscuomo\",\"url\":\"http=\n:\\/\\/t.co\\/Lu7Afbdx\",\"indices\":[59,79],\"display_url\":\"facebook.com\\/riversc=\nuomo\"},{\"expanded_url\":\"http:\\/\\/www.riverscuomo.com\",\"url\":\"http:\\/\\/t.co\\=\n/lCj4D0OM\",\"indices\":[81,101],\"display_url\":\"riverscuomo.com\"},{\"expanded_u=\nrl\":\"http:\\/\\/www.youtube.com\\/user\\/RiversCuomo\",\"url\":\"http:\\/\\/t.co\\/j8W=\nBR5L6\",\"indices\":[103,123],\"display_url\":\"youtube.com\\/user\\/RiversCuo\\u202=\n6\"}]}},\"location\":\"Los Angeles, CA\",\"profile_background_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/profile_background_images\\/365791897\\/twitterbg.jpg=\n\",\"default_profile\":false,\"profile_background_color\":\"C0DEED\",\"statuses_cou=\nnt\":1739,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_images\\/1518461708\\/AX-4oIrCIAEYPRB_normal.jpg\",\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/365791897\\/twitterbg.jpg\",\"listed_count\":7819,\"geo_enabled\":false,\"pr=\nofile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"14327149\",=\n\"is_translator\":false,\"protected\":false,\"description\":\"\\u65e5\\u672c\\u8a9e\\u=\n306etwitter: https:\\/\\/t.co\\/qKXgwaic\\r\\nhttps:\\/\\/t.co\\/MLV6xiMY\\r\\nhttp:\\=\n/\\/t.co\\/Lu7Afbdx\\r\\nhttp:\\/\\/t.co\\/lCj4D0OM\\r\\nhttp:\\/\\/t.co\\/j8WBR5L6\",\"p=\nrofile_use_background_image\":true,\"profile_text_color\":\"333333\",\"created_at=\n\":\"Mon Apr 07 21:31:51 +0000 2008\",\"verified\":true,\"profile_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_images\\/1518461708\\/AX-4oIrCIAEYPRB_normal.jpg\"=\n,\"following\":false,\"screen_name\":\"RiversCuomo\",\"profile_sidebar_border_colo=\nr\":\"C0DEED\",\"favourites_count\":641,\"contributors_enabled\":false},{\"notifica=\ntions\":false,\"name\":\"Band of Skulls\",\"profile_background_tile\":false,\"defau=\nlt_profile_image\":false,\"profile_sidebar_fill_color\":\"9FA4A8\",\"url\":\"http:\\=\n/\\/t.co\\/QkFMA7FF8q\",\"friends_count\":1308,\"id\":20276532,\"followers_count\":5=\n72174,\"time_zone\":\"Hawaii\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"ur=\nl\":\"http:\\/\\/t.co\\/QkFMA7FF8q\",\"display_url\":\"bandofskulls.com\",\"expanded_u=\nrl\":\"http:\\/\\/www.bandofskulls.com\"}]},\"description\":{\"urls\":[]}},\"location=\n\":null,\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/669100782\\/c340ad20be9f879dac31059f49b2a086.jpeg\",\"de=\nfault_profile\":false,\"profile_background_color\":\"BBC3C7\",\"profile_banner_ur=\nl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/20276532\\/1353346247\",\"status=\nes_count\":1233,\"lang\":\"en\",\"utc_offset\":-36000,\"profile_image_url_https\":\"h=\nttps:\\/\\/si0.twimg.com\\/profile_images\\/1571673639\\/BandofSkulls0711_1066_n=\normal.jpg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_b=\nackground_images\\/669100782\\/c340ad20be9f879dac31059f49b2a086.jpeg\",\"listed=\n_count\":2256,\"geo_enabled\":true,\"profile_link_color\":\"95423C\",\"follow_reque=\nst_sent\":false,\"id_str\":\"20276532\",\"is_translator\":false,\"protected\":false,=\n\"description\":\"In a studio, somewhere.\",\"profile_use_background_image\":true=\n,\"profile_text_color\":\"757575\",\"created_at\":\"Fri Feb 06 22:03:11 +0000 2009=\n\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_image=\ns\\/1571673639\\/BandofSkulls0711_1066_normal.jpg\",\"following\":false,\"screen_=\nname\":\"bandofskulls\",\"profile_sidebar_border_color\":\"000000\",\"favourites_co=\nunt\":14,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"saul g=\noodman\",\"profile_background_tile\":true,\"default_profile_image\":false,\"profi=\nle_sidebar_fill_color\":\"7AC3EE\",\"url\":\"http:\\/\\/t.co\\/I8gDAYWMTM\",\"friends_=\ncount\":3705,\"id\":17174309,\"followers_count\":1025620,\"time_zone\":\"Alaska\",\"e=\nntities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/I8gDAYWMTM=\n\",\"display_url\":\"maddecent.com\",\"expanded_url\":\"http:\\/\\/www.maddecent.com\"=\n}]},\"description\":{\"urls\":[]}},\"location\":\"http:\\/\\/www.facebook.com\\/diplo=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/730204325\\/4ccfaf63d0b06cb519f5cb1b0278ff22.jpeg\",\"default=\n_profile\":false,\"profile_background_color\":\"642D8B\",\"profile_banner_url\":\"h=\nttps:\\/\\/pbs.twimg.com\\/profile_banners\\/17174309\\/1370375562\",\"statuses_co=\nunt\":47739,\"lang\":\"en\",\"utc_offset\":-32400,\"profile_image_url_https\":\"https=\n:\\/\\/si0.twimg.com\\/profile_images\\/378800000211514089\\/3da92c7de8c0a310c88=\nc6f21f895bf87_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twim=\ng.com\\/profile_background_images\\/730204325\\/4ccfaf63d0b06cb519f5cb1b0278ff=\n22.jpeg\",\"listed_count\":9168,\"geo_enabled\":true,\"profile_link_color\":\"FF000=\n0\",\"follow_request_sent\":false,\"id_str\":\"17174309\",\"is_translator\":false,\"p=\nrotected\":false,\"description\":\"random ass white dude be everywhere, founder=\n of smoothie wolf, feeding the streets since 1885\",\"profile_use_background_=\nimage\":true,\"profile_text_color\":\"3D1957\",\"created_at\":\"Wed Nov 05 00:26:03=\n +0000 2008\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pr=\nofile_images\\/378800000211514089\\/3da92c7de8c0a310c88c6f21f895bf87_normal.j=\npeg\",\"following\":false,\"screen_name\":\"diplo\",\"profile_sidebar_border_color\"=\n:\"FFFFFF\",\"favourites_count\":2166,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"Pete Yorn\",\"profile_background_tile\":false,\"default_pro=\nfile_image\":false,\"profile_sidebar_fill_color\":\"0F0F0F\",\"url\":\"http:\\/\\/t.c=\no\\/JVetx9s281\",\"friends_count\":1400,\"id\":16818600,\"followers_count\":1466986=\n,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indi=\nces\":[0,22],\"url\":\"http:\\/\\/t.co\\/JVetx9s281\",\"display_url\":\"peteyorn.com\",=\n\"expanded_url\":\"http:\\/\\/www.peteyorn.com\"}]},\"description\":{\"urls\":[{\"expa=\nnded_url\":\"http:\\/\\/Theolmsmusic.com\",\"url\":\"http:\\/\\/t.co\\/LSzzoR0vvj\",\"in=\ndices\":[0,22],\"display_url\":\"Theolmsmusic.com\"},{\"expanded_url\":\"http:\\/\\/F=\nacebook.com\\/peteyorn\",\"url\":\"http:\\/\\/t.co\\/4MVmjNsycM\",\"indices\":[23,45],=\n\"display_url\":\"Facebook.com\\/peteyorn\"}]}},\"location\":\"Montville, NJ\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/155118573\\/peteyornalbumcover.jpg\",\"default_profile\":false,\"profi=\nle_background_color\":\"1C174F\",\"statuses_count\":3424,\"lang\":\"en\",\"utc_offset=\n\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/378800000117565814\\/3f8c27c9ccd8e9a44e103a80d662e817_normal.jpeg\",\"profil=\ne_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/=\n155118573\\/peteyornalbumcover.jpg\",\"listed_count\":4015,\"geo_enabled\":false,=\n\"profile_link_color\":\"F02424\",\"follow_request_sent\":false,\"id_str\":\"1681860=\n0\",\"is_translator\":false,\"protected\":false,\"description\":\"http:\\/\\/t.co\\/LS=\nzzoR0vvj\\nhttp:\\/\\/t.co\\/4MVmjNsycM\",\"profile_use_background_image\":true,\"p=\nrofile_text_color\":\"4F68B5\",\"created_at\":\"Fri Oct 17 02:21:46 +0000 2008\",\"=\nverified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n378800000117565814\\/3f8c27c9ccd8e9a44e103a80d662e817_normal.jpeg\",\"followin=\ng\":false,\"screen_name\":\"peteyorn\",\"profile_sidebar_border_color\":\"181A1E\",\"=\nfavourites_count\":2,\"contributors_enabled\":false},{\"notifications\":false,\"n=\name\":\"\\u0166\\u04a4E G\\u0141\\u0142\\u0166\\u20a1\\u04a4 M\\u00d8B\",\"profile_back=\nground_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_colo=\nr\":\"252429\",\"url\":\"http:\\/\\/t.co\\/2UglIM6AVc\",\"friends_count\":1015,\"id\":161=\n51999,\"followers_count\":398173,\"time_zone\":\"Pacific Time (US & Canada)\",\"en=\ntities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/2UglIM6AVc\"=\n,\"display_url\":\"theglitchmob.com\",\"expanded_url\":\"http:\\/\\/theglitchmob.com=\n\"}]},\"description\":{\"urls\":[{\"expanded_url\":\"http:\\/\\/instagram.com\\/thegli=\ntchmob\",\"url\":\"http:\\/\\/t.co\\/7OVGB8QRGK\",\"indices\":[64,86],\"display_url\":\"=\ninstagram.com\\/theglitchmob\"},{\"expanded_url\":\"http:\\/\\/facebook.com\\/thegl=\nitchmobmusic\",\"url\":\"http:\\/\\/t.co\\/w6DeSNTDES\",\"indices\":[98,120],\"display=\n_url\":\"facebook.com\\/theglitchmobmu\\u2026\"},{\"expanded_url\":\"http:\\/\\/sound=\ncloud.com\\/theglitchmob\",\"url\":\"http:\\/\\/t.co\\/biYJrbdH73\",\"indices\":[134,1=\n56],\"display_url\":\"soundcloud.com\\/theglitchmob\"}]}},\"location\":\"Los Angele=\ns\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_b=\nackground_images\\/155156326\\/web_header_final_twitter2.jpg\",\"default_profil=\ne\":false,\"profile_background_color\":\"000000\",\"profile_banner_url\":\"https:\\/=\n\\/pbs.twimg.com\\/profile_banners\\/16151999\\/1359774451\",\"statuses_count\":91=\n35,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/378800000037230531\\/f532b3aa58b1f40d0ae3e05eb68=\n4c0e6_normal.jpeg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_background_images\\/155156326\\/web_header_final_twitter2.jpg\",\"listed=\n_count\":1600,\"geo_enabled\":true,\"profile_link_color\":\"2FC2EF\",\"follow_reque=\nst_sent\":false,\"id_str\":\"16151999\",\"is_translator\":false,\"protected\":false,=\n\"description\":\"ears need orgasms, too. members: @boreta @ooah @edIT instagr=\nam: http:\\/\\/t.co\\/7OVGB8QRGK\\r\\nfacebook: http:\\/\\/t.co\\/w6DeSNTDES\\r\\nsou=\nndcloud: http:\\/\\/t.co\\/biYJrbdH73\",\"profile_use_background_image\":false,\"p=\nrofile_text_color\":\"666666\",\"created_at\":\"Sat Sep 06 00:52:51 +0000 2008\",\"=\nverified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n378800000037230531\\/f532b3aa58b1f40d0ae3e05eb684c0e6_normal.jpeg\",\"followin=\ng\":false,\"screen_name\":\"theglitchmob\",\"profile_sidebar_border_color\":\"FFFFF=\nF\",\"favourites_count\":991,\"contributors_enabled\":false},{\"notifications\":fa=\nlse,\"name\":\"Pitchfork\",\"profile_background_tile\":true,\"default_profile_imag=\ne\":false,\"profile_sidebar_fill_color\":\"171717\",\"url\":\"http:\\/\\/t.co\\/qq2gaK=\nn1lk\",\"friends_count\":2488,\"id\":14089195,\"followers_count\":2325439,\"time_zo=\nne\":\"Eastern Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,2=\n2],\"url\":\"http:\\/\\/t.co\\/qq2gaKn1lk\",\"display_url\":\"pitchfork.com\",\"expande=\nd_url\":\"http:\\/\\/pitchfork.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"C=\nhicago\\/Brooklyn\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/725162517\\/a13510d22d37b64ba63513ebb5ac780=\na.jpeg\",\"default_profile\":false,\"profile_background_color\":\"1F1F1F\",\"profil=\ne_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/14089195\\/13542247=\n96\",\"statuses_count\":25956,\"lang\":\"en\",\"utc_offset\":-18000,\"profile_image_u=\nrl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3447350752\\/51ae00039ec=\n9d88b79319a9cf1434893_normal.png\",\"profile_background_image_url\":\"http:\\/\\/=\na0.twimg.com\\/profile_background_images\\/725162517\\/a13510d22d37b64ba63513e=\nbb5ac780a.jpeg\",\"listed_count\":28599,\"geo_enabled\":true,\"profile_link_color=\n\":\"EF4035\",\"follow_request_sent\":false,\"id_str\":\"14089195\",\"is_translator\":=\nfalse,\"protected\":false,\"description\":\"The essential guide to independent m=\nusic and beyond.\",\"profile_use_background_image\":true,\"profile_text_color\":=\n\"456E87\",\"created_at\":\"Thu Mar 06 15:34:41 +0000 2008\",\"verified\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3447350752\\/51ae000=\n39ec9d88b79319a9cf1434893_normal.png\",\"following\":false,\"screen_name\":\"pitc=\nhforkmedia\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":25,\"=\ncontributors_enabled\":false},{\"notifications\":false,\"name\":\"colin meloy\",\"p=\nrofile_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar=\n_fill_color\":\"252429\",\"url\":\"http:\\/\\/t.co\\/lL8w2AYlzQ\",\"friends_count\":277=\n,\"id\":18907022,\"followers_count\":1474803,\"time_zone\":\"Pacific Time (US & Ca=\nnada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/l=\nL8w2AYlzQ\",\"display_url\":\"wildwoodchronicles.com\",\"expanded_url\":\"http:\\/\\/=\nwww.wildwoodchronicles.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"Portl=\nand, OR\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_background_images\\/151892605\\/0041.jpg\",\"default_profile\":false,\"profi=\nle_background_color\":\"000000\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com=\n\\/profile_banners\\/18907022\\/1353544620\",\"statuses_count\":3300,\"lang\":\"en\",=\n\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pro=\nfile_images\\/378800000172280450\\/2a324dcd51c8051aaeb9319495cb9f4e_normal.jp=\neg\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgrou=\nnd_images\\/151892605\\/0041.jpg\",\"listed_count\":4836,\"geo_enabled\":false,\"pr=\nofile_link_color\":\"2FC2EF\",\"follow_request_sent\":false,\"id_str\":\"18907022\",=\n\"is_translator\":false,\"protected\":false,\"description\":\"And no reason \\/ To =\ntalk about the books I read \\/ But still I do.\",\"profile_use_background_ima=\nge\":true,\"profile_text_color\":\"666666\",\"created_at\":\"Mon Jan 12 17:12:49 +0=\n000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_images\\/378800000172280450\\/2a324dcd51c8051aaeb9319495cb9f4e_normal.jpeg=\n\",\"following\":false,\"screen_name\":\"colinmeloy\",\"profile_sidebar_border_colo=\nr\":\"181A1E\",\"favourites_count\":96,\"contributors_enabled\":false},{\"notificat=\nions\":false,\"name\":\"Garrett Nickelsen\",\"profile_background_tile\":false,\"def=\nault_profile_image\":false,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http=\n:\\/\\/t.co\\/4z8W6ODpuN\",\"friends_count\":205,\"id\":15140319,\"followers_count\":=\n396925,\"time_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[=\n{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/4z8W6ODpuN\",\"display_url\":\"mrtoday.=\ntumblr.com\",\"expanded_url\":\"http:\\/\\/mrtoday.tumblr.com\\/\"}]},\"description\"=\n:{\"urls\":[]}},\"location\":\"Gilbert,AZ, USA\",\"profile_background_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/77900377\\/mainetw=\nitterblackout.jpg\",\"default_profile\":false,\"profile_background_color\":\"8888=\n89\",\"statuses_count\":5717,\"lang\":\"en\",\"utc_offset\":-28800,\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/344513261565363909\\/a50f=\nc66667c04d40aa6de4c0a21206ba_normal.jpeg\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/77900377\\/mainetwitterblac=\nkout.jpg\",\"listed_count\":1691,\"geo_enabled\":true,\"profile_link_color\":\"0084=\nB4\",\"follow_request_sent\":false,\"id_str\":\"15140319\",\"is_translator\":false,\"=\nprotected\":false,\"description\":\"just a boy who knows nothing at all...\",\"pr=\nofile_use_background_image\":true,\"profile_text_color\":\"333333\",\"created_at\"=\n:\"Tue Jun 17 00:17:58 +0000 2008\",\"verified\":true,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/344513261565363909\\/a50fc66667c04d40aa6d=\ne4c0a21206ba_normal.jpeg\",\"following\":false,\"screen_name\":\"garrettmaine\",\"p=\nrofile_sidebar_border_color\":\"BDDCAD\",\"favourites_count\":218,\"contributors_=\nenabled\":false},{\"notifications\":false,\"name\":\"Eclectic Method\",\"profile_ba=\nckground_tile\":false,\"default_profile_image\":false,\"profile_sidebar_fill_co=\nlor\":\"00EAFF\",\"url\":\"http:\\/\\/t.co\\/eBPxYPfk\",\"friends_count\":1329,\"id\":208=\n82981,\"followers_count\":470893,\"time_zone\":\"Eastern Time (US & Canada)\",\"en=\ntities\":{\"url\":{\"urls\":[{\"indices\":[0,20],\"url\":\"http:\\/\\/t.co\\/eBPxYPfk\",\"=\ndisplay_url\":\"eclecticmethod.net\",\"expanded_url\":\"http:\\/\\/www.eclecticmeth=\nod.net\"}]},\"description\":{\"urls\":[]}},\"location\":\"New Orleans, LA\",\"profile=\n_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_i=\nmages\\/372203430\\/EM_Twitter_6.jpg\",\"default_profile\":false,\"profile_backgr=\nound_color\":\"9AE4E8\",\"statuses_count\":4208,\"lang\":\"en\",\"utc_offset\":-18000,=\n\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1609390=\n827\\/EM_Logo_Black_NoType_v1_normal.png\",\"profile_background_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_background_images\\/372203430\\/EM_Twitter_6.jpg=\n\",\"listed_count\":1341,\"geo_enabled\":true,\"profile_link_color\":\"0084B4\",\"fol=\nlow_request_sent\":false,\"id_str\":\"20882981\",\"is_translator\":false,\"protecte=\nd\":false,\"description\":\"VIDEO REMIX DJ PRODUCER\",\"profile_use_background_im=\nage\":true,\"profile_text_color\":\"575757\",\"created_at\":\"Sun Feb 15 00:35:48 +=\n0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_images\\/1609390827\\/EM_Logo_Black_NoType_v1_normal.png\",\"following\":fal=\nse,\"screen_name\":\"EclecticMethod\",\"profile_sidebar_border_color\":\"000000\",\"=\nfavourites_count\":49,\"contributors_enabled\":false},{\"notifications\":false,\"=\nname\":\"John O'Callaghan\",\"profile_background_tile\":true,\"default_profile_im=\nage\":false,\"profile_sidebar_fill_color\":\"DDFFCC\",\"url\":\"http:\\/\\/t.co\\/bNxR=\nhDu9Xk\",\"friends_count\":0,\"id\":15140173,\"followers_count\":479183,\"time_zone=\n\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22]=\n,\"url\":\"http:\\/\\/t.co\\/bNxRhDu9Xk\",\"display_url\":\"wearethemaine.net\",\"expan=\nded_url\":\"http:\\/\\/wearethemaine.net\"}]},\"description\":{\"urls\":[]}},\"locati=\non\":\"Tempe, AZ\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_background_images\\/107669973\\/v0_master.jpg\",\"default_profile\":=\nfalse,\"profile_background_color\":\"FFFFFF\",\"statuses_count\":2156,\"lang\":\"en\"=\n,\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/pr=\nofile_images\\/3394045150\\/d962eb22d3fe7642c608ac29890d3d8d_normal.jpeg\",\"pr=\nofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_imag=\nes\\/107669973\\/v0_master.jpg\",\"listed_count\":2865,\"geo_enabled\":false,\"prof=\nile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"id_str\":\"15140173\",\"i=\ns_translator\":false,\"protected\":false,\"description\":\"An individual with the=\n occasional unrealistic idea.\",\"profile_use_background_image\":true,\"profile=\n_text_color\":\"333333\",\"created_at\":\"Mon Jun 16 23:55:58 +0000 2008\",\"verifi=\ned\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/339404=\n5150\\/d962eb22d3fe7642c608ac29890d3d8d_normal.jpeg\",\"following\":false,\"scre=\nen_name\":\"johnmaine\",\"profile_sidebar_border_color\":\"BDDCAD\",\"favourites_co=\nunt\":0,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"butchwa=\nlker\",\"profile_background_tile\":false,\"default_profile_image\":false,\"profil=\ne_sidebar_fill_color\":\"252429\",\"url\":\"http:\\/\\/t.co\\/IEaBMqPzMs\",\"friends_c=\nount\":212,\"id\":16186949,\"followers_count\":590353,\"time_zone\":\"Pacific Time =\n(US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\=\n/t.co\\/IEaBMqPzMs\",\"display_url\":\"butchwalker.com\",\"expanded_url\":\"http:\\/\\=\n/www.butchwalker.com\"}]},\"description\":{\"urls\":[]}},\"location\":\"ATLA\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/631277780\\/p8i7fy58rp1rp13n1h5x.jpeg\",\"default_profile\":false,\"pr=\nofile_background_color\":\"1A1B1F\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.=\ncom\\/profile_banners\\/16186949\\/1352089216\",\"statuses_count\":8316,\"lang\":\"e=\nn\",\"utc_offset\":-28800,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/=\nprofile_images\\/3427150589\\/de5ee3817804a20b25fefc871e0ae718_normal.jpeg\",\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/631277780\\/p8i7fy58rp1rp13n1h5x.jpeg\",\"listed_count\":2795,\"geo_enable=\nd\":false,\"profile_link_color\":\"2FC2EF\",\"follow_request_sent\":false,\"id_str\"=\n:\"16186949\",\"is_translator\":false,\"protected\":false,\"description\":\"i think =\ni was born to boogie..\",\"profile_use_background_image\":true,\"profile_text_c=\nolor\":\"666666\",\"created_at\":\"Mon Sep 08 16:39:52 +0000 2008\",\"verified\":tru=\ne,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3427150589\\/d=\ne5ee3817804a20b25fefc871e0ae718_normal.jpeg\",\"following\":false,\"screen_name=\n\":\"butchwalker\",\"profile_sidebar_border_color\":\"181A1E\",\"favourites_count\":=\n7,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"D.A. Wallach=\n\",\"profile_background_tile\":true,\"default_profile_image\":false,\"profile_sid=\nebar_fill_color\":\"7AC3EE\",\"url\":\"http:\\/\\/t.co\\/sAO8N42kXl\",\"friends_count\"=\n:59650,\"id\":5405152,\"followers_count\":1246309,\"time_zone\":\"Central Time (US=\n & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.=\nco\\/sAO8N42kXl\",\"display_url\":\"dawallach.com\",\"expanded_url\":\"http:\\/\\/dawa=\nllach.com\\/\"}]},\"description\":{\"urls\":[]}},\"location\":\"Los Angeles, CA\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/575877946\\/pzsmtylibnxyp1uqlrou.jpeg\",\"default_profile\":false,\"=\nprofile_background_color\":\"FFFFFF\",\"profile_banner_url\":\"https:\\/\\/pbs.twim=\ng.com\\/profile_banners\\/5405152\\/1372027946\",\"statuses_count\":13447,\"lang\":=\n\"en\",\"utc_offset\":-21600,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_images\\/3480854689\\/378ae8596c53888786efa4a3d4b511b4_normal.jpeg\"=\n,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_=\nimages\\/575877946\\/pzsmtylibnxyp1uqlrou.jpeg\",\"listed_count\":3435,\"geo_enab=\nled\":false,\"profile_link_color\":\"FF0000\",\"follow_request_sent\":false,\"id_st=\nr\":\"5405152\",\"is_translator\":false,\"protected\":false,\"description\":\"1\\/2 Ch=\nester French. 1\\/2 D.A. & The Supa Dups, Artist in Residence @ Spotify. da@=\ndawallach.com.\",\"profile_use_background_image\":true,\"profile_text_color\":\"3=\nD1957\",\"created_at\":\"Sun Apr 22 16:12:42 +0000 2007\",\"verified\":true,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3480854689\\/378ae8596=\nc53888786efa4a3d4b511b4_normal.jpeg\",\"following\":false,\"screen_name\":\"DAChe=\nsterFrench\",\"profile_sidebar_border_color\":\"65B0DA\",\"favourites_count\":4,\"c=\nontributors_enabled\":false},{\"notifications\":false,\"name\":\"cut copy\",\"profi=\nle_background_tile\":true,\"default_profile_image\":false,\"profile_sidebar_fil=\nl_color\":\"1E5763\",\"url\":\"http:\\/\\/t.co\\/Qms5JIJeCl\",\"friends_count\":72,\"id\"=\n:52810109,\"followers_count\":413362,\"time_zone\":\"Quito\",\"entities\":{\"url\":{\"=\nurls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Qms5JIJeCl\",\"display_url\":\"c=\nutcopy.net\",\"expanded_url\":\"http:\\/\\/www.cutcopy.net\"}]},\"description\":{\"ur=\nls\":[]}},\"location\":\"AUSTRALIA\",\"profile_background_image_url_https\":\"https=\n:\\/\\/si0.twimg.com\\/profile_background_images\\/378800000025782148\\/7e636b2a=\n1d78004f3fc2b998947d4ac9.jpeg\",\"default_profile\":false,\"profile_background_=\ncolor\":\"1E5763\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_bann=\ners\\/52810109\\/1374044677\",\"statuses_count\":1098,\"lang\":\"en\",\"utc_offset\":-=\n18000,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/3=\n78800000145851931\\/c03379cfc45779330be3bcac5223b397_normal.jpeg\",\"profile_b=\nackground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378=\n800000025782148\\/7e636b2a1d78004f3fc2b998947d4ac9.jpeg\",\"listed_count\":2333=\n,\"geo_enabled\":false,\"profile_link_color\":\"919191\",\"follow_request_sent\":fa=\nlse,\"id_str\":\"52810109\",\"is_translator\":false,\"protected\":false,\"descriptio=\nn\":\"FREE YOUR MIND\",\"profile_use_background_image\":true,\"profile_text_color=\n\":\"000000\",\"created_at\":\"Wed Jul 01 18:40:12 +0000 2009\",\"verified\":true,\"p=\nrofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37880000014585193=\n1\\/c03379cfc45779330be3bcac5223b397_normal.jpeg\",\"following\":false,\"screen_=\nname\":\"cutcopy\",\"profile_sidebar_border_color\":\"FFFFFF\",\"favourites_count\":=\n44,\"contributors_enabled\":false},{\"notifications\":false,\"name\":\"Richie Hawt=\nin\",\"profile_background_tile\":true,\"default_profile_image\":false,\"profile_s=\nidebar_fill_color\":\"050505\",\"url\":\"http:\\/\\/t.co\\/8J01zrZY5P\",\"friends_coun=\nt\":134,\"id\":20756169,\"followers_count\":502979,\"time_zone\":\"Berlin\",\"entitie=\ns\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/8J01zrZY5P\",\"dis=\nplay_url\":\"m-nus.com\",\"expanded_url\":\"http:\\/\\/www.m-nus.com\"}]},\"descripti=\non\":{\"urls\":[]}},\"location\":\"47.452747,8.555665\",\"profile_background_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/61489647\\/1=\n0_hall-center.jpg\",\"default_profile\":false,\"profile_background_color\":\"1A1B=\n1F\",\"statuses_count\":6679,\"lang\":\"en\",\"utc_offset\":3600,\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/378800000010299776\\/1ea794=\n82b914800569b5ca6c44720e66_normal.jpeg\",\"profile_background_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_background_images\\/61489647\\/10_hall-center.jpg=\n\",\"listed_count\":3522,\"geo_enabled\":true,\"profile_link_color\":\"4242E3\",\"fol=\nlow_request_sent\":false,\"id_str\":\"20756169\",\"is_translator\":false,\"protecte=\nd\":false,\"description\":\"aka Plastikman is a pioneering Berlin-based electro=\nnic artist and technology adventurer. Follow the tracklistings of his DJ se=\nts in real-time via @rhawtin_live\",\"profile_use_background_image\":true,\"pro=\nfile_text_color\":\"7D7D7D\",\"created_at\":\"Fri Feb 13 08:15:14 +0000 2009\",\"ve=\nrified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37=\n8800000010299776\\/1ea79482b914800569b5ca6c44720e66_normal.jpeg\",\"following\"=\n:false,\"screen_name\":\"richiehawtin\",\"profile_sidebar_border_color\":\"181A1E\"=\n,\"favourites_count\":9,\"contributors_enabled\":false}],\"name\":\"Music\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "171739", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:23 GMT", "etag": "\"6462a8b8e440b83a13aba306acce72ff\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:23 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:23 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCA5QhJ9AAToHaWQiJWM0YjVmMjA3M2MwZjY1%250AMWZjOGVhMDg5MWM2NDQxMjVk--4a3d8202a60b9d48fbc00082f90b01ed894df8f2; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578329276121; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:23 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "d55434f77224420b356d264f811b10683a194936", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066683", "x-runtime": "0.02823", "x-transaction": "6285ba2b1f7d611e", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/users/suggestions/music/members.json" }, "response": { "body_quoted_printable": "[{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Rihanna\",\"pro=\nfile_background_tile\":false,\"profile_sidebar_fill_color\":\"EFEFEF\",\"friends_=\ncount\":969,\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"id\":79293791,\"followers_count=\n\":31180109,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_background_ima=\nge_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/=\n869915227\\/c41bee10b01787134a97dcb7438a0b0d.jpeg\",\"entities\":{\"url\":{\"urls\"=\n:[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/v6qLcjAydl\",\"display_url\":\"rihann=\nanow.com\",\"expanded_url\":\"http:\\/\\/www.rihannanow.com\"}]},\"description\":{\"u=\nrls\":[{\"indices\":[42,64],\"display_url\":\"smarturl.it\\/UnapologeticDlx\",\"expa=\nnded_url\":\"http:\\/\\/smarturl.it\\/UnapologeticDlx\",\"url\":\"http:\\/\\/t.co\\/t8F=\nc0HpXae\"},{\"indices\":[86,108],\"display_url\":\"smarturl.it\\/RihannaStay\",\"exp=\nanded_url\":\"http:\\/\\/smarturl.it\\/RihannaStay\",\"url\":\"http:\\/\\/t.co\\/WCyNUJ=\nNH29\"},{\"indices\":[138,160],\"display_url\":\"amzn.to\\/13rkPEU\",\"expanded_url\"=\n:\"http:\\/\\/amzn.to\\/13rkPEU\",\"url\":\"http:\\/\\/t.co\\/tfjLQW1StI\"}]}},\"status\"=\n:{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"369027952408=\n678401\",\"possibly_sensitive\":true,\"in_reply_to_status_id\":null,\"in_reply_to=\n_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/instagram.com\\\" rel=\n=3D\\\"nofollow\\\"\\u003EInstagram\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false=\n,\"id\":369027952408678401,\"created_at\":\"Sun Aug 18 09:28:14 +0000 2013\",\"tru=\nncated\":false,\"possibly_sensitive_editable\":true,\"in_reply_to_status_id_str=\n\":null,\"in_reply_to_user_id\":null,\"text\":\"City nights in #RIHverIsland #NYC=\n http:\\/\\/t.co\\/dG2LRULXZ6\",\"coordinates\":null,\"retweet_count\":1532,\"in_rep=\nly_to_user_id_str\":null,\"entities\":{\"hashtags\":[{\"indices\":[15,28],\"text\":\"=\nRIHverIsland\"},{\"indices\":[29,33],\"text\":\"NYC\"}],\"user_mentions\":[],\"urls\":=\n[{\"url\":\"http:\\/\\/t.co\\/dG2LRULXZ6\",\"indices\":[34,56],\"display_url\":\"instag=\nram.com\\/p\\/dJkKm5BMxH\\/\",\"expanded_url\":\"http:\\/\\/instagram.com\\/p\\/dJkKm5=\nBMxH\\/\"}]}},\"default_profile\":false,\"location\":\"LA BABY!\",\"profile_banner_u=\nrl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/79293791\\/1350068237\",\"profi=\nle_background_color\":\"131516\",\"statuses_count\":8243,\"lang\":\"en\",\"listed_cou=\nnt\":90544,\"utc_offset\":-28800,\"profile_background_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_background_images\\/869915227\\/c41bee10b01787134a97dcb7438=\na0b0d.jpeg\",\"geo_enabled\":false,\"profile_link_color\":\"009999\",\"follow_reque=\nst_sent\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/=\nprofile_images\\/3096110144\\/d097a719dba080cc99ca9dbfba85dfa4_normal.jpeg\",\"=\nid_str\":\"79293791\",\"protected\":false,\"description\":\"Unapologetic, new album=\n out now worldwide http:\\/\\/t.co\\/t8Fc0HpXae \\r\\n\\r\\nDownload 'Stay' http:=\n\\/\\/t.co\\/WCyNUJNH29\\r\\n777 Tour DVD Available NOW http:\\/\\/t.co\\/tfjLQW1S=\ntI\",\"profile_use_background_image\":true,\"is_translator\":false,\"profile_text=\n_color\":\"333333\",\"created_at\":\"Fri Oct 02 21:37:33 +0000 2009\",\"verified\":t=\nrue,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3096110144\\=\n/d097a719dba080cc99ca9dbfba85dfa4_normal.jpeg\",\"following\":false,\"screen_na=\nme\":\"rihanna\",\"favourites_count\":319,\"profile_sidebar_border_color\":\"FFFFFF=\n\",\"contributors_enabled\":false},{\"notifications\":false,\"default_profile_ima=\nge\":false,\"name\":\"Shakira\",\"profile_background_tile\":false,\"profile_sidebar=\n_fill_color\":\"C3E2FA\",\"friends_count\":88,\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",=\n\"id\":44409004,\"followers_count\":21788642,\"time_zone\":\"Eastern Time (US & Ca=\nnada)\",\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.ne=\nt\\/profile_background_images\\/585574393\\/w2qknrpubwprq07kvvz7.jpeg\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/Hj5KfwjYJO\",\"di=\nsplay_url\":\"shakira.com\",\"expanded_url\":\"http:\\/\\/www.shakira.com\"}]},\"desc=\nription\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"retweeted=\n\":false,\"id_str\":\"369817374393786368\",\"possibly_sensitive\":true,\"in_reply_t=\no_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"web\",\"geo\":null,=\n\"favorited\":false,\"id\":369817374393786368,\"created_at\":\"Tue Aug 20 13:45:07=\n +0000 2013\",\"truncated\":false,\"possibly_sensitive_editable\":true,\"in_reply=\n_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"Shak's cover iss=\nue of @SELFmagazine hits news stands in the US today! @Selfmagazine ya est\\=\nu00e1 disponible hoy! ShakiraHQ http:\\/\\/t.co\\/73ZdszWBJJ\",\"coordinates\":nu=\nll,\"retweet_count\":402,\"in_reply_to_user_id_str\":null,\"entities\":{\"hashtags=\n\":[],\"user_mentions\":[{\"id_str\":\"23798922\",\"screen_name\":\"SELFmagazine\",\"id=\n\":23798922,\"indices\":[22,35],\"name\":\"SELF Magazine\"},{\"id_str\":\"23798922\",\"=\nscreen_name\":\"SELFmagazine\",\"id\":23798922,\"indices\":[70,83],\"name\":\"SELF Ma=\ngazine\"}],\"urls\":[],\"media\":[{\"id_str\":\"369817374402174976\",\"id\":3698173744=\n02174976,\"url\":\"http:\\/\\/t.co\\/73ZdszWBJJ\",\"media_url\":\"http:\\/\\/pbs.twimg.=\ncom\\/media\\/BSHa8VECYAAhamf.jpg\",\"indices\":[118,140],\"source_status_id\":nul=\nl,\"sizes\":{\"small\":{\"h\":340,\"w\":340,\"resize\":\"fit\"},\"large\":{\"h\":480,\"w\":48=\n0,\"resize\":\"fit\"},\"medium\":{\"h\":480,\"w\":480,\"resize\":\"fit\"},\"thumb\":{\"h\":15=\n0,\"w\":150,\"resize\":\"crop\"}},\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/med=\nia\\/BSHa8VECYAAhamf.jpg\",\"type\":\"photo\",\"display_url\":\"pic.twitter.com\\/73Z=\ndszWBJJ\",\"expanded_url\":\"http:\\/\\/twitter.com\\/shakira\\/status\\/36981737439=\n3786368\\/photo\\/1\"}]}},\"default_profile\":false,\"location\":\"Barranquilla\",\"p=\nrofile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/44409004\\/137=\n4010844\",\"profile_background_color\":\"FFFFFF\",\"statuses_count\":2033,\"lang\":\"=\nen\",\"listed_count\":98585,\"utc_offset\":-18000,\"profile_background_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/585574393\\/w2qknrpubwpr=\nq07kvvz7.jpeg\",\"geo_enabled\":false,\"profile_link_color\":\"EDAB13\",\"follow_re=\nquest_sent\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.ne=\nt\\/profile_images\\/378800000039826497\\/5df112163499cde887b50b16711666c7_nor=\nmal.jpeg\",\"id_str\":\"44409004\",\"protected\":false,\"description\":\"Welcome to S=\nhakira's Official Twitter Profile \\/ Bienvenidos al Perfil Oficial de Shaki=\nra en Twitter\",\"profile_use_background_image\":true,\"is_translator\":false,\"p=\nrofile_text_color\":\"080808\",\"created_at\":\"Wed Jun 03 17:38:07 +0000 2009\",\"=\nverified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/=\n378800000039826497\\/5df112163499cde887b50b16711666c7_normal.jpeg\",\"followin=\ng\":false,\"screen_name\":\"shakira\",\"favourites_count\":2,\"profile_sidebar_bord=\ner_color\":\"FFFFFF\",\"contributors_enabled\":false},{\"notifications\":false,\"de=\nfault_profile_image\":false,\"name\":\"Katy Perry\",\"profile_background_tile\":fa=\nlse,\"profile_sidebar_fill_color\":\"78C0A8\",\"friends_count\":123,\"url\":\"http:\\=\n/\\/t.co\\/Y9MwzDOpMV\",\"id\":21447363,\"followers_count\":41180573,\"time_zone\":\"=\nAlaska\",\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.n=\net\\/profile_background_images\\/378800000050152995\\/e75100d9264b22a66585a9de=\n9cfca669.jpeg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\=\n/t.co\\/Y9MwzDOpMV\",\"display_url\":\"katyperry.com\",\"expanded_url\":\"http:\\/\\/w=\nww.katyperry.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":nu=\nll,\"place\":null,\"retweeted\":false,\"id_str\":\"369946007271792641\",\"possibly_s=\nensitive\":false,\"in_reply_to_status_id\":null,\"in_reply_to_screen_name\":null=\n,\"source\":\"web\",\"geo\":null,\"favorited\":false,\"id\":369946007271792641,\"creat=\ned_at\":\"Tue Aug 20 22:16:16 +0000 2013\",\"truncated\":false,\"possibly_sensiti=\nve_editable\":true,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nu=\nll,\"text\":\"...to see how YOU can be a part of & watch the show for FREE=\n! http:\\/\\/t.co\\/97ae3wFtjo\",\"coordinates\":null,\"retweet_count\":1814,\"in_re=\nply_to_user_id_str\":null,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls=\n\":[{\"url\":\"http:\\/\\/t.co\\/97ae3wFtjo\",\"indices\":[66,88],\"display_url\":\"iTun=\nes.com\\/festival\",\"expanded_url\":\"http:\\/\\/www.iTunes.com\\/festival\"}]}},\"d=\nefault_profile\":false,\"location\":\"REALITY\",\"profile_banner_url\":\"https:\\/\\/=\npbs.twimg.com\\/profile_banners\\/21447363\\/1376330374\",\"profile_background_c=\nolor\":\"210538\",\"statuses_count\":4868,\"lang\":\"en\",\"listed_count\":134321,\"utc=\n_offset\":-32400,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_background_images\\/378800000050152995\\/e75100d9264b22a66585a9de9cfca669=\n.jpeg\",\"geo_enabled\":false,\"profile_link_color\":\"803D72\",\"follow_request_se=\nnt\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profi=\nle_images\\/378800000230869090\\/e3b3fb06545c77d4c70519d3674e50b7_normal.jpeg=\n\",\"id_str\":\"21447363\",\"protected\":false,\"description\":\"Tweaking the (t)werk=\n into a prism burst...\",\"profile_use_background_image\":true,\"is_translator\"=\n:false,\"profile_text_color\":\"5E412F\",\"created_at\":\"Fri Feb 20 23:45:56 +000=\n0 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/378800000230869090\\/e3b3fb06545c77d4c70519d3674e50b7_normal.jpeg\",=\n\"following\":false,\"screen_name\":\"katyperry\",\"favourites_count\":2,\"profile_s=\nidebar_border_color\":\"FFFFFF\",\"contributors_enabled\":false},{\"notifications=\n\":false,\"default_profile_image\":false,\"name\":\"Taylor Swift\",\"profile_backgr=\nound_tile\":false,\"profile_sidebar_fill_color\":\"DDEEF6\",\"friends_count\":108,=\n\"url\":\"http:\\/\\/t.co\\/hZtHeBu93U\",\"id\":17919972,\"followers_count\":32698450,=\n\"time_zone\":null,\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.a=\nkamaihd.net\\/profile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9=\neada9945.jpeg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\=\n/t.co\\/hZtHeBu93U\",\"display_url\":\"twitter.com\\/taylorswift13\",\"expanded_url=\n\":\"http:\\/\\/twitter.com\\/taylorswift13\"}]},\"description\":{\"urls\":[]}},\"stat=\nus\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"369994002=\n931535873\",\"possibly_sensitive\":false,\"in_reply_to_status_id\":null,\"in_repl=\ny_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/twitter.com\\/dow=\nnload\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",=\n\"geo\":null,\"favorited\":false,\"id\":369994002931535873,\"created_at\":\"Wed Aug =\n21 01:26:59 +0000 2013\",\"truncated\":false,\"possibly_sensitive_editable\":tru=\ne,\"retweeted_status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"i=\nd_str\":\"369991546256388096\",\"possibly_sensitive\":false,\"in_reply_to_status_=\nid\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\=\n/adobe.com\\\" rel=3D\\\"nofollow\\\"\\u003EAdobe\\u00ae Social\\u003C\\/a\\u003E\",\"ge=\no\":null,\"favorited\":false,\"id\":369991546256388096,\"created_at\":\"Wed Aug 21 =\n01:17:13 +0000 2013\",\"truncated\":false,\"possibly_sensitive_editable\":true,\"=\nin_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\".@Taylor=\nSwift13 and I have shared some good times. We've also scared some good time=\ns. http:\\/\\/t.co\\/hBRrdZrz2W\",\"coordinates\":null,\"retweet_count\":3141,\"in_r=\neply_to_user_id_str\":null,\"entities\":{\"hashtags\":[],\"user_mentions\":[{\"id_s=\ntr\":\"17919972\",\"screen_name\":\"taylorswift13\",\"id\":17919972,\"indices\":[1,15]=\n,\"name\":\"Taylor Swift\"}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hBRrdZrz2W\",\"indice=\ns\":[86,108],\"display_url\":\"ellen.tv\\/18IL7Fg\",\"expanded_url\":\"http:\\/\\/elle=\nn.tv\\/18IL7Fg\"}]}},\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":n=\null,\"text\":\"RT @TheEllenShow: .@TaylorSwift13 and I have shared some good t=\nimes. We've also scared some good times. http:\\/\\/t.co\\/hBRrdZrz2W\",\"coordi=\nnates\":null,\"retweet_count\":3141,\"in_reply_to_user_id_str\":null,\"entities\":=\n{\"hashtags\":[],\"user_mentions\":[{\"id_str\":\"15846407\",\"screen_name\":\"TheElle=\nnShow\",\"id\":15846407,\"indices\":[3,16],\"name\":\"Ellen DeGeneres\"},{\"id_str\":\"=\n17919972\",\"screen_name\":\"taylorswift13\",\"id\":17919972,\"indices\":[19,33],\"na=\nme\":\"Taylor Swift\"}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/hBRrdZrz2W\",\"indices\":[=\n104,126],\"display_url\":\"ellen.tv\\/18IL7Fg\",\"expanded_url\":\"http:\\/\\/ellen.t=\nv\\/18IL7Fg\"}]}},\"default_profile\":false,\"location\":null,\"profile_background=\n_color\":\"C0DEED\",\"statuses_count\":1896,\"lang\":\"en\",\"listed_count\":112313,\"u=\ntc_offset\":null,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_background_images\\/687293757\\/6d2ec27f32fa8cc2fcb7e6a9eada9945.jpeg\",\"g=\neo_enabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false=\n,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images=\n\\/1825696714\\/image_normal.jpg\",\"id_str\":\"17919972\",\"protected\":false,\"desc=\nription\":\"Happy. Free. Confused. Lonely. \\nAt the same time.\",\"profile_use_=\nbackground_image\":false,\"is_translator\":false,\"profile_text_color\":\"333333\"=\n,\"created_at\":\"Sat Dec 06 10:10:54 +0000 2008\",\"verified\":true,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1825696714\\/image_normal.jp=\ng\",\"following\":false,\"screen_name\":\"taylorswift13\",\"favourites_count\":0,\"pr=\nofile_sidebar_border_color\":\"FFFFFF\",\"contributors_enabled\":false},{\"notifi=\ncations\":false,\"default_profile_image\":false,\"name\":\"Justin Bieber\",\"profil=\ne_background_tile\":true,\"profile_sidebar_fill_color\":\"DDEEF6\",\"friends_coun=\nt\":121818,\"url\":\"http:\\/\\/t.co\\/2oSNE36kNM\",\"id\":27260086,\"followers_count\"=\n:43386486,\"time_zone\":\"Eastern Time (US & Canada)\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/8=\n85769807\\/043faf7949366ef2486c28a74311aa5d.jpeg\",\"entities\":{\"url\":{\"urls\":=\n[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/2oSNE36kNM\",\"display_url\":\"youtube=\n.com\\/justinbieber\",\"expanded_url\":\"http:\\/\\/www.youtube.com\\/justinbieber\"=\n}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"=\nretweeted\":false,\"id_str\":\"369877517538062336\",\"in_reply_to_status_id\":null=\n,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/twitter=\n.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for iPhone\\u003C\\/=\na\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369877517538062336,\"created_at\":=\n\"Tue Aug 20 17:44:06 +0000 2013\",\"truncated\":false,\"in_reply_to_status_id_s=\ntr\":null,\"in_reply_to_user_id\":null,\"text\":\"Never taking a day for granted\"=\n,\"coordinates\":null,\"retweet_count\":74584,\"in_reply_to_user_id_str\":null,\"e=\nntities\":{\"user_mentions\":[],\"hashtags\":[],\"urls\":[]}},\"default_profile\":fa=\nlse,\"location\":\"All Around The World\",\"profile_banner_url\":\"https:\\/\\/pbs.t=\nwimg.com\\/profile_banners\\/27260086\\/1355357428\",\"profile_background_color\"=\n:\"C0DEED\",\"statuses_count\":23184,\"lang\":\"en\",\"listed_count\":553223,\"utc_off=\nset\":-18000,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nbackground_images\\/885769807\\/043faf7949366ef2486c28a74311aa5d.jpeg\",\"geo_e=\nnabled\":false,\"profile_link_color\":\"0084B4\",\"follow_request_sent\":false,\"pr=\nofile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/34=\n67035972\\/4c978ba8510da3fb77d2d5e9ae7c93f0_normal.jpeg\",\"id_str\":\"27260086\"=\n,\"protected\":false,\"description\":\"#BELIEVE is on ITUNES and in STORES WORLD=\nWIDE! - SO MUCH LOVE FOR THE FANS...you are always there for me and I will =\nalways be there for you. MUCH LOVE. thanks\",\"profile_use_background_image\":=\ntrue,\"is_translator\":false,\"profile_text_color\":\"333333\",\"created_at\":\"Sat =\nMar 28 16:41:22 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/3467035972\\/4c978ba8510da3fb77d2d5e9ae7c93f0_n=\normal.jpeg\",\"following\":false,\"screen_name\":\"justinbieber\",\"favourites_coun=\nt\":12,\"profile_sidebar_border_color\":\"FFFFFF\",\"contributors_enabled\":false}=\n,{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Lady Gaga\",\"p=\nrofile_background_tile\":true,\"profile_sidebar_fill_color\":\"DDFFCC\",\"friends=\n_count\":135223,\"url\":\"http:\\/\\/t.co\\/6y7xRxEuw3\",\"id\":14230524,\"followers_c=\nount\":39790333,\"time_zone\":\"Quito\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/37880000005006049=\n5\\/13506f61e5eb69fd109095c8d7edd701.jpeg\",\"entities\":{\"url\":{\"urls\":[{\"indi=\nces\":[0,22],\"url\":\"http:\\/\\/t.co\\/6y7xRxEuw3\",\"display_url\":\"smarturl.it\\/A=\npplause\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/Applause\"}]},\"description\":{=\n\"urls\":[{\"indices\":[71,93],\"display_url\":\"smarturl.it\\/Applause\",\"expanded_=\nurl\":\"http:\\/\\/smarturl.it\\/Applause\",\"url\":\"http:\\/\\/t.co\\/6y7xRxEuw3\"}]}}=\n,\"status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"370=\n005342534774784\",\"possibly_sensitive\":true,\"in_reply_to_status_id\":null,\"in=\n_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/twitter.com=\n\\/#!\\/download\\/ipad\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for iPad\\u003C\\/a\\u0=\n03E\",\"geo\":null,\"favorited\":false,\"id\":370005342534774784,\"created_at\":\"Wed=\n Aug 21 02:12:02 +0000 2013\",\"truncated\":false,\"possibly_sensitive_editable=\n\":true,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"=\nMonster to do:\\n\\n1. Go here: http:\\/\\/t.co\\/7cuIR5pHnP\\n2. Click on \\\"Play=\n\\\"\\n3. Retweet this\\n4. Copy this and pass it on\",\"coordinates\":null,\"retwe=\net_count\":7587,\"in_reply_to_user_id_str\":null,\"entities\":{\"hashtags\":[],\"us=\ner_mentions\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/7cuIR5pHnP\",\"indices\":[28,50=\n],\"display_url\":\"vevo.ly\\/2pKwOC\",\"expanded_url\":\"http:\\/\\/vevo.ly\\/2pKwOC\"=\n}]}},\"default_profile\":false,\"location\":null,\"profile_background_color\":\"FA=\nF0FA\",\"statuses_count\":2973,\"lang\":\"en\",\"listed_count\":242974,\"utc_offset\":=\n-18000,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/378800000050060495\\/13506f61e5eb69fd109095c8d7edd701.jpeg\",\"g=\neo_enabled\":false,\"profile_link_color\":\"2FC2EF\",\"follow_request_sent\":false=\n,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images=\n\\/378800000280665322\\/bdd8a8c3b63f6aeb83f21c77f640723f_normal.jpeg\",\"id_str=\n\":\"14230524\",\"protected\":false,\"description\":\"BUY MY NEW SINGLE 'APPLAUSE' =\nAND PRE-ORDER MY ALBUM 'ARTPOP' HERE NOW! http:\\/\\/t.co\\/6y7xRxEuw3\",\"profi=\nle_use_background_image\":true,\"is_translator\":false,\"profile_text_color\":\"3=\n33333\",\"created_at\":\"Wed Mar 26 22:37:48 +0000 2008\",\"verified\":true,\"profi=\nle_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000280665322\\/b=\ndd8a8c3b63f6aeb83f21c77f640723f_normal.jpeg\",\"following\":false,\"screen_name=\n\":\"ladygaga\",\"favourites_count\":4,\"profile_sidebar_border_color\":\"FFFFFF\",\"=\ncontributors_enabled\":false},{\"notifications\":false,\"is_translator\":false,\"=\nname\":\"Justin Timberlake \",\"profile_background_tile\":true,\"default_profile_=\nimage\":false,\"profile_sidebar_fill_color\":\"efefef\",\"url\":\"http:\\/\\/t.co\\/X6=\nzAokAw7k\",\"friends_count\":51,\"id\":26565946,\"followers_count\":24357682,\"time=\n_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[=\n0,22],\"url\":\"http:\\/\\/t.co\\/X6zAokAw7k\",\"display_url\":\"justintimberlake.com=\n\",\"expanded_url\":\"http:\\/\\/www.justintimberlake.com\"}]},\"description\":{\"url=\ns\":[]}},\"status\":{\"possibly_sensitive_editable\":true,\"contributors\":null,\"p=\nlace\":null,\"retweeted\":false,\"in_reply_to_user_id_str\":null,\"id_str\":\"36985=\n2872562716674\",\"possibly_sensitive\":false,\"in_reply_to_status_id\":null,\"in_=\nreply_to_screen_name\":null,\"source\":\"web\",\"geo\":null,\"favorited\":false,\"id\"=\n:369852872562716674,\"created_at\":\"Tue Aug 20 16:06:11 +0000 2013\",\"truncate=\nd\":false,\"in_reply_to_user_id\":null,\"text\":\"The only place to get #MoreJT i=\ns @Target. Pre-order #The2020Experience #2of2 w\\/ 2 bonus tracks here: http=\n:\\/\\/t.co\\/5JyQYESrcL -teamJT\",\"coordinates\":null,\"retweet_count\":436,\"in_r=\neply_to_status_id_str\":null,\"entities\":{\"hashtags\":[{\"indices\":[22,29],\"tex=\nt\":\"MoreJT\"},{\"indices\":[52,70],\"text\":\"The2020Experience\"},{\"indices\":[71,=\n76],\"text\":\"2of2\"}],\"user_mentions\":[{\"id_str\":\"89084561\",\"screen_name\":\"Ta=\nrget\",\"id\":89084561,\"indices\":[33,40],\"name\":\"Target\"}],\"urls\":[{\"url\":\"htt=\np:\\/\\/t.co\\/5JyQYESrcL\",\"indices\":[101,123],\"display_url\":\"tgt.biz\\/16od7hk=\n\",\"expanded_url\":\"http:\\/\\/tgt.biz\\/16od7hk\"}]}},\"location\":\"Memphis, TN\",\"=\nprofile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/image=\ns\\/themes\\/theme14\\/bg.gif\",\"default_profile\":false,\"profile_background_col=\nor\":\"131516\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners=\n\\/26565946\\/1373662313\",\"statuses_count\":1717,\"lang\":\"en\",\"utc_offset\":-288=\n00,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/t=\nheme14\\/bg.gif\",\"listed_count\":70185,\"geo_enabled\":false,\"profile_link_colo=\nr\":\"009999\",\"follow_request_sent\":false,\"id_str\":\"26565946\",\"protected\":fal=\nse,\"description\":\"Official Justin Timberlake Twitter.\",\"profile_use_backgro=\nund_image\":true,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\=\n/profile_images\\/378800000124507172\\/728bfe4df7da85de938b56aa3adaebca_norma=\nl.jpeg\",\"profile_text_color\":\"333333\",\"created_at\":\"Wed Mar 25 19:10:50 +00=\n00 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_images\\/378800000124507172\\/728bfe4df7da85de938b56aa3adaebca_normal.jpeg\"=\n,\"following\":false,\"screen_name\":\"jtimberlake\",\"profile_sidebar_border_colo=\nr\":\"eeeeee\",\"favourites_count\":0,\"contributors_enabled\":false},{\"notificati=\nons\":false,\"default_profile_image\":false,\"name\":\"Britney Spears\",\"profile_b=\nackground_tile\":false,\"profile_sidebar_fill_color\":\"F4F4F4\",\"friends_count\"=\n:407431,\"url\":\"http:\\/\\/t.co\\/uGaHnNsbCr\",\"id\":16409683,\"followers_count\":3=\n0768265,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_background_image_=\nurl_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/378=\n800000031857991\\/0bfd7bb3f02ea1b9ceea0c25ae470234.jpeg\",\"entities\":{\"url\":{=\n\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/uGaHnNsbCr\",\"display_url\":\"=\nfacebook.com\\/britneyspears\",\"expanded_url\":\"http:\\/\\/facebook.com\\/britney=\nspears\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\"=\n:null,\"retweeted\":false,\"id_str\":\"369941187060178944\",\"in_reply_to_status_i=\nd\":null,\"in_reply_to_screen_name\":null,\"source\":\"web\",\"geo\":null,\"favorited=\n\":false,\"id\":369941187060178944,\"created_at\":\"Tue Aug 20 21:57:06 +0000 201=\n3\",\"truncated\":false,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\"=\n:null,\"text\":\"One of the most beautiful songs I have recorded in a LONG tim=\ne :)\",\"coordinates\":null,\"retweet_count\":4019,\"in_reply_to_user_id_str\":nul=\nl,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]}},\"default_profile=\n\":false,\"location\":\"Los Angeles, CA\",\"profile_banner_url\":\"https:\\/\\/pbs.tw=\nimg.com\\/profile_banners\\/16409683\\/1374685737\",\"profile_background_color\":=\n\"FFFFFF\",\"statuses_count\":2535,\"lang\":\"en\",\"listed_count\":126497,\"utc_offse=\nt\":-28800,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ba=\nckground_images\\/378800000031857991\\/0bfd7bb3f02ea1b9ceea0c25ae470234.jpeg\"=\n,\"geo_enabled\":false,\"profile_link_color\":\"9E9E9E\",\"follow_request_sent\":fa=\nlse,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_ima=\nges\\/378800000179819225\\/a337b8a29608b713540c637afdd91232_normal.jpeg\",\"id_=\nstr\":\"16409683\",\"protected\":false,\"description\":\"It\\u2019s Britney Bitch!\",=\n\"profile_use_background_image\":true,\"is_translator\":false,\"profile_text_col=\nor\":\"222222\",\"created_at\":\"Mon Sep 22 20:47:35 +0000 2008\",\"verified\":true,=\n\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000179819=\n225\\/a337b8a29608b713540c637afdd91232_normal.jpeg\",\"following\":false,\"scree=\nn_name\":\"britneyspears\",\"favourites_count\":101,\"profile_sidebar_border_colo=\nr\":\"000000\",\"contributors_enabled\":false},{\"notifications\":false,\"default_p=\nrofile_image\":false,\"name\":\"Bruno Mars\",\"profile_background_tile\":false,\"pr=\nofile_sidebar_fill_color\":\"E6F6F9\",\"friends_count\":76,\"url\":\"http:\\/\\/t.co\\=\n/MbzmauRmIq\",\"id\":100220864,\"followers_count\":16710653,\"time_zone\":null,\"pr=\nofile_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile=\n_background_images\\/794344025\\/4d0356092343661b6693eba439fa1c43.jpeg\",\"enti=\nties\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/MbzmauRmIq\",\"=\ndisplay_url\":\"brunomars.com\",\"expanded_url\":\"http:\\/\\/www.brunomars.com\"}]}=\n,\"description\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"ret=\nweeted\":false,\"id_str\":\"369987110427574273\",\"possibly_sensitive\":true,\"in_r=\neply_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca hr=\nef=3D\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter f=\nor BlackBerry\\u00ae\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":36998=\n7110427574273,\"created_at\":\"Wed Aug 21 00:59:35 +0000 2013\",\"truncated\":fal=\nse,\"possibly_sensitive_editable\":true,\"in_reply_to_status_id_str\":null,\"in_=\nreply_to_user_id\":null,\"text\":\"Life on the road http:\\/\\/t.co\\/ZIbJslgJHi\",=\n\"coordinates\":null,\"retweet_count\":1841,\"in_reply_to_user_id_str\":null,\"ent=\nities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id_str\":\"3699=\n87110339502080\",\"id\":369987110339502080,\"media_url\":\"http:\\/\\/pbs.twimg.com=\n\\/media\\/BSJ1UQtCYAAPH5S.jpg\",\"source_status_id\":null,\"url\":\"http:\\/\\/t.co\\=\n/ZIbJslgJHi\",\"indices\":[17,39],\"sizes\":{\"small\":{\"h\":255,\"w\":340,\"resize\":\"=\nfit\"},\"large\":{\"h\":480,\"w\":640,\"resize\":\"fit\"},\"medium\":{\"h\":450,\"w\":600,\"r=\nesize\":\"fit\"},\"thumb\":{\"h\":150,\"w\":150,\"resize\":\"crop\"}},\"display_url\":\"pic=\n.twitter.com\\/ZIbJslgJHi\",\"type\":\"photo\",\"media_url_https\":\"https:\\/\\/pbs.t=\nwimg.com\\/media\\/BSJ1UQtCYAAPH5S.jpg\",\"expanded_url\":\"http:\\/\\/twitter.com\\=\n/BrunoMars\\/status\\/369987110427574273\\/photo\\/1\"}]}},\"default_profile\":fal=\nse,\"location\":\"Los Angeles, CA\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.c=\nom\\/profile_banners\\/100220864\\/1361145117\",\"profile_background_color\":\"F0D=\nBB7\",\"statuses_count\":2812,\"lang\":\"en\",\"listed_count\":34072,\"utc_offset\":nu=\nll,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgroun=\nd_images\\/794344025\\/4d0356092343661b6693eba439fa1c43.jpeg\",\"geo_enabled\":f=\nalse,\"profile_link_color\":\"0A0104\",\"follow_request_sent\":false,\"profile_ima=\nge_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/3226400917\\=\n/f40c1a666b4eae3cf3855c38e90598fd_normal.jpeg\",\"id_str\":\"100220864\",\"protec=\nted\":false,\"description\":\"#MySecondAlbumIsOutSon\",\"profile_use_background_i=\nmage\":true,\"is_translator\":false,\"profile_text_color\":\"333333\",\"created_at\"=\n:\"Tue Dec 29 13:07:04 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/3226400917\\/f40c1a666b4eae3cf3855c38e905=\n98fd_normal.jpeg\",\"following\":false,\"screen_name\":\"BrunoMars\",\"favourites_c=\nount\":13,\"profile_sidebar_border_color\":\"FFFFFF\",\"contributors_enabled\":fal=\nse},{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Selena Gom=\nez\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"252429\",\"=\nfriends_count\":1319,\"url\":\"http:\\/\\/t.co\\/pOCMcRhGYg\",\"id\":23375688,\"follow=\ners_count\":16269386,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_backg=\nround_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background=\n_images\\/378800000047948247\\/97af678275460c7a599c7a7363de3d11.jpeg\",\"entiti=\nes\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/pOCMcRhGYg\",\"di=\nsplay_url\":\"selenagomez.com\",\"expanded_url\":\"http:\\/\\/www.selenagomez.com\"}=\n]},\"description\":{\"urls\":[{\"indices\":[84,106],\"display_url\":\"smarturl.it\\/s=\ngiTunesa2\",\"expanded_url\":\"http:\\/\\/smarturl.it\\/sgiTunesa2\",\"url\":\"http:\\/=\n\\/t.co\\/AIF1Isw3LG\"}]}},\"status\":{\"contributors\":null,\"place\":null,\"retweet=\ned\":false,\"id_str\":\"369891253543911424\",\"possibly_sensitive\":true,\"in_reply=\n_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"web\",\"geo\":nul=\nl,\"favorited\":false,\"id\":369891253543911424,\"created_at\":\"Tue Aug 20 18:38:=\n41 +0000 2013\",\"truncated\":false,\"possibly_sensitive_editable\":true,\"in_rep=\nly_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"This is it, #G=\netaway in 10 days!! So proud of this project. http:\\/\\/t.co\\/WdF1NVRq11\",\"c=\noordinates\":null,\"retweet_count\":6218,\"in_reply_to_user_id_str\":null,\"entit=\nies\":{\"hashtags\":[{\"indices\":[12,20],\"text\":\"Getaway\"}],\"user_mentions\":[],=\n\"urls\":[{\"url\":\"http:\\/\\/t.co\\/WdF1NVRq11\",\"indices\":[60,82],\"display_url\":=\n\"youtube.com\\/watch?v=3DeBcVxX\\u2026\",\"expanded_url\":\"http:\\/\\/www.youtube.=\ncom\\/watch?v=3DeBcVxXwFowI&feature=3Dyoutu.be\"}]}},\"default_profile\":false,=\n\"location\":\"Los Angeles \",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pr=\nofile_banners\\/23375688\\/1374595319\",\"profile_background_color\":\"000000\",\"s=\ntatuses_count\":2784,\"lang\":\"en\",\"listed_count\":133205,\"utc_offset\":-28800,\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/378800000047948247\\/97af678275460c7a599c7a7363de3d11.jpeg\",\"geo_enabl=\ned\":false,\"profile_link_color\":\"FF0000\",\"follow_request_sent\":false,\"profil=\ne_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/375309=\n7463\\/c75792bbff88ebef21eb0de621fe08d7_normal.jpeg\",\"id_str\":\"23375688\",\"pr=\notected\":false,\"description\":\"The Official Selena Gomez Twitter Page. New a=\nlbum STARS DANCE available on iTunes - http:\\/\\/t.co\\/AIF1Isw3LG\",\"profile_=\nuse_background_image\":true,\"is_translator\":false,\"profile_text_color\":\"CC33=\n99\",\"created_at\":\"Mon Mar 09 00:16:45 +0000 2009\",\"verified\":true,\"profile_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3753097463\\/c75792bbff88=\nebef21eb0de621fe08d7_normal.jpeg\",\"following\":false,\"screen_name\":\"selenago=\nmez\",\"favourites_count\":23,\"profile_sidebar_border_color\":\"FFFFFF\",\"contrib=\nutors_enabled\":false},{\"notifications\":false,\"default_profile_image\":false,=\n\"name\":\"Twitter Music\",\"profile_background_tile\":true,\"profile_sidebar_fill=\n_color\":\"EFEFEF\",\"friends_count\":83,\"url\":\"http:\\/\\/t.co\\/7eUtBKV1bf\",\"id\":=\n373471064,\"followers_count\":3304559,\"time_zone\":\"Hawaii\",\"profile_backgroun=\nd_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/images\\/themes\\/theme1=\n4\\/bg.gif\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.c=\no\\/7eUtBKV1bf\",\"display_url\":\"music.twitter.com\",\"expanded_url\":\"http:\\/\\/m=\nusic.twitter.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":nu=\nll,\"place\":null,\"retweeted\":false,\"id_str\":\"369904949586444288\",\"in_reply_t=\no_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\=\n\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter f=\nor iPhone\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369904949586444=\n288,\"created_at\":\"Tue Aug 20 19:33:07 +0000 2013\",\"truncated\":false,\"retwee=\nted_status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"3=\n69903918681034752\",\"in_reply_to_status_id\":null,\"in_reply_to_screen_name\":n=\null,\"source\":\"web\",\"geo\":null,\"favorited\":false,\"id\":369903918681034752,\"cr=\neated_at\":\"Tue Aug 20 19:29:01 +0000 2013\",\"truncated\":false,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"Bruce here... looking=\n forward to seeing friends in Chile, Argentina & Brazil on tour next mo=\nnth. Any requests?\",\"coordinates\":null,\"retweet_count\":1010,\"in_reply_to_us=\ner_id_str\":null,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]}},\"i=\nn_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"RT @sprin=\ngsteen: Bruce here... looking forward to seeing friends in Chile, Argentina=\n & Brazil on tour next month. Any requests?\",\"coordinates\":null,\"retwee=\nt_count\":1010,\"in_reply_to_user_id_str\":null,\"entities\":{\"hashtags\":[],\"use=\nr_mentions\":[{\"id_str\":\"43383705\",\"screen_name\":\"springsteen\",\"id\":43383705=\n,\"indices\":[3,15],\"name\":\"Bruce Springsteen\"}],\"urls\":[]}},\"default_profile=\n\":false,\"location\":\"Twitter HQ\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.c=\nom\\/profile_banners\\/373471064\\/1347670819\",\"profile_background_color\":\"131=\n516\",\"statuses_count\":3058,\"lang\":\"en\",\"listed_count\":5969,\"utc_offset\":-36=\n000,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/=\ntheme14\\/bg.gif\",\"geo_enabled\":false,\"profile_link_color\":\"009999\",\"follow_=\nrequest_sent\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.=\nnet\\/profile_images\\/3782510816\\/ae4c20cca7d4cc918bba74458def2066_normal.pn=\ng\",\"id_str\":\"373471064\",\"protected\":false,\"description\":\"Music related Twee=\nts from around the world.\",\"profile_use_background_image\":true,\"is_translat=\nor\":false,\"profile_text_color\":\"333333\",\"created_at\":\"Wed Sep 14 16:50:47 +=\n0000 2011\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/prof=\nile_images\\/3782510816\\/ae4c20cca7d4cc918bba74458def2066_normal.png\",\"follo=\nwing\":false,\"screen_name\":\"TwitterMusic\",\"favourites_count\":415,\"profile_si=\ndebar_border_color\":\"000000\",\"contributors_enabled\":false},{\"notifications\"=\n:false,\"is_translator\":false,\"name\":\"Avril Lavigne\",\"profile_background_til=\ne\":false,\"default_profile_image\":false,\"profile_sidebar_fill_color\":\"1A1A17=\n\",\"url\":null,\"friends_count\":37,\"id\":73992972,\"followers_count\":12672201,\"t=\nime_zone\":\"Pacific Time (US & Canada)\",\"entities\":{\"description\":{\"urls\":[]=\n}},\"status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"in_reply_t=\no_user_id_str\":null,\"id_str\":\"369971029231149056\",\"in_reply_to_status_id\":n=\null,\"in_reply_to_screen_name\":null,\"source\":\"web\",\"geo\":null,\"favorited\":fa=\nlse,\"id\":369971029231149056,\"created_at\":\"Tue Aug 20 23:55:41 +0000 2013\",\"=\ntruncated\":false,\"in_reply_to_user_id\":null,\"text\":\"Glad you guys are lovin=\n' my #RockNRoll video!! The single will be available for download on August=\n 27!!\",\"coordinates\":null,\"retweet_count\":1725,\"in_reply_to_status_id_str\":=\nnull,\"entities\":{\"hashtags\":[{\"indices\":[28,38],\"text\":\"RockNRoll\"}],\"user_=\nmentions\":[],\"urls\":[]}},\"location\":null,\"profile_background_image_url_http=\ns\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/37880000005=\n5972548\\/870adb10d3931b9df30e25fd3e0d9a3b.jpeg\",\"default_profile\":false,\"pr=\nofile_background_color\":\"100C0B\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.=\ncom\\/profile_banners\\/73992972\\/1377041213\",\"statuses_count\":1420,\"lang\":\"e=\nn\",\"utc_offset\":-28800,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_background_images\\/378800000055972548\\/870adb10d3931b9df30e25fd3=\ne0d9a3b.jpeg\",\"listed_count\":37307,\"geo_enabled\":false,\"profile_link_color\"=\n:\"FF0000\",\"follow_request_sent\":false,\"id_str\":\"73992972\",\"protected\":false=\n,\"description\":\"Professional Rocker \\/ \\r\\nNew Single Available August =\n27\",\"profile_use_background_image\":true,\"profile_image_url_https\":\"https:\\/=\n\\/twimg0-a.akamaihd.net\\/profile_images\\/378800000327348170\\/298d2d52a2b6f7=\nf1be6cf06ae0a12431_normal.jpeg\",\"profile_text_color\":\"ABABAB\",\"created_at\":=\n\"Sun Sep 13 22:43:00 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_images\\/378800000327348170\\/298d2d52a2b6f7f1be6cf=\n06ae0a12431_normal.jpeg\",\"following\":false,\"screen_name\":\"AvrilLavigne\",\"pr=\nofile_sidebar_border_color\":\"000000\",\"favourites_count\":5,\"contributors_ena=\nbled\":false},{\"notifications\":false,\"default_profile_image\":false,\"name\":\"A=\nlicia Keys\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"D=\n91C26\",\"friends_count\":408,\"url\":\"http:\\/\\/t.co\\/BDXoODVMXE\",\"id\":35094637,=\n\"followers_count\":15899604,\"time_zone\":\"Eastern Time (US & Canada)\",\"profil=\ne_background_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_bac=\nkground_images\\/378800000053320388\\/0b1262ecc48c4dfd29646ad7c5659387.jpeg\",=\n\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/BDXoODVM=\nXE\",\"display_url\":\"aliciakeys.com\",\"expanded_url\":\"http:\\/\\/www.aliciakeys.=\ncom\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":nu=\nll,\"retweeted\":false,\"id_str\":\"370032281010053120\",\"possibly_sensitive\":fal=\nse,\"in_reply_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u=\n003Ca href=3D\\\"http:\\/\\/www.twitter.com\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter f=\nor BlackBerry\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":37003228101=\n0053120,\"created_at\":\"Wed Aug 21 03:59:05 +0000 2013\",\"truncated\":false,\"po=\nssibly_sensitive_editable\":true,\"in_reply_to_status_id_str\":null,\"in_reply_=\nto_user_id\":null,\"text\":\"Can't wait to c this! \\\"@HipHopWired: @THEREALSWI=\nZZZ Joins Cast Of @SundanceChannel Reality Series 'Dream School' http:\\/\\/t=\n.co\\/m8qdXKzFKU\\\"\",\"coordinates\":null,\"retweet_count\":59,\"in_reply_to_user_=\nid_str\":null,\"entities\":{\"hashtags\":[],\"user_mentions\":[{\"id_str\":\"40340946=\n\",\"screen_name\":\"HipHopWired\",\"id\":40340946,\"indices\":[23,35],\"name\":\"Hip-H=\nop Wired\"},{\"id_str\":\"25027806\",\"screen_name\":\"THEREALSWIZZZ\",\"id\":25027806=\n,\"indices\":[38,52],\"name\":\" SWIZZ BEATZ\"},{\"id_str\":\"54964162\",\"screen_name=\n\":\"SundanceChannel\",\"id\":54964162,\"indices\":[67,83],\"name\":\"Sundance Channe=\nl\"}],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/m8qdXKzFKU\",\"indices\":[114,136],\"displa=\ny_url\":\"shar.es\\/zoLOs\",\"expanded_url\":\"http:\\/\\/shar.es\\/zoLOs\"}]}},\"defau=\nlt_profile\":false,\"location\":\"New York City\",\"profile_banner_url\":\"https:\\/=\n\\/pbs.twimg.com\\/profile_banners\\/35094637\\/1376711061\",\"profile_background=\n_color\":\"150D1A\",\"statuses_count\":4165,\"lang\":\"en\",\"listed_count\":50269,\"ut=\nc_offset\":-18000,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_background_images\\/378800000053320388\\/0b1262ecc48c4dfd29646ad7c565938=\n7.jpeg\",\"geo_enabled\":false,\"profile_link_color\":\"171415\",\"follow_request_s=\nent\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/prof=\nile_images\\/378800000163880575\\/b6a87cd4a4152e23c8d4fe417dfb168f_normal.jpe=\ng\",\"id_str\":\"35094637\",\"protected\":false,\"description\":\"Passionate about my=\n work, in love with my family and dedicated to spreading light. It's contag=\nious!;-)\",\"profile_use_background_image\":true,\"is_translator\":false,\"profil=\ne_text_color\":\"090A02\",\"created_at\":\"Sat Apr 25 00:46:24 +0000 2009\",\"verif=\nied\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/37880=\n0000163880575\\/b6a87cd4a4152e23c8d4fe417dfb168f_normal.jpeg\",\"following\":fa=\nlse,\"screen_name\":\"aliciakeys\",\"favourites_count\":3,\"profile_sidebar_border=\n_color\":\"FFFFFF\",\"contributors_enabled\":false},{\"notifications\":false,\"defa=\nult_profile_image\":false,\"name\":\"Simon Cowell\",\"profile_background_tile\":fa=\nlse,\"profile_sidebar_fill_color\":\"252429\",\"friends_count\":1487,\"url\":\"http:=\n\\/\\/t.co\\/gKrnOcU7CQ\",\"id\":413487212,\"followers_count\":7883519,\"time_zone\":=\n\"Pacific Time (US & Canada)\",\"profile_background_image_url_https\":\"https:\\/=\n\\/twimg0-a.akamaihd.net\\/images\\/themes\\/theme9\\/bg.gif\",\"entities\":{\"url\":=\n{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/gKrnOcU7CQ\",\"display_url\":=\n\"thexfactorusa.com\",\"expanded_url\":\"http:\\/\\/www.thexfactorusa.com\\/\"}]},\"d=\nescription\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"retwee=\nted\":false,\"id_str\":\"362428979774361600\",\"possibly_sensitive\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=\n=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitt=\ner for iPhone\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":36242897977=\n4361600,\"created_at\":\"Wed Jul 31 04:26:17 +0000 2013\",\"truncated\":false,\"po=\nssibly_sensitive_editable\":true,\"in_reply_to_status_id_str\":null,\"in_reply_=\nto_user_id\":null,\"text\":\"Congratulations @Emblemthree Really proud of you a=\nll. A great album out this week https:\\/\\/t.co\\/OCjiR0s7QN\",\"coordinates\":n=\null,\"retweet_count\":3781,\"in_reply_to_user_id_str\":null,\"entities\":{\"hashta=\ngs\":[],\"user_mentions\":[{\"id_str\":\"378376122\",\"screen_name\":\"EmblemThree\",\"=\nid\":378376122,\"indices\":[16,28],\"name\":\"EMBLEM3\"}],\"urls\":[{\"url\":\"https:\\/=\n\\/t.co\\/OCjiR0s7QN\",\"indices\":[82,105],\"display_url\":\"itun.es\\/i6xK4tt\",\"ex=\npanded_url\":\"https:\\/\\/itun.es\\/i6xK4tt\"}]}},\"default_profile\":false,\"locat=\nion\":null,\"profile_background_color\":\"1A1B1F\",\"statuses_count\":754,\"lang\":\"=\nen\",\"listed_count\":10016,\"utc_offset\":-28800,\"profile_background_image_url\"=\n:\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme9\\/bg.gif\",\"geo_enabled\":fals=\ne,\"profile_link_color\":\"2FC2EF\",\"follow_request_sent\":false,\"profile_image_=\nurl_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1642774110\\/si=\nmoncowelltwitter2_normal.jpg\",\"id_str\":\"413487212\",\"protected\":false,\"descr=\niption\":null,\"profile_use_background_image\":true,\"is_translator\":false,\"pro=\nfile_text_color\":\"666666\",\"created_at\":\"Tue Nov 15 23:12:59 +0000 2011\",\"ve=\nrified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/16=\n42774110\\/simoncowelltwitter2_normal.jpg\",\"following\":false,\"screen_name\":\"=\nSimonCowell\",\"favourites_count\":2,\"profile_sidebar_border_color\":\"181A1E\",\"=\ncontributors_enabled\":false},{\"notifications\":false,\"default_profile_image\"=\n:false,\"name\":\"Adele\",\"profile_background_tile\":false,\"profile_sidebar_fill=\n_color\":\"EFEFEF\",\"friends_count\":174,\"url\":\"http:\\/\\/t.co\\/Yr71qltaxt\",\"id\"=\n:184910040,\"followers_count\":16973993,\"time_zone\":\"Quito\",\"profile_backgrou=\nnd_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_im=\nages\\/167616538\\/bg.jpg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\"=\n:\"http:\\/\\/t.co\\/Yr71qltaxt\",\"display_url\":\"adele.tv\",\"expanded_url\":\"http:=\n\\/\\/www.adele.tv\\/\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":=\nnull,\"place\":null,\"retweeted\":false,\"id_str\":\"365046884613627905\",\"in_reply=\n_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=\n=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitt=\ner for iPhone\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":36504688461=\n3627905,\"created_at\":\"Wed Aug 07 09:48:54 +0000 2013\",\"truncated\":false,\"in=\n_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"Please go =\nand get the new Civil Wars album. They're my absolute favourite and the new=\n record is beautiful! X\",\"coordinates\":null,\"retweet_count\":3809,\"in_reply_=\nto_user_id_str\":null,\"entities\":{\"hashtags\":[],\"user_mentions\":[],\"urls\":[]=\n}},\"default_profile\":false,\"location\":\"London\\/NYC\",\"profile_background_col=\nor\":\"131516\",\"statuses_count\":178,\"lang\":\"en\",\"listed_count\":26339,\"utc_off=\nset\":-18000,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nbackground_images\\/167616538\\/bg.jpg\",\"geo_enabled\":false,\"profile_link_col=\nor\":\"009999\",\"follow_request_sent\":false,\"profile_image_url_https\":\"https:\\=\n/\\/twimg0-a.akamaihd.net\\/profile_images\\/1676212439\\/image_normal.jpg\",\"id=\n_str\":\"184910040\",\"protected\":false,\"description\":\"Official Twitter account=\n for Adele. @XLRECORDINGS \\/ @ColumbiaRecords recording artist.\",\"profile_u=\nse_background_image\":true,\"is_translator\":false,\"profile_text_color\":\"33333=\n3\",\"created_at\":\"Mon Aug 30 19:53:19 +0000 2010\",\"verified\":true,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1676212439\\/image_normal.=\njpg\",\"following\":false,\"screen_name\":\"OfficialAdele\",\"favourites_count\":0,\"=\nprofile_sidebar_border_color\":\"EEEEEE\",\"contributors_enabled\":false},{\"noti=\nfications\":false,\"default_profile_image\":false,\"name\":\"Miley Ray Cyrus\",\"pr=\nofile_background_tile\":true,\"profile_sidebar_fill_color\":\"000000\",\"friends_=\ncount\":276,\"url\":\"http:\\/\\/t.co\\/zhwe6ZcufX\",\"id\":268414482,\"followers_coun=\nt\":13205143,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_background_im=\nage_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\=\n/872656424\\/464b050842949a34d7c4cee3c861ad0d.jpeg\",\"entities\":{\"url\":{\"urls=\n\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/zhwe6ZcufX\",\"display_url\":\"miley=\ncyrus.com\",\"expanded_url\":\"http:\\/\\/www.mileycyrus.com\"}]},\"description\":{\"=\nurls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id=\n_str\":\"369972471656493057\",\"possibly_sensitive\":true,\"in_reply_to_status_id=\n\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/t=\nwitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for iPhone\\u=\n003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369972471656493057,\"create=\nd_at\":\"Wed Aug 21 00:01:25 +0000 2013\",\"truncated\":false,\"possibly_sensitiv=\ne_editable\":true,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nul=\nl,\"text\":\"STAY ON YO TOES HOES! #wereback #votemiley http:\\/\\/t.co\\/GFKNRUJ=\n71k\",\"coordinates\":null,\"retweet_count\":3503,\"in_reply_to_user_id_str\":null=\n,\"entities\":{\"hashtags\":[{\"indices\":[22,31],\"text\":\"wereback\"},{\"indices\":[=\n32,42],\"text\":\"votemiley\"}],\"user_mentions\":[],\"urls\":[],\"media\":[{\"id_str\"=\n:\"369972470721155073\",\"id\":369972470721155073,\"media_url\":\"http:\\/\\/pbs.twi=\nmg.com\\/media\\/BSJoAH4CEAEAVk6.jpg\",\"source_status_id\":null,\"url\":\"http:\\/\\=\n/t.co\\/GFKNRUJ71k\",\"indices\":[43,65],\"sizes\":{\"small\":{\"h\":453,\"w\":340,\"res=\nize\":\"fit\"},\"large\":{\"h\":1024,\"w\":768,\"resize\":\"fit\"},\"medium\":{\"h\":800,\"w\"=\n:600,\"resize\":\"fit\"},\"thumb\":{\"h\":150,\"w\":150,\"resize\":\"crop\"}},\"display_ur=\nl\":\"pic.twitter.com\\/GFKNRUJ71k\",\"type\":\"photo\",\"media_url_https\":\"https:\\/=\n\\/pbs.twimg.com\\/media\\/BSJoAH4CEAEAVk6.jpg\",\"expanded_url\":\"http:\\/\\/twitt=\ner.com\\/MileyCyrus\\/status\\/369972471656493057\\/photo\\/1\"}]}},\"default_prof=\nile\":false,\"location\":\"PLUTO \",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.co=\nm\\/profile_banners\\/268414482\\/1376599858\",\"profile_background_color\":\"0000=\n00\",\"statuses_count\":5152,\"lang\":\"en\",\"listed_count\":53545,\"utc_offset\":-28=\n800,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgrou=\nnd_images\\/872656424\\/464b050842949a34d7c4cee3c861ad0d.jpeg\",\"geo_enabled\":=\ntrue,\"profile_link_color\":\"0D0101\",\"follow_request_sent\":false,\"profile_ima=\nge_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/37880000030=\n4965762\\/87da65c66e5011d42200bca9a85ce785_normal.jpeg\",\"id_str\":\"268414482\"=\n,\"protected\":false,\"description\":\"california face. with a down south rump. =\n#BANGERZOCTOBER 8th\",\"profile_use_background_image\":false,\"is_translator\":f=\nalse,\"profile_text_color\":\"FF8400\",\"created_at\":\"Fri Mar 18 18:36:02 +0000 =\n2011\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/378800000304965762\\/87da65c66e5011d42200bca9a85ce785_normal.jpeg\",\"f=\nollowing\":false,\"screen_name\":\"MileyCyrus\",\"favourites_count\":26,\"profile_s=\nidebar_border_color\":\"FFFFFF\",\"contributors_enabled\":false},{\"notifications=\n\":false,\"default_profile_image\":false,\"name\":\"Chris Brown \",\"profile_backgr=\nound_tile\":false,\"profile_sidebar_fill_color\":\"D0D8D9\",\"friends_count\":1907=\n,\"url\":\"http:\\/\\/t.co\\/YO6fyi5sBn\",\"id\":119509520,\"followers_count\":1293581=\n5,\"time_zone\":null,\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a=\n.akamaihd.net\\/profile_background_images\\/378800000030537486\\/0d69352d6bacf=\n72a3e2b1baa4e0747f6.jpeg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url=\n\":\"http:\\/\\/t.co\\/YO6fyi5sBn\",\"display_url\":\"chrisbrownworld.com\",\"expanded=\n_url\":\"http:\\/\\/www.chrisbrownworld.com\"}]},\"description\":{\"urls\":[{\"indice=\ns\":[30,52],\"display_url\":\"thechrisbrownchannel.com\",\"expanded_url\":\"http:\\/=\n\\/thechrisbrownchannel.com\",\"url\":\"http:\\/\\/t.co\\/f979hdjgSS\"}]}},\"status\":=\n{\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"3699007196811=\n96033\",\"in_reply_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\"=\n:\"\\u003Ca href=3D\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollo=\nw\\\"\\u003ETwitter for iPhone\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"i=\nd\":369900719681196033,\"created_at\":\"Tue Aug 20 19:16:18 +0000 2013\",\"trunca=\nted\":false,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"tex=\nt\":\"Love ya self for what u do out of ya heart. Don't love someone for what=\n they do for you becuz 9 times outta 10 it's for a come up.\",\"coordinates\":=\nnull,\"retweet_count\":7039,\"in_reply_to_user_id_str\":null,\"entities\":{\"user_=\nmentions\":[],\"hashtags\":[],\"urls\":[]}},\"default_profile\":false,\"location\":n=\null,\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/1195095=\n20\\/1376809364\",\"profile_background_color\":\"999999\",\"statuses_count\":726,\"l=\nang\":\"en\",\"listed_count\":46078,\"utc_offset\":null,\"profile_background_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/378800000030537486\\=\n/0d69352d6bacf72a3e2b1baa4e0747f6.jpeg\",\"geo_enabled\":true,\"profile_link_co=\nlor\":\"0A0101\",\"follow_request_sent\":false,\"profile_image_url_https\":\"https:=\n\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/378800000324242652\\/fb8743e5354c=\nf1bd863c8dfb2c211b9f_normal.jpeg\",\"id_str\":\"119509520\",\"protected\":false,\"d=\nescription\":\"Official Chris Brown Twitter\\r\\nhttp:\\/\\/t.co\\/f979hdjgSS\",\"pr=\nofile_use_background_image\":true,\"is_translator\":false,\"profile_text_color\"=\n:\"4327E6\",\"created_at\":\"Wed Mar 03 21:39:14 +0000 2010\",\"verified\":true,\"pr=\nofile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000324242652=\n\\/fb8743e5354cf1bd863c8dfb2c211b9f_normal.jpeg\",\"following\":false,\"screen_n=\name\":\"chrisbrown\",\"favourites_count\":437,\"profile_sidebar_border_color\":\"00=\n0000\",\"contributors_enabled\":false},{\"notifications\":false,\"default_profile=\n_image\":false,\"name\":\"Pitbull\",\"profile_background_tile\":false,\"profile_sid=\nebar_fill_color\":\"D6D6D6\",\"friends_count\":2432,\"url\":\"http:\\/\\/t.co\\/kff4Rc=\ncE4v\",\"id\":31927467,\"followers_count\":13482442,\"time_zone\":\"Eastern Time (U=\nS & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akama=\nihd.net\\/profile_background_images\\/378800000007953770\\/af54fb6f005fb52df4e=\neb235c726b00d.jpeg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"htt=\np:\\/\\/t.co\\/kff4RccE4v\",\"display_url\":\"bit.ly\\/16gFtwZ\",\"expanded_url\":\"htt=\np:\\/\\/bit.ly\\/16gFtwZ\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributor=\ns\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"369973042635481089\",\"in_re=\nply_to_status_id\":null,\"in_reply_to_screen_name\":null,\"source\":\"web\",\"geo\":=\nnull,\"favorited\":false,\"id\":369973042635481089,\"created_at\":\"Wed Aug 21 00:=\n03:41 +0000 2013\",\"truncated\":false,\"in_reply_to_status_id_str\":null,\"in_re=\nply_to_user_id\":null,\"text\":\"almost time for #cashdomepawn on @truTV with @=\n67uly and @WhiteBoyTruTv tonight at 9pm #dale\",\"coordinates\":null,\"retweet_=\ncount\":75,\"in_reply_to_user_id_str\":null,\"entities\":{\"hashtags\":[{\"indices\"=\n:[16,29],\"text\":\"cashdomepawn\"},{\"indices\":[86,91],\"text\":\"dale\"}],\"user_me=\nntions\":[{\"id_str\":\"21884158\",\"screen_name\":\"truTV\",\"id\":21884158,\"indices\"=\n:[33,39],\"name\":\"truTV\"},{\"id_str\":\"621542610\",\"screen_name\":\"67uly\",\"id\":6=\n21542610,\"indices\":[45,51],\"name\":\"67uly\"},{\"id_str\":\"63008092\",\"screen_nam=\ne\":\"WhiteBoyTruTv\",\"id\":63008092,\"indices\":[56,70],\"name\":\"Joshua Gallander=\n\"}],\"urls\":[]}},\"default_profile\":false,\"location\":\"Miami, FL\",\"profile_ban=\nner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/31927467\\/1372209141\",\"=\nprofile_background_color\":\"000000\",\"statuses_count\":4765,\"lang\":\"en\",\"liste=\nd_count\":20225,\"utc_offset\":-18000,\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_background_images\\/378800000007953770\\/af54fb6f005fb=\n52df4eeb235c726b00d.jpeg\",\"geo_enabled\":false,\"profile_link_color\":\"FF000D\"=\n,\"follow_request_sent\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.=\nakamaihd.net\\/profile_images\\/378800000046595406\\/752a90e142eaa4f6047b1ab67=\n8234591_normal.jpeg\",\"id_str\":\"31927467\",\"protected\":false,\"description\":\"I=\nnternational Superstar. Entrepreneur. Philanthropist. 305 till I die. dale=\neeee\",\"profile_use_background_image\":true,\"is_translator\":false,\"profile_te=\nxt_color\":\"C40808\",\"created_at\":\"Thu Apr 16 16:03:02 +0000 2009\",\"verified\"=\n:true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/378800000=\n046595406\\/752a90e142eaa4f6047b1ab678234591_normal.jpeg\",\"following\":false,=\n\"screen_name\":\"Pitbull\",\"favourites_count\":15,\"profile_sidebar_border_color=\n\":\"FFFFFF\",\"contributors_enabled\":false},{\"notifications\":false,\"default_pr=\nofile_image\":false,\"name\":\"P!nk\",\"profile_background_tile\":false,\"profile_s=\nidebar_fill_color\":\"E6F6F9\",\"friends_count\":250,\"url\":\"http:\\/\\/t.co\\/spVFU=\nPAxU3\",\"id\":28706024,\"followers_count\":18727176,\"time_zone\":\"Pacific Time (=\nUS & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/twimg0-a.akam=\naihd.net\\/profile_background_images\\/178806023\\/grammys13.jpg\",\"entities\":{=\n\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/spVFUPAxU3\",\"display=\n_url\":\"twitter.com\\/pink\",\"expanded_url\":\"http:\\/\\/twitter.com\\/pink\"}]},\"d=\nescription\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"retwee=\nted\":false,\"id_str\":\"369711352056909824\",\"in_reply_to_status_id\":3696847956=\n99118081,\"in_reply_to_screen_name\":\"hartluck\",\"source\":\"\\u003Ca href=3D\\\"ht=\ntp:\\/\\/twitter.com\\/download\\/iphone\\\" rel=3D\\\"nofollow\\\"\\u003ETwitter for =\niPhone\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369711352056909824=\n,\"created_at\":\"Tue Aug 20 06:43:49 +0000 2013\",\"truncated\":false,\"in_reply_=\nto_status_id_str\":\"369684795699118081\",\"in_reply_to_user_id\":19524050,\"text=\n\":\"\\u201c@hartluck: Home from the airport at 10pm and out the door at 630am=\n tomorrow. #GrindLife\\u201d positive spin: you get to sleep in your own bed=\n!!!\",\"coordinates\":null,\"retweet_count\":203,\"in_reply_to_user_id_str\":\"1952=\n4050\",\"entities\":{\"hashtags\":[{\"indices\":[78,88],\"text\":\"GrindLife\"}],\"user=\n_mentions\":[{\"id_str\":\"19524050\",\"screen_name\":\"hartluck\",\"id\":19524050,\"in=\ndices\":[1,10],\"name\":\"Carey Hart\"}],\"urls\":[]}},\"default_profile\":false,\"lo=\ncation\":\"los angeles\",\"profile_background_color\":\"DBE9ED\",\"statuses_count\":=\n4811,\"lang\":\"en\",\"listed_count\":64449,\"utc_offset\":-28800,\"profile_backgrou=\nnd_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/178806023\\=\n/grammys13.jpg\",\"geo_enabled\":false,\"profile_link_color\":\"CC3366\",\"follow_r=\nequest_sent\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.n=\net\\/profile_images\\/549375583\\/Pinkdeborahanderson_112_normal.jpg\",\"id_str\"=\n:\"28706024\",\"protected\":false,\"description\":\"it's all happening\",\"profile_u=\nse_background_image\":true,\"is_translator\":false,\"profile_text_color\":\"33333=\n3\",\"created_at\":\"Sat Apr 04 01:16:34 +0000 2009\",\"verified\":true,\"profile_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/549375583\\/Pinkdeborahand=\nerson_112_normal.jpg\",\"following\":false,\"screen_name\":\"Pink\",\"favourites_co=\nunt\":136,\"profile_sidebar_border_color\":\"DBE9ED\",\"contributors_enabled\":fal=\nse},{\"notifications\":false,\"default_profile_image\":false,\"name\":\"iTunes Mus=\nic\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"E0E0E0\",\"=\nfriends_count\":11,\"url\":\"http:\\/\\/t.co\\/fyXFRaLkOT\",\"id\":74580436,\"follower=\ns_count\":4459304,\"time_zone\":\"Pacific Time (US & Canada)\",\"profile_backgrou=\nnd_image_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_im=\nages\\/280868779\\/Twitter_Festival_Background.jpg\",\"entities\":{\"url\":{\"urls\"=\n:[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/fyXFRaLkOT\",\"display_url\":\"itunes=\n.com\\/music\",\"expanded_url\":\"http:\\/\\/itunes.com\\/music\"}]},\"description\":{=\n\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":null,\"retweeted\":false,\"i=\nd_str\":\"370032547616788480\",\"possibly_sensitive\":false,\"in_reply_to_status_=\nid\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\=\n/srm.vitrue.com\\\" rel=3D\\\"nofollow\\\"\\u003ESocial Publisher\\u003C\\/a\\u003E\",=\n\"geo\":null,\"favorited\":false,\"id\":370032547616788480,\"created_at\":\"Wed Aug =\n21 04:00:08 +0000 2013\",\"truncated\":false,\"possibly_sensitive_editable\":tru=\ne,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"text\":\"\\\"If =\nI leave here tomorrow, would you still remember me?\\\" @Skynyrd #EssentialAl=\nbums http:\\/\\/t.co\\/V3x1onFWOV\",\"coordinates\":null,\"retweet_count\":20,\"in_r=\neply_to_user_id_str\":null,\"entities\":{\"hashtags\":[{\"indices\":[66,82],\"text\"=\n:\"EssentialAlbums\"}],\"user_mentions\":[{\"id_str\":\"67686246\",\"screen_name\":\"S=\nkynyrd\",\"id\":67686246,\"indices\":[57,65],\"name\":\"Lynyrd Skynyrd\"}],\"urls\":[{=\n\"url\":\"http:\\/\\/t.co\\/V3x1onFWOV\",\"indices\":[83,105],\"display_url\":\"tw.itun=\nes.com\\/pTN\",\"expanded_url\":\"http:\\/\\/tw.itunes.com\\/pTN\"}]}},\"default_prof=\nile\":false,\"location\":\"Cupertino, CA \",\"profile_banner_url\":\"https:\\/\\/pbs.=\ntwimg.com\\/profile_banners\\/74580436\\/1367250070\",\"profile_background_color=\n\":\"EAEAEA\",\"statuses_count\":9572,\"lang\":\"en\",\"listed_count\":16206,\"utc_offs=\net\":-28800,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_b=\nackground_images\\/280868779\\/Twitter_Festival_Background.jpg\",\"geo_enabled\"=\n:false,\"profile_link_color\":\"0088CC\",\"follow_request_sent\":false,\"profile_i=\nmage_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/359164030=\n2\\/8c793512c36ba3d9573f85fda2617666_normal.png\",\"id_str\":\"74580436\",\"protec=\nted\":false,\"description\":null,\"profile_use_background_image\":false,\"is_tran=\nslator\":false,\"profile_text_color\":\"333333\",\"created_at\":\"Tue Sep 15 22:49:=\n25 +0000 2009\",\"verified\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_images\\/3591640302\\/8c793512c36ba3d9573f85fda2617666_normal.png\",\"f=\nollowing\":false,\"screen_name\":\"iTunesMusic\",\"favourites_count\":3,\"profile_s=\nidebar_border_color\":\"C7C7C7\",\"contributors_enabled\":false}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "54970", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:24 GMT", "etag": "\"2a19caf72ca519fac33d3d1163f656b6\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:23 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:23 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCClShJ9AAToHaWQiJWJiOWFiMjJlNmM5MjQ4%250AZWM5ODU5YzFhODQ3Y2ZiM2I4--aa2cc318e8c777ec650801f621faa6131ec6d876; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578382633119; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:24 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "84ddbc5d6565d9205e66d43be12b824a121935b3", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "14", "x-rate-limit-reset": "1377066683", "x-runtime": "0.28822", "x-transaction": "35265fdbf964980f", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/statuses/update.json?status=testing+1000" }, "response": { "body_quoted_printable": "{\"created_at\":\"Wed Aug 21 06:16:24 +0000 2013\",\"id\":370066839088291841,\"id_=\nstr\":\"370066839088291841\",\"text\":\"testing 1000\",\"source\":\"\\u003ca href=3D\\\"=\nhttp:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/=\na\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status=\n_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in=\n_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name=\n\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descri=\nption\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_u=\nrl\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descrip=\ntion\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10=\n,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites=\n_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo=\n_enabled\":true,\"verified\":false,\"statuses_count\":127,\"lang\":\"en\",\"contribut=\nors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background=\n_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_=\nbackground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/s=\ni0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_=\nurl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"prof=\nile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_s=\nidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_back=\nground_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"=\nfollowing\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":n=\null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"=\nfavorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_me=\nntions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"tl\"}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2156", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:24 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:24 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706578459648164; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:24 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-transaction": "709c4c83187286c5" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/statuses/destroy/370066839088291841.json" }, "response": { "body_quoted_printable": "{\"in_reply_to_status_id_str\":null,\"contributors\":null,\"place\":null,\"retweet=\ned\":false,\"id_str\":\"370066839088291841\",\"user\":{\"notifications\":false,\"defa=\nult_profile_image\":false,\"name\":\"Tweepy test 123\",\"profile_background_tile\"=\n:false,\"profile_sidebar_fill_color\":\"E0FF92\",\"friends_count\":10,\"url\":\"http=\n:\\/\\/t.co\\/3L9bWVrV0b\",\"id\":82301637,\"followers_count\":7,\"time_zone\":\"Centr=\nal Time (US & Canada)\",\"profile_background_image_url_https\":\"https:\\/\\/twim=\ng0-a.akamaihd.net\\/profile_background_images\\/394345638\\/test.jpg\",\"entitie=\ns\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"dis=\nplay_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]},\"description\":{\"ur=\nls\":[]}},\"default_profile\":false,\"location\":\"pytopia\",\"profile_banner_url\":=\n\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065546\",\"profile_b=\nackground_color\":\"FFFFFF\",\"statuses_count\":125,\"lang\":\"en\",\"listed_count\":0=\n,\"utc_offset\":-21600,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\=\n/profile_background_images\\/394345638\\/test.jpg\",\"geo_enabled\":true,\"profil=\ne_link_color\":\"0000FF\",\"follow_request_sent\":false,\"id_str\":\"82301637\",\"pro=\ntected\":false,\"is_translator\":false,\"description\":\"A test account for testi=\nng stuff.\",\"profile_use_background_image\":false,\"profile_text_color\":\"00000=\n0\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"verified\":false,\"profile_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.=\njpg\",\"following\":false,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.akamai=\nhd.net\\/profile_images\\/1733327710\\/test_normal.jpg\",\"screen_name\":\"tweepyt=\nest\",\"favourites_count\":2,\"profile_sidebar_border_color\":\"87BC44\",\"contribu=\ntors_enabled\":false},\"in_reply_to_user_id_str\":null,\"in_reply_to_status_id\"=\n:null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/tw=\neepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"g=\neo\":null,\"favorited\":false,\"id\":370066839088291841,\"created_at\":\"Wed Aug 21=\n 06:16:24 +0000 2013\",\"truncated\":false,\"in_reply_to_user_id\":null,\"text\":\"=\ntesting 1000\",\"coordinates\":null,\"retweet_count\":0,\"entities\":{\"hashtags\":[=\n],\"user_mentions\":[],\"urls\":[]}}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2128", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:25 GMT", "etag": "\"be3613061402505e5aac9b03323f7ba9\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:24 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:24 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCPtVhJ9AAToHaWQiJWViNDE5YmEzMDVjZWY5%250AZjg3ZGQyNzQ2NzNiMjRiYjMzOgxjc3JmX2lkIiVjMWNhYzMzZDhjYmFlMTZm%250AMzMyNTkyOGE4N2QzMmExNw%253D%253D--4cd2defe122b88efbe1e76c58a130fb0c7096ef8; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578481090885; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:25 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "3132e35db132f0d0abe02b4314a17f0e0a552b75", "x-runtime": "0.28831", "x-transaction": "e9127031cfdc1400", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/account/update_profile.json?location=pytopia&name=Tweepy+test+123&description=just+testing+things+out" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"profile_background_image_url_https\":\"https:\\/\\/twim=\ng0-a.akamaihd.net\\/profile_background_images\\/394345638\\/test.jpg\",\"follow_=\nrequest_sent\":false,\"id_str\":\"82301637\",\"default_profile\":false,\"name\":\"Twe=\nepy test 123\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banner=\ns\\/82301637\\/1377065546\",\"profile_use_background_image\":false,\"profile_text=\n_color\":\"000000\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"statuses_count\":125,\"id=\n\":82301637,\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"http:\\/\\/t.c=\no\\/3L9bWVrV0b\",\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/foo.com\"}]}=\n,\"description\":{\"urls\":[]}},\"status\":{\"place\":null,\"retweeted\":false,\"in_re=\nply_to_status_id_str\":null,\"in_reply_to_status_id\":null,\"truncated\":false,\"=\nin_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u00=\n3Ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003ETweepyT=\nravis\\u003C\\/a\\u003E\",\"geo\":null,\"favorited\":false,\"id\":369681207279108096,=\n\"created_at\":\"Tue Aug 20 04:44:02 +0000 2013\",\"contributors\":null,\"id_str\":=\n\"369681207279108096\",\"in_reply_to_user_id\":null,\"text\":\"OCkuXhbwKzAZnwuoJAJ=\naEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSODHhzMWwaltJhk\",\"co=\nordinates\":null,\"retweet_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[],\"user=\n_mentions\":[]}},\"listed_count\":0,\"location\":\"pytopia\",\"profile_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profil=\ne_sidebar_border_color\":\"87BC44\",\"contributors_enabled\":false,\"is_translato=\nr\":false,\"lang\":\"en\",\"utc_offset\":-21600,\"profile_background_tile\":false,\"p=\nrofile_sidebar_fill_color\":\"E0FF92\",\"time_zone\":\"Central Time (US & Canada)=\n\",\"protected\":false,\"followers_count\":7,\"description\":\"just testing things =\nout\",\"favourites_count\":2,\"profile_image_url_https\":\"https:\\/\\/twimg0-a.aka=\nmaihd.net\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_background=\n_color\":\"FFFFFF\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"default_pro=\nfile_image\":false,\"verified\":false,\"following\":false,\"screen_name\":\"tweepyt=\nest\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/394345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0=\n000FF\",\"friends_count\":10}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2197", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:25 GMT", "etag": "\"6da68a33f2f5e3f984d973ef0fa15d98\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:25 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:25 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCDRZhJ9AAToHaWQiJWY0NDY1ZGYyZjkwODQ5%250AMmE0OWE3ZGFjMWFiNjIwM2Vh--644c397942a234ec63d2f99675c55b9d2e0f6b3a; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578557130715; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:25 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "ea96479e69c1b064b9c607213d9a8fe6838cd25f", "x-runtime": "0.18675", "x-transaction": "0addf309d5b3eff3", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/account/update_profile.json?url=http%3A%2F%2Ft.co%2F3L9bWVrV0b&location=pytopia&description=A+test+account+for+testing+stuff.&name=Tweepy+test+123" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Tweepy test 12=\n3\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"E0FF92\",\"f=\nriends_count\":10,\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"id\":82301637,\"followers=\n_count\":7,\"time_zone\":\"Central Time (US & Canada)\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"htt=\np:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/fo=\no.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":=\nnull,\"retweeted\":false,\"id_str\":\"369681207279108096\",\"in_reply_to_status_id=\n\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/t=\nweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"=\ngeo\":null,\"favorited\":false,\"id\":369681207279108096,\"created_at\":\"Tue Aug 2=\n0 04:44:02 +0000 2013\",\"truncated\":false,\"in_reply_to_status_id_str\":null,\"=\nin_reply_to_user_id\":null,\"text\":\"OCkuXhbwKzAZnwuoJAJaEiawypIdmWuipZOIJrbOG=\ngbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSODHhzMWwaltJhk\",\"coordinates\":null,\"retwe=\net_count\":0,\"in_reply_to_user_id_str\":null,\"entities\":{\"user_mentions\":[],\"=\nhashtags\":[],\"urls\":[]}},\"default_profile\":false,\"location\":\"pytopia\",\"prof=\nile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137706=\n5546\",\"profile_background_color\":\"FFFFFF\",\"statuses_count\":125,\"lang\":\"en\",=\n\"listed_count\":0,\"utc_offset\":-21600,\"profile_background_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"geo_enabl=\ned\":true,\"profile_link_color\":\"0000FF\",\"is_translator\":false,\"follow_reques=\nt_sent\":false,\"id_str\":\"82301637\",\"protected\":false,\"description\":\"A test a=\nccount for testing stuff.\",\"profile_image_url_https\":\"https:\\/\\/twimg0-a.ak=\namaihd.net\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_use_backg=\nround_image\":false,\"profile_text_color\":\"000000\",\"created_at\":\"Wed Oct 14 0=\n7:28:20 +0000 2009\",\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"following\":false,\"scree=\nn_name\":\"tweepytest\",\"favourites_count\":2,\"profile_sidebar_border_color\":\"8=\n7BC44\",\"contributors_enabled\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2207", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:26 GMT", "etag": "\"f070f4e65312f23f6879ccce0189d112\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:26 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:26 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCD1bhJ9AAToHaWQiJTFlMWMxYmJiOTYyNTcw%250AY2UyNjcxOTRkN2U3MTQ5MzA0--a0852d46fe0aaef4f88b7442159907a88b98d42f; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706578615256421; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:26 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "5b23e946d358cb27839a05ccb36cb38e47fa2580", "x-runtime": "0.13787", "x-transaction": "bee4fe0354e49a25", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": "", "headers": { "Accept-Encoding": "identity", "Content-Length": "3974", "Content-Type": "multipart/form-data; boundary=Tw3ePy", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/account/update_profile_banner.json" }, "response": { "body_quoted_printable": "", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "0", "content-type": "text/html;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:26 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:26 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706578654801691; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:26 UTC", "status": "201 Created", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-transaction": "51bd468252649e1d", "x-xss-protection": "1; mode=block" }, "status": { "code": 201, "message": "Created" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/account/update_profile_colors.json?profile_text_color=000&profile_sidebar_border_color=000&profile_sidebar_fill_color=000&profile_link_color=000&profile_background_color=000" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Tweepy test 12=\n3\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"000000\",\"f=\nriends_count\":10,\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"id\":82301637,\"followers=\n_count\":7,\"time_zone\":\"Central Time (US & Canada)\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"htt=\np:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/fo=\no.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"contributors\":null,\"place\":=\nnull,\"retweeted\":false,\"id_str\":\"369681207279108096\",\"in_reply_to_status_id=\n\":null,\"in_reply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/t=\nweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"=\nin_reply_to_status_id_str\":null,\"geo\":null,\"favorited\":false,\"id\":369681207=\n279108096,\"created_at\":\"Tue Aug 20 04:44:02 +0000 2013\",\"in_reply_to_user_i=\nd_str\":null,\"truncated\":false,\"in_reply_to_user_id\":null,\"text\":\"OCkuXhbwKz=\nAZnwuoJAJaEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSODHhzMWwal=\ntJhk\",\"coordinates\":null,\"retweet_count\":0,\"entities\":{\"user_mentions\":[],\"=\nhashtags\":[],\"urls\":[]}},\"default_profile\":false,\"location\":\"pytopia\",\"prof=\nile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137706=\n5786\",\"profile_background_color\":\"000000\",\"statuses_count\":126,\"profile_ima=\nge_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1733327710\\=\n/test_normal.jpg\",\"lang\":\"en\",\"listed_count\":0,\"utc_offset\":-21600,\"profile=\n_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"000000\",\"follo=\nw_request_sent\":false,\"id_str\":\"82301637\",\"protected\":false,\"description\":\"=\nA test account for testing stuff.\",\"profile_use_background_image\":false,\"pr=\nofile_text_color\":\"000000\",\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"i=\ns_translator\":false,\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"following\":false,\"scree=\nn_name\":\"tweepytest\",\"favourites_count\":2,\"profile_sidebar_border_color\":\"0=\n00000\",\"contributors_enabled\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2207", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:42 GMT", "etag": "\"a19cb933573758f67d2a1d31c658d6ae\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:42 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:42 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCIOahJ9AAToHaWQiJTJmZjM1Y2VlNmFmNGI1%250ANmNhNmMxNjdiM2ExOGI3NDY0--f922bffdb02be107d0b07c37907fc4c8efe48174; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706580234122635; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:42 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "544436db70ef7d5ad04692ce144fab1ab770cbc8", "x-runtime": "0.19757", "x-transaction": "f1ac6b964e36fb46", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "POST", "port": 443, "url": "/1.1/account/update_profile_colors.json?profile_text_color=000000&profile_sidebar_border_color=87BC44&profile_sidebar_fill_color=E0FF92&profile_link_color=0000FF&profile_background_color=FFFFFF" }, "response": { "body_quoted_printable": "{\"notifications\":false,\"default_profile_image\":false,\"name\":\"Tweepy test 12=\n3\",\"profile_background_tile\":false,\"profile_sidebar_fill_color\":\"E0FF92\",\"f=\nriends_count\":10,\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"id\":82301637,\"followers=\n_count\":7,\"time_zone\":\"Central Time (US & Canada)\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"entities\":{\"url\":{\"urls\":[{\"indices\":[0,22],\"url\":\"htt=\np:\\/\\/t.co\\/3L9bWVrV0b\",\"display_url\":\"foo.com\",\"expanded_url\":\"http:\\/\\/fo=\no.com\"}]},\"description\":{\"urls\":[]}},\"status\":{\"in_reply_to_status_id_str\":=\nnull,\"contributors\":null,\"place\":null,\"retweeted\":false,\"id_str\":\"369681207=\n279108096\",\"in_reply_to_user_id_str\":null,\"in_reply_to_status_id\":null,\"in_=\nreply_to_screen_name\":null,\"source\":\"\\u003Ca href=3D\\\"http:\\/\\/tweepy.githu=\nb.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003ETweepyTravis\\u003C\\/a\\u003E\",\"geo\":null,\"=\nfavorited\":false,\"id\":369681207279108096,\"created_at\":\"Tue Aug 20 04:44:02 =\n+0000 2013\",\"truncated\":false,\"in_reply_to_user_id\":null,\"text\":\"OCkuXhbwKz=\nAZnwuoJAJaEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSODHhzMWwal=\ntJhk\",\"coordinates\":null,\"retweet_count\":0,\"entities\":{\"user_mentions\":[],\"=\nhashtags\":[],\"urls\":[]}},\"default_profile\":false,\"profile_image_url_https\":=\n\"https:\\/\\/twimg0-a.akamaihd.net\\/profile_images\\/1733327710\\/test_normal.j=\npg\",\"location\":\"pytopia\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/pro=\nfile_banners\\/82301637\\/1377065786\",\"profile_background_color\":\"FFFFFF\",\"st=\natuses_count\":126,\"lang\":\"en\",\"listed_count\":0,\"utc_offset\":-21600,\"profile=\n_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/3=\n94345638\\/test.jpg\",\"geo_enabled\":true,\"profile_link_color\":\"0000FF\",\"follo=\nw_request_sent\":false,\"id_str\":\"82301637\",\"protected\":false,\"description\":\"=\nA test account for testing stuff.\",\"profile_use_background_image\":false,\"pr=\nofile_text_color\":\"000000\",\"is_translator\":false,\"created_at\":\"Wed Oct 14 0=\n7:28:20 +0000 2009\",\"verified\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"following\":false,\"scree=\nn_name\":\"tweepytest\",\"favourites_count\":2,\"profile_sidebar_border_color\":\"8=\n7BC44\",\"contributors_enabled\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2207", "content-type": "application/json; charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:42 GMT", "etag": "\"c07b5f3e2ba72d19ee2fe0c69f629cf1\"", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:42 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "dnt=1; domain=.twitter.com; path=/; expires=Mon, 21-Aug-2023 18:16:42 GMT, pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT, lang=en; path=/, lang=en; path=/, lang=en; path=/, twid=u%3D82301637%7CC4vLyBO04ZTRgFoYdu8kf7cmRFU%3D; domain=.twitter.com; path=/; secure, _twitter_sess=BAh7BzoPY3JlYXRlZF9hdGwrCBichJ9AAToHaWQiJThkODViOGY0MmViMzYy%250AMTlhYjliY2E5ZTczZTk3OTFi--40e92cfb8bd0eb1a83f5c860c9fc1dca282027b2; domain=.twitter.com; path=/; secure; HttpOnly, guest_id=v1%3A137706580274989269; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:42 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "vary": "Accept-Encoding", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-mid": "9e0cb8c442d19e8acedd4d4adc7d8531a98e9eab", "x-runtime": "0.17307", "x-transaction": "8d077f28a3497228", "x-transaction-mask": "a6183ffa5f8ca943ff1b53b5644ef114fa4f85f5", "x-xss-protection": "1; mode=block" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/user_timeline.json" }, "response": { "body_quoted_printable": "[{\"created_at\":\"Tue Aug 20 04:44:02 +0000 2013\",\"id\":369681207279108096,\"id=\n_str\":\"369681207279108096\",\"text\":\"OCkuXhbwKzAZnwuoJAJaEiawypIdmWuipZOIJrbO=\nGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSODHhzMWwaltJhk\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u0=\n03c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nul=\nl,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",=\n\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"d=\nescription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bW=\nVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expan=\nded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"de=\nscription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_coun=\nt\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favou=\nrites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\"=\n,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"cont=\nributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F=\nFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pro=\nfile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",=\n\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"prof=\nile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use=\n_background_image\":false,\"default_profile\":false,\"default_profile_image\":fa=\nlse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"us=\ner_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created=\n_at\":\"Mon Aug 19 23:13:16 +0000 2013\",\"id\":369597966987706368,\"id_str\":\"369=\n597966987706368\",\"text\":\"kzvTktRDiBsdXfJkZbuNYYMAVoGwtPJTdmZdBPGADhylGsVhEc=\ncrAYzCnDvowdluYPCWrfeFuBHYAGYlRbaoHoHvmufkeUOLvwhu\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u0=\n03c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nul=\nl,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",=\n\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"d=\nescription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bW=\nVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expan=\nded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"de=\nscription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_coun=\nt\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favou=\nrites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\"=\n,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"cont=\nributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F=\nFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pro=\nfile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",=\n\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"prof=\nile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use=\n_background_image\":false,\"default_profile\":false,\"default_profile_image\":fa=\nlse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"us=\ner_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created=\n_at\":\"Mon Aug 19 22:59:26 +0000 2013\",\"id\":369594486042546177,\"id_str\":\"369=\n594486042546177\",\"text\":\"oVfcMDZYbybbBPBZKdCtDflExLcjYIrLTpUdznGtoBsGKkgqEQ=\nKFIgcKbWsxleEYrupSmHoKJjLRTwJKckQTqtKEvYNiSzFwjHi\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u0=\n03c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nul=\nl,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",=\n\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"d=\nescription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bW=\nVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expan=\nded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"de=\nscription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_coun=\nt\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favou=\nrites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\"=\n,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"cont=\nributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F=\nFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pro=\nfile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",=\n\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"prof=\nile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use=\n_background_image\":false,\"default_profile\":false,\"default_profile_image\":fa=\nlse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"us=\ner_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created=\n_at\":\"Mon Aug 19 22:36:59 +0000 2013\",\"id\":369588836549943297,\"id_str\":\"369=\n588836549943297\",\"text\":\"DcKybuufNsKVjZNVZxuuKZXRaIilFUCIzriAaExBaXqPkZsrCA=\nMAHRTJfoaBFxrbyFNrJYiBj\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.=\ncom\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":fa=\nlse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply=\n_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":=\nnull,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"sc=\nreen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account =\nfor testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"u=\nrls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",=\n\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"pro=\ntected\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"crea=\nted_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":=\n-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verifie=\nd\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_=\ntranslator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_i=\nmage_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/tes=\nt.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_background_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,=\n\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/tes=\nt_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_i=\nmages\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twi=\nmg.com\\/profile_banners\\/82301637\\/1377065786\",\"profile_link_color\":\"0000FF=\n\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0F=\nF92\",\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"de=\nfault_profile\":false,\"default_profile_image\":false,\"following\":false,\"follo=\nw_request_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,=\n\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"enti=\nties\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\"=\n:false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Aug 19 19:36:20 +0=\n000 2013\",\"id\":369543374195273728,\"id_str\":\"369543374195273728\",\"text\":\"pPz=\nBiOhukgKVmRzJHfLmDJLViAAZdKStpqcEbWPWJCTZucwYhWwDoiENfHZnrEdvWXTLTFPZMIYgzZ=\nIKBVRhSontxzpJoubDFCKNCTspphbtNhjuFjnyOytJstSPxB\",\"source\":\"\\u003ca href=3D=\n\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c=\n\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_stat=\nus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"=\nin_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"na=\nme\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"desc=\nription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV=\n0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded=\n_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descr=\niption\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":=\n10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourit=\nes_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"g=\neo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contrib=\nutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFF=\nFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgrou=\nnd_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https=\n:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profil=\ne_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banne=\nr_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",\"pr=\nofile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile=\n_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_ba=\nckground_image\":false,\"default_profile\":false,\"default_profile_image\":false=\n,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\"=\n:null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0=\n,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_=\nmentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created_at=\n\":\"Mon Aug 19 19:25:36 +0000 2013\",\"id\":369540672715386881,\"id_str\":\"369540=\n672715386881\",\"text\":\"ruuhMOjpwvpxjRCTSlaJEOwReGVTLLnpegiYJhkYTfmunnQdMfHNP=\nKusPMxsOfmAfcNONqUdlUhobQXGLNFLAVMSDlJEUCvFkeIQcOTCQdpJYSWugQJxkRgx\",\"sourc=\ne\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003=\neTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":nul=\nl,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_=\nuser_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_=\nstr\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"locati=\non\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http=\n:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L=\n9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indice=\ns\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\"=\n:7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0=\n000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Tim=\ne (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"=\nlang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_back=\nground_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_background_imag=\ne_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638=\n\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_ur=\nl_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.=\njpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/823016=\n37\\/1377065786\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color=\n\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"0000=\n00\",\"profile_use_background_image\":false,\"default_profile\":false,\"default_p=\nrofile_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifica=\ntions\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":nul=\nl,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":=\n[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\"=\n:\"en\"},{\"created_at\":\"Mon Aug 19 19:20:44 +0000 2013\",\"id\":3695394488720015=\n36,\"id_str\":\"369539448872001536\",\"text\":\"uygVhLGZgiGvnMnVIKyVUGfAUTUuTrETuj=\ngaJnCJhyUHgPWnElPxlDFRNGSpvbyIREkDkjqqRBuPKVctPQVXvRBluLLdPfRDorVqGdJAprCZ\"=\n,\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow=\n\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_=\nid\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_re=\nply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":823016=\n37,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",=\n\"location\":\"pytopia\",\"description\":\"A test account for testing stuff.\",\"url=\n\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t=\n.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",=\n\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers=\n_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:2=\n8:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Cent=\nral Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count=\n\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profi=\nle_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.t=\nwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgrou=\nnd_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/39=\n4345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"htt=\np:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_i=\nmage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_=\nnormal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\=\n/82301637\\/1377065786\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_borde=\nr_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color=\n\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":false,\"de=\nfault_profile_image\":false,\"following\":false,\"follow_request_sent\":false,\"n=\notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributo=\nrs\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"sy=\nmbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false=\n,\"lang\":\"en\"},{\"created_at\":\"Sat Aug 17 20:47:44 +0000 2013\",\"id\":368836563=\n553112064,\"id_str\":\"368836563553112064\",\"text\":\"cnfLYiGbgrXNeRkntTTJOtbASiN=\nmQUWJJMOYJdpxbwtmfYpVvJMDQwoDWzBFzGsEgzROBfusJsizrHGOyQaonvFsBMCEHShkkeJXCT=\nlkQvtXOhDJfnsPLAFy\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/=\n\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"=\nin_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_u=\nser_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,=\n\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_=\nname\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for t=\nesting stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":=\n[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"disp=\nlay_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protecte=\nd\":false,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_a=\nt\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-1800=\n0,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":fa=\nlse,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_trans=\nlator\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg=\n\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ba=\nckground_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"prof=\nile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_nor=\nmal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.co=\nm\\/profile_banners\\/82301637\\/1377065786\",\"profile_link_color\":\"0000FF\",\"pr=\nofile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",=\n\"profile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default=\n_profile\":false,\"default_profile_image\":false,\"following\":false,\"follow_req=\nuest_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"plac=\ne\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\"=\n:{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":fals=\ne,\"retweeted\":false,\"lang\":\"sk\"},{\"created_at\":\"Sat Aug 17 20:39:17 +0000 2=\n013\",\"id\":368834440450932737,\"id_str\":\"368834440450932737\",\"text\":\"TrHBlQtH=\nFMmAAXmVkuAqnVAtdFGYbpAJTEMUtlhzLCQlTKhoreKnpEfQlyWGourcIyUntl\",\"source\":\"\\=\nu003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTwee=\npyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in=\n_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_=\nid_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":=\n\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"=\npytopia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/=\nt.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVr=\nV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0=\n,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"f=\nriends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2=\n009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US=\n & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\"=\n:\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgroun=\nd_color\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pr=\nofile_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/tes=\nt.jpg\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",=\n\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1=\n377065786\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87=\nBC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"=\nprofile_use_background_image\":false,\"default_profile\":false,\"default_profil=\ne_image\":false,\"following\":false,\"follow_request_sent\":false,\"notifications=\n\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"re=\ntweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"u=\nrls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"=\n},{\"created_at\":\"Sat Aug 17 19:48:56 +0000 2013\",\"id\":368821769420800001,\"i=\nd_str\":\"368821769420800001\",\"text\":\"DCStpZhNKiEKYcYDAvztRftvQQdeNraScYJHuFU=\nDTuIdTjdcEFrLZPrmfidguXZZcfifqyYjSYbUKd\",\"source\":\"\\u003ca href=3D\\\"http:\\/=\n\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e=\n\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str=\n\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_=\nto_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Twee=\npy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"description\":=\n\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"ht=\ntp:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{=\n\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"liste=\nd_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\"=\n:2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_enable=\nd\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributors_ena=\nbled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"prof=\nile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images=\n\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_backgro=\nund_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\=\n/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twim=\ng.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url\":\"h=\nttps:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",\"profile_lin=\nk_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sidebar_=\nfill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_background_=\nimage\":false,\"default_profile\":false,\"default_profile_image\":false,\"followi=\nng\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":null,\"co=\nordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorit=\ne_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\"=\n:[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created_at\":\"Sat Au=\ng 17 19:10:40 +0000 2013\",\"id\":368812136983580672,\"id_str\":\"368812136983580=\n672\",\"text\":\"tnDCDyXRRuXSmSQGVqGFVLNMNvmJprswuOyCskTLpaFrDIPyciOqaUmzcKfZZp=\nbUwNsNLoUbQoOiRKNCSaBGJbYZHWNikErbyfZoceFAmWjYgqNYWjEp\",\"source\":\"\\u003ca h=\nref=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis=\n\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_t=\no_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":=\nnull,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"8230163=\n7\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\"=\n,\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L=\n9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"ex=\npanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},=\n\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_c=\nount\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"fa=\nvourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canad=\na)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"c=\nontributors_enabled\":false,\"is_translator\":false,\"profile_background_color\"=\n:\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ba=\nckground_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"=\nprofile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/=\nprofile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile=\n_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137706578=\n6\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"p=\nrofile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_=\nuse_background_image\":false,\"default_profile\":false,\"default_profile_image\"=\n:false,\"following\":false,\"follow_request_sent\":false,\"notifications\":false}=\n,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_co=\nunt\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],=\n\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"crea=\nted_at\":\"Sat Aug 17 18:38:24 +0000 2013\",\"id\":368804019130470402,\"id_str\":\"=\n368804019130470402\",\"text\":\"ETUOCUYkiFciRMakwYDhqjwxQHPbDSGbUNdSFIOWrjwnwFI=\njgnRKHAaumndCWMSxYoXaagoJWhHyqobtUluMyXaEqLoTe\",\"source\":\"\\u003ca href=3D\\\"=\nhttp:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/=\na\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status=\n_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in=\n_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name=\n\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descri=\nption\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_u=\nrl\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descrip=\ntion\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10=\n,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites=\n_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo=\n_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contribut=\nors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background=\n_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\=\n/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_=\nbackground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_=\nimages\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/s=\ni0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_=\nurl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",\"prof=\nile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_s=\nidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_back=\nground_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"=\nfollowing\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":n=\null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"=\nfavorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_me=\nntions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"created_at\":=\n\"Sat Aug 17 09:50:03 +0000 2013\",\"id\":368671052508823552,\"id_str\":\"36867105=\n2508823552\",\"text\":\"pHtGoRLtEecFPwhgZRFgPXIivICIjeqerTnBNzEBCqItvwEVJNbGPTh=\nklyxqbksuTIciWk\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" =\nrel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_=\nreply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user=\n_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"us=\ner\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_nam=\ne\":\"tweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for test=\ning stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"=\nurl\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display=\n_url\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":=\nfalse,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":=\n\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"=\ntime_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false=\n,\"statuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translat=\nor\":false,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"=\nprofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backg=\nround_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile=\n_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal=\n.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/1=\n733327710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/=\nprofile_banners\\/82301637\\/1377065786\",\"profile_link_color\":\"0000FF\",\"profi=\nle_sidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"pr=\nofile_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_pr=\nofile\":false,\"default_profile_image\":false,\"following\":false,\"follow_reques=\nt_sent\":false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":=\nnull,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"=\nhashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"=\nretweeted\":false,\"lang\":\"sk\"},{\"created_at\":\"Sat Aug 17 09:30:39 +0000 2013=\n\",\"id\":368666173350494208,\"id_str\":\"368666173350494208\",\"text\":\"lLOggdSvpag=\ngCxTOEBGaNTqItbIFirnlhGFYHTJtsyHCwmXqhPNinMlQhXNOOeuozHVezXnDjOZbSGuWQaVJhG=\nmULmMngnxZvzmVQPNETmTEXWNFJTZVpqqFGlVXhiQjdgt\",\"source\":\"\\u003ca href=3D\\\"h=\nttp:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a=\n\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_=\nid_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_=\nreply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\"=\n:\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descrip=\ntion\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\"=\n,\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_ur=\nl\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descript=\nion\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,=\n\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_=\ncount\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_=\nenabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributo=\nrs_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\"=\n,\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_=\nimages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_b=\nackground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_i=\nmages\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si=\n0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_u=\nrl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",\"profi=\nle_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_si=\ndebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backg=\nround_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"f=\nollowing\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":nu=\nll,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"f=\navorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_men=\ntions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"=\nSat Aug 17 07:58:07 +0000 2013\",\"id\":368642886750846976,\"id_str\":\"368642886=\n750846976\",\"text\":\"vogcHEnVgjBvpjVxxmerfIWimwYSszqhwThVdacMoSayGHQfeahHeqno=\nuNGlqUAiMLfAQaLjiCkAoxsykSwcaVrcvyjWhcowFsmElzTaJJGvaHwlQDZiTQznDJhRRsQBkJv=\nfsgrQhaa\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\=\n\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_t=\no_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nu=\nll,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"i=\nd\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"twe=\nepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing stu=\nff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"h=\nttp:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"=\nfoo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"=\nfollowers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oc=\nt 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time_zo=\nne\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"statu=\nses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":fal=\nse,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile=\n_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_i=\nmages\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"=\nprofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/17333277=\n10\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile=\n_banners\\/82301637\\/1377065786\",\"profile_link_color\":\"0000FF\",\"profile_side=\nbar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_t=\next_color\":\"000000\",\"profile_use_background_image\":false,\"default_profile\":=\nfalse,\"default_profile_image\":false,\"following\":false,\"follow_request_sent\"=\n:false,\"notifications\":false},\"geo\":null,\"coordinates\":null,\"place\":null,\"c=\nontributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtag=\ns\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweet=\ned\":false,\"lang\":\"sk\"},{\"created_at\":\"Sat Aug 17 07:13:57 +0000 2013\",\"id\":=\n368631771803316224,\"id_str\":\"368631771803316224\",\"text\":\"VvHRDaIcTXXTfJJMjI=\ndMDFMMTitakvMCxKTeleIiHDbNWgjIHSGfIvGZkAXZKjDnrcHDyVn\",\"source\":\"\\u003ca hr=\nef=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\=\nu003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to=\n_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":n=\null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637=\n\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",=\n\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9=\nbWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"exp=\nanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"=\ndescription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_co=\nunt\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"fav=\nourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada=\n)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"co=\nntributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":=\n\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_bac=\nkground_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"p=\nrofile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"http=\ns:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_=\nbanner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786=\n\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"pr=\nofile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_u=\nse_background_image\":false,\"default_profile\":false,\"default_profile_image\":=\nfalse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},=\n\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_cou=\nnt\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"=\nuser_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"creat=\ned_at\":\"Sat Aug 17 05:48:00 +0000 2013\",\"id\":368610141626572800,\"id_str\":\"3=\n68610141626572800\",\"text\":\"SeZGYFmcUKvsFFgltAoUWJmYDjRwdfxcWwYolnULMPpzdHmK=\nvPITeXOoKONYndbhoWUZaWbZfyZnkVtTNwlVaxLeYyglhtctYez\",\"source\":\"\\u003ca href=\n=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u0=\n03c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_s=\ntatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nul=\nl,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",=\n\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"d=\nescription\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bW=\nVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expan=\nded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"de=\nscription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_coun=\nt\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favou=\nrites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\"=\n,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"cont=\nributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F=\nFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backg=\nround_images\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"ht=\ntps:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"pro=\nfile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/pro=\nfile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",=\n\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"prof=\nile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use=\n_background_image\":false,\"default_profile\":false,\"default_profile_image\":fa=\nlse,\"following\":false,\"follow_request_sent\":false,\"notifications\":false},\"g=\neo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count=\n\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"us=\ner_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created=\n_at\":\"Sat Aug 17 05:33:53 +0000 2013\",\"id\":368606589147561985,\"id_str\":\"368=\n606589147561985\",\"text\":\"nBCjhbmhVozRLwCBxamhFQyMICBmrCaeeKSAaZyvfhsRTPDnPK=\nNutYWHMmBmSNxUXSpOPlUTuTcEJaAInZUwxtgWwdYoMk\",\"source\":\"\\u003ca href=3D\\\"ht=\ntp:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\=\nu003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_i=\nd_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_r=\neply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"82301637\",\"name\":=\n\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytopia\",\"descript=\nion\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",=\n\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url=\n\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}]},\"descripti=\non\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friends_count\":10,\"=\nlisted_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",\"favourites_c=\nount\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Canada)\",\"geo_e=\nnabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\",\"contributor=\ns_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_ba=\nckground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_im=\nages\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_ur=\nl\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",\"profil=\ne_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_sid=\nebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgr=\nound_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"fo=\nllowing\":false,\"follow_request_sent\":false,\"notifications\":false},\"geo\":nul=\nl,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"fa=\nvorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_ment=\nions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"S=\nat Aug 17 03:19:57 +0000 2013\",\"id\":368572882051289089,\"id_str\":\"3685728820=\n51289089\",\"text\":\"QOgVfzAuabybmvqBhqktkePfSgSrSPkAxvQOINkvndWXcssmlklwLYwYI=\nwvupYOUDOfEaoNiSHZWSllYBHxLjrltjIsnHFRtRtYZggHOyzKAWltqOdl\",\"source\":\"\\u003=\nca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTr=\navis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_rep=\nly_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_s=\ntr\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"823=\n01637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pyto=\npia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co=\n\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\"=\n,\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]=\n}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"frien=\nds_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\"=\n,\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & C=\nanada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en=\n\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_co=\nlor\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jp=\ng\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"pro=\nfile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/13770=\n65786\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44=\n\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"prof=\nile_use_background_image\":false,\"default_profile\":false,\"default_profile_im=\nage\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":fa=\nlse},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retwee=\nt_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\"=\n:[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},{\"=\ncreated_at\":\"Thu Aug 15 05:50:55 +0000 2013\",\"id\":367886097419743232,\"id_st=\nr\":\"367886097419743232\",\"text\":\"VdLOLdAJsSObibfnFbAAUZHXqYHPHmGjLTPxGxUFGsT=\nUbhPBxzCISNTsjHXUEopYNQIFpDpWWzDECpRsIQtpQxNYzZEbjCghqOyW\",\"source\":\"\\u003c=\na href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=3D\\\"nofollow\\\"\\u003eTweepyTra=\nvis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_repl=\ny_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_st=\nr\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":82301637,\"id_str\":\"8230=\n1637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"tweepytest\",\"location\":\"pytop=\nia\",\"description\":\"A test account for testing stuff.\",\"url\":\"http:\\/\\/t.co\\=\n/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",=\n\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url\":\"foo.com\",\"indices\":[0,22]}=\n]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":7,\"friend=\ns_count\":10,\"listed_count\":0,\"created_at\":\"Wed Oct 14 07:28:20 +0000 2009\",=\n\"favourites_count\":2,\"utc_offset\":-18000,\"time_zone\":\"Central Time (US & Ca=\nnada)\",\"geo_enabled\":true,\"verified\":false,\"statuses_count\":126,\"lang\":\"en\"=\n,\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_col=\nor\":\"FFFFFF\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_background_images\\/394345638\\/test.jpg\",\"profile_background_image_url_http=\ns\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg=\n\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.co=\nm\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"=\nhttps:\\/\\/si0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"prof=\nile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/137706=\n5786\",\"profile_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\"=\n,\"profile_sidebar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profi=\nle_use_background_image\":false,\"default_profile\":false,\"default_profile_ima=\nge\":false,\"following\":false,\"follow_request_sent\":false,\"notifications\":fal=\nse},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet=\n_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":=\n[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"en\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "44912", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:43 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:43 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706580343426371; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:43 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "179", "x-rate-limit-reset": "1377066703", "x-transaction": "add66b2f8b58be79" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/statuses/user_timeline.json?id=twitter" }, "response": { "body_quoted_printable": "[{\"created_at\":\"Tue Aug 20 20:13:06 +0000 2013\",\"id\":369915012157943808,\"id=\n_str\":\"369915012157943808\",\"text\":\"RT @vineapp: We've said this before and =\nwe'll say it again: this community - now more than 40 million of you - is a=\nmazing. Thank you for in\\u2026\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.twe=\netdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":=\nfalse,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_rep=\nly_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name=\n\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\"=\n:\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your official sour=\nce for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iR=\nhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"exp=\nanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"=\nindices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_=\ncount\":22601500,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue =\nFeb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time=\n_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"sta=\ntuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":=\nfalse,\"profile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ij=\nhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/p=\nrofile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_bac=\nkground_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_imag=\nes\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_=\nnormal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\=\n/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_=\ncolor\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":=\n\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"defau=\nlt_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notif=\nications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":n=\null,\"retweeted_status\":{\"created_at\":\"Tue Aug 20 20:00:06 +0000 2013\",\"id\":=\n369911739782946816,\"id_str\":\"369911739782946816\",\"text\":\"We've said this be=\nfore and we'll say it again: this community - now more than 40 million of y=\nou - is amazing. Thank you for inspiring us.\",\"source\":\"\\u003ca href=3D\\\"ht=\ntp:\\/\\/itunes.apple.com\\/us\\/app\\/twitter\\/id409789998?mt=3D12\\\" rel=3D\\\"no=\nfollow\\\"\\u003eTwitter for Mac\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_t=\no_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":nu=\nll,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"i=\nd\":586671909,\"id_str\":\"586671909\",\"name\":\"Vine\",\"screen_name\":\"vineapp\",\"lo=\ncation\":\"\",\"description\":\"Vine is a new app for sharing short, looping vide=\nos. It's free for iPhone or Android.\",\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"en=\ntities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/HLAhG6mqQx\",\"expanded_url\":\"=\nhttp:\\/\\/vine.co\",\"display_url\":\"vine.co\",\"indices\":[0,22]}]},\"description\"=\n:{\"urls\":[]}},\"protected\":false,\"followers_count\":3880710,\"friends_count\":1=\n0,\"listed_count\":2165,\"created_at\":\"Mon May 21 14:34:36 +0000 2012\",\"favour=\nites_count\":64,\"utc_offset\":-10800,\"time_zone\":\"Atlantic Time (Canada)\",\"ge=\no_enabled\":true,\"verified\":true,\"statuses_count\":135,\"lang\":\"en\",\"contribut=\nors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F1F1EC=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/th=\neme17\\/bg.gif\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/images\\/themes\\/theme17\\/bg.gif\",\"profile_background_tile\":false,\"profil=\ne_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6=\nfe5d477e48a63047e38ce7_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/3578238864\\/50d7e05aa6fe5d477e48a63047e38ce7_no=\nrmal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/5=\n86671909\\/1358910416\",\"profile_link_color\":\"00B386\",\"profile_sidebar_border=\n_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\"=\n:\"333333\",\"profile_use_background_image\":false,\"default_profile\":false,\"def=\nault_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"not=\nifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\"=\n:null,\"retweet_count\":603,\"favorite_count\":518,\"entities\":{\"hashtags\":[],\"s=\nymbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":fals=\ne,\"lang\":\"en\"},\"retweet_count\":603,\"favorite_count\":0,\"entities\":{\"hashtags=\n\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"vineapp\",\"name=\n\":\"Vine\",\"id\":586671909,\"id_str\":\"586671909\",\"indices\":[3,11]}]},\"favorited=\n\":false,\"retweeted\":false,\"lang\":\"en\"},{\"created_at\":\"Mon Aug 19 19:56:57 +=\n0000 2013\",\"id\":369548560825450497,\"id_str\":\"369548560825450497\",\"text\":\"Ne=\nw headlines feature shows stories related to tweets: https:\\/\\/t.co\\/RJO1yD=\n9MvG\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_rep=\nly_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_s=\ntr\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"78321=\n4\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",=\n\"description\":\"Your official source for news, updates and tips from Twitter=\n, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"=\ndisplay_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[=\n]}},\"protected\":false,\"followers_count\":22601500,\"friends_count\":131,\"liste=\nd_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_co=\nunt\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_e=\nnabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributor=\ns_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",=\n\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_i=\nmages\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqe=\ny5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"ht=\ntp:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_norma=\nl.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/=\n2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/=\n\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":=\n\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_colo=\nr\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":tr=\nue,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"=\nfollow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":n=\null,\"place\":null,\"contributors\":null,\"retweet_count\":234,\"favorite_count\":1=\n40,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/R=\nJO1yD9MvG\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/new-headlines-=\nfeature-offers-story-behind-the-tweet\",\"display_url\":\"blog.twitter.com\\/201=\n3\\/new-headl\\u2026\",\"indices\":[55,78]}],\"user_mentions\":[]},\"favorited\":fal=\nse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":=\n\"Sat Aug 17 00:53:10 +0000 2013\",\"id\":368535944636293121,\"id_str\":\"36853594=\n4636293121\",\"text\":\"via @twittereng: A very detailed look at re-architectin=\ng the Twitter platform + a new Tweets-per-second peak: https:\\/\\/t.co\\/0RfH=\nOCY430\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_r=\neply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id=\n_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783=\n214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA=\n\",\"description\":\"Your official source for news, updates and tips from Twitt=\ner, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\"=\n,\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\"=\n:[]}},\"protected\":false,\"followers_count\":22601500,\"friends_count\":131,\"lis=\nted_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_=\ncount\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo=\n_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contribut=\nors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background=\n_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1u=\nqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_nor=\nmal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:=\n\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color=\n\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_co=\nlor\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":=\ntrue,\"default_profile\":false,\"default_profile_image\":false,\"following\":null=\n,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\"=\n:null,\"place\":null,\"contributors\":null,\"retweet_count\":382,\"favorite_count\"=\n:319,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\=\n/0RfHOCY430\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/new-tweets-p=\ner-second-record-and-how\",\"display_url\":\"blog.twitter.com\\/2013\\/new-tweet\\=\nu2026\",\"indices\":[110,133]}],\"user_mentions\":[{\"screen_name\":\"TwitterEng\",\"=\nname\":\"Twitter Engineering\",\"id\":6844292,\"id_str\":\"6844292\",\"indices\":[4,15=\n]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":=\n\"en\"},{\"created_at\":\"Thu Aug 15 23:35:51 +0000 2013\",\"id\":36815409724693708=\n8,\"id_str\":\"368154097246937088\",\"text\":\"Get m\\u00e1s social on @Telemundo's=\n #PremiosTuMundo tonight: https:\\/\\/t.co\\/VAGewL9Pbj\",\"source\":\"web\",\"trunc=\nated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"=\nin_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scree=\nn_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen=\n_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your officia=\nl source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.c=\no\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu=\n\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.=\ncom\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"foll=\nowers_count\":22601500,\"friends_count\":131,\"listed_count\":79291,\"created_at\"=\n:\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200=\n,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":tru=\ne,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_transl=\nator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_u=\nrl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy=\n82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.=\ncom\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profi=\nle_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profil=\ne_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_h=\nttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9=\nnectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_ba=\nnners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_b=\norder_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_c=\nolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,=\n\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":false,=\n\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contribut=\nors\":null,\"retweet_count\":196,\"favorite_count\":130,\"entities\":{\"hashtags\":[=\n{\"text\":\"PremiosTuMundo\",\"indices\":[31,46]}],\"symbols\":[],\"urls\":[{\"url\":\"h=\nttps:\\/\\/t.co\\/VAGewL9Pbj\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013=\n\\/get-mas-social-at-premios-tu-mundo\",\"display_url\":\"blog.twitter.com\\/2013=\n\\/get-mas-s\\u2026\",\"indices\":[56,79]}],\"user_mentions\":[{\"screen_name\":\"Tel=\nemundo\",\"name\":\"Telemundo \",\"id\":22952132,\"id_str\":\"22952132\",\"indices\":[18=\n,28]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lan=\ng\":\"es\"},{\"created_at\":\"Tue Aug 13 19:56:47 +0000 2013\",\"id\":36737419012854=\n1696,\"id_str\":\"367374190128541696\",\"text\":\"RT @twu: We want Twitter to be t=\nhe best place in the world for engineers to work. Announcing Twitter Univer=\nsity: https:\\/\\/t.co\\/q101ZuYAAZ\",\"source\":\"web\",\"truncated\":false,\"in_repl=\ny_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\"=\n:null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":=\n{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"lo=\ncation\":\"San Francisco, CA\",\"description\":\"Your official source for news, u=\npdates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"ht=\ntp:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22=\n]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":2260150=\n0,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:5=\n4 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacifi=\nc Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1=\n632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile=\n_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twi=\nmg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"pr=\nofile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgro=\nund_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":=\ntrue,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758=\n\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0=\n.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"p=\nrofile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/13474=\n05327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE=\n\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"prof=\nile_use_background_image\":true,\"default_profile\":false,\"default_profile_ima=\nge\":false,\"following\":null,\"follow_request_sent\":false,\"notifications\":null=\n},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted=\n_status\":{\"created_at\":\"Tue Aug 13 18:27:38 +0000 2013\",\"id\":36735175562271=\n9488,\"id_str\":\"367351755622719488\",\"text\":\"We want Twitter to be the best p=\nlace in the world for engineers to work. Announcing Twitter University: htt=\nps:\\/\\/t.co\\/q101ZuYAAZ\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_stat=\nus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in=\n_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":166=\n5823832,\"id_str\":\"1665823832\",\"name\":\"Twitter University\",\"screen_name\":\"tw=\nu\",\"location\":\"\",\"description\":\"Educating Twitter's engineers & the technic=\nal community through discussion of emerging technologies, sharing of new id=\neas, and contributions to Open Source.\",\"url\":null,\"entities\":{\"description=\n\":{\"urls\":[]}},\"protected\":false,\"followers_count\":6723,\"friends_count\":6,\"=\nlisted_count\":120,\"created_at\":\"Mon Aug 12 19:13:51 +0000 2013\",\"favourites=\n_count\":5,\"utc_offset\":-36000,\"time_zone\":\"Hawaii\",\"geo_enabled\":false,\"ver=\nified\":true,\"statuses_count\":4,\"lang\":\"en\",\"contributors_enabled\":false,\"is=\n_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_=\nimage_url\":\"http:\\/\\/a0.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile=\n_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/images\\/themes\\/them=\ne1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a=\n0.twimg.com\\/profile_images\\/378800000289782597\\/3431695ee8072b90da85b2d0ef=\n58ec64_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/prof=\nile_images\\/378800000289782597\\/3431695ee8072b90da85b2d0ef58ec64_normal.png=\n\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"pr=\nofile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_u=\nse_background_image\":true,\"default_profile\":true,\"default_profile_image\":fa=\nlse,\"following\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo=\n\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":=\n818,\"favorite_count\":425,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"u=\nrl\":\"https:\\/\\/t.co\\/q101ZuYAAZ\",\"expanded_url\":\"https:\\/\\/blog.twitter.com=\n\\/2013\\/twitter-university-building-a-world-class-engineering-organization\"=\n,\"display_url\":\"blog.twitter.com\\/2013\\/twitter-u\\u2026\",\"indices\":[104,127=\n]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensi=\ntive\":false,\"lang\":\"en\"},\"retweet_count\":818,\"favorite_count\":0,\"entities\":=\n{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/q101ZuYAAZ\",\"ex=\npanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/twitter-university-building-=\na-world-class-engineering-organization\",\"display_url\":\"blog.twitter.com\\/20=\n13\\/twitter-u\\u2026\",\"indices\":[113,136]}],\"user_mentions\":[{\"screen_name\":=\n\"twu\",\"name\":\"Twitter University\",\"id\":1665823832,\"id_str\":\"1665823832\",\"in=\ndices\":[3,7]}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":fa=\nlse,\"lang\":\"en\"},{\"created_at\":\"Wed Aug 07 20:43:16 +0000 2013\",\"id\":365211=\n562421657601,\"id_str\":\"365211562421657601\",\"text\":\"Tonight US time: @carlqu=\nintanilla explores \\\"The Twitter Revolution\\\" at 9pm ET\\/PT on @CNBC: http:=\n\\/\\/t.co\\/DgA3N3IkWg #TwitterRevolution\",\"source\":\"web\",\"truncated\":false,\"=\nin_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_u=\nser_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,=\n\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitt=\ner\",\"location\":\"San Francisco, CA\",\"description\":\"Your official source for =\nnews, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu=\n\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_u=\nrl\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices=\n\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"followers_count\":=\n22601500,\"friends_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 =\n14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":=\n\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_c=\nount\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"=\nprofile_background_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.p=\nng\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_=\nbackground_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background=\n_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/228=\n4174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:=\n\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.=\npng\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214=\n\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_border_color\":=\n\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333=\n\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_prof=\nile_image\":false,\"following\":null,\"follow_request_sent\":false,\"notification=\ns\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"re=\ntweet_count\":547,\"favorite_count\":278,\"entities\":{\"hashtags\":[{\"text\":\"Twit=\nterRevolution\",\"indices\":[114,132]}],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/DgA3N3IkWg\",\"expanded_url\":\"http:\\/\\/www.cnbc.com\\/id\\/100792286\",\"di=\nsplay_url\":\"cnbc.com\\/id\\/100792286\",\"indices\":[91,113]}],\"user_mentions\":[=\n{\"screen_name\":\"carlquintanilla\",\"name\":\"Carl Quintanilla\",\"id\":114782468,\"=\nid_str\":\"114782468\",\"indices\":[17,33]},{\"screen_name\":\"CNBC\",\"name\":\"CNBC\",=\n\"id\":20402945,\"id_str\":\"20402945\",\"indices\":[84,89]}]},\"favorited\":false,\"r=\netweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue =\nAug 06 18:05:04 +0000 2013\",\"id\":364809363765993472,\"id_str\":\"3648093637659=\n93472\",\"text\":\"New Twitter for iOS and Android updates: improvements to log=\nin verification, photos, more. https:\\/\\/t.co\\/rVnCSq85lL\",\"source\":\"\\u003c=\na href=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nofollow\\\"\\u003eTweetDeck\\u=\n003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_=\nstatus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":nu=\nll,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"na=\nme\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"descr=\niption\":\"Your official source for news, updates and tips from Twitter, Inc.=\n\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http=\n:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"displa=\ny_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"p=\nrotected\":false,\"followers_count\":22601500,\"friends_count\":131,\"listed_coun=\nt\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":2=\n2,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled=\n\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enab=\nled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"profi=\nle_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\=\n/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":=\n\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82=\nr9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\=\n/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\"=\n,\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/228417=\n4758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.=\ntwimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"03854=\n3\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6=\nF6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"de=\nfault_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow=\n_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"p=\nlace\":null,\"contributors\":null,\"retweet_count\":772,\"favorite_count\":318,\"en=\ntities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/rVnCSq8=\n5lL\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/improvements-to-logi=\nn-verification-photos-and-more\",\"display_url\":\"blog.twitter.com\\/2013\\/impr=\noveme\\u2026\",\"indices\":[91,114]}],\"user_mentions\":[]},\"favorited\":false,\"re=\ntweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Tue A=\nug 06 16:52:06 +0000 2013\",\"id\":364791000624926721,\"id_str\":\"36479100062492=\n6721\",\"text\":\"RT @twittermedia: New Nielsen research indicates two-way caus=\nal influence between Twitter activity and TV viewership http:\\/\\/t.co\\/4cmM=\nO2EdCE\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/www.tweetdeck.com\\\" rel=3D\\\"nof=\nollow\\\"\\u003eTweetDeck\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_statu=\ns_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_=\nreply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":7832=\n14,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"S=\nan Francisco, CA\",\"description\":\"Your official source for news, updates and=\n tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"ur=\nl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blo=\ng.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601500,\"friends=\n_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 20=\n07\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US=\n & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\"=\n:\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgroun=\nd_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pr=\nofile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_back=\nground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images=\n\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"prof=\nile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7f=\nxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_ban=\nner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"pr=\nofile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile=\n_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_ba=\nckground_image\":true,\"default_profile\":false,\"default_profile_image\":false,=\n\"following\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":nu=\nll,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{=\n\"created_at\":\"Tue Aug 06 13:52:32 +0000 2013\",\"id\":364745811831160833,\"id_s=\ntr\":\"364745811831160833\",\"text\":\"New Nielsen research indicates two-way cau=\nsal influence between Twitter activity and TV viewership http:\\/\\/t.co\\/4cm=\nMO2EdCE\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_=\nreply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_i=\nd_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":130649891,\"id_str\":=\n\"130649891\",\"name\":\"Twitter Media\",\"screen_name\":\"twittermedia\",\"location\":=\n\"San Francisco\",\"description\":\"Tracking cool, meaningful uses of Tweets in =\nmedia, tv, sports, entertainment and journalism. Send us tips!\",\"url\":\"http=\ns:\\/\\/t.co\\/TaNgNcxAmy\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"https:\\/\\/t.co\\/=\nTaNgNcxAmy\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/media\",\"display_url=\n\":\"blog.twitter.com\\/media\",\"indices\":[0,23]}]},\"description\":{\"urls\":[]}},=\n\"protected\":false,\"followers_count\":2404872,\"friends_count\":296,\"listed_cou=\nnt\":7897,\"created_at\":\"Wed Apr 07 22:41:40 +0000 2010\",\"favourites_count\":1=\n29,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enable=\nd\":true,\"verified\":true,\"statuses_count\":725,\"lang\":\"en\",\"contributors_enab=\nled\":false,\"is_translator\":false,\"profile_background_color\":\"12212D\",\"profi=\nle_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\=\n/90427732\\/twittermedia-bg.png\",\"profile_background_image_url_https\":\"https=\n:\\/\\/si0.twimg.com\\/profile_background_images\\/90427732\\/twittermedia-bg.pn=\ng\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.c=\nom\\/profile_images\\/3752514126\\/0a78819053b9451d8e201de2950197ab_normal.png=\n\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/37525=\n14126\\/0a78819053b9451d8e201de2950197ab_normal.png\",\"profile_banner_url\":\"h=\nttps:\\/\\/pbs.twimg.com\\/profile_banners\\/130649891\\/1347404321\",\"profile_li=\nnk_color\":\"1D5870\",\"profile_sidebar_border_color\":\"333333\",\"profile_sidebar=\n_fill_color\":\"EEEEEE\",\"profile_text_color\":\"333333\",\"profile_use_background=\n_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"followi=\nng\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coor=\ndinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":392,\"favorit=\ne_count\":219,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/=\n\\/t.co\\/4cmMO2EdCE\",\"expanded_url\":\"http:\\/\\/www.nielsen.com\\/us\\/en\\/press=\n-room\\/2013\\/new-nielsen-research-indicates-two-way-causal-influence-betwee=\nn-.html\",\"display_url\":\"nielsen.com\\/us\\/en\\/press-ro\\u2026\",\"indices\":[99,=\n121]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_se=\nnsitive\":false,\"lang\":\"en\"},\"retweet_count\":392,\"favorite_count\":0,\"entitie=\ns\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/4cmMO2EdCE\",\"=\nexpanded_url\":\"http:\\/\\/www.nielsen.com\\/us\\/en\\/press-room\\/2013\\/new-niel=\nsen-research-indicates-two-way-causal-influence-between-.html\",\"display_url=\n\":\"nielsen.com\\/us\\/en\\/press-ro\\u2026\",\"indices\":[117,139]}],\"user_mention=\ns\":[{\"screen_name\":\"twittermedia\",\"name\":\"Twitter Media\",\"id\":130649891,\"id=\n_str\":\"130649891\",\"indices\":[3,16]}]},\"favorited\":false,\"retweeted\":false,\"=\npossibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Fri Aug 02 23:38:27 +=\n0000 2013\",\"id\":363443709003563009,\"id_str\":\"363443709003563009\",\"text\":\"Wh=\nat time is it? Why, it's time to dive into #SharkWeek! https:\\/\\/t.co\\/xDSG=\nQhpV4i\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_r=\neply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id=\n_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783=\n214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA=\n\",\"description\":\"Your official source for news, updates and tips from Twitt=\ner, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"ur=\nl\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\"=\n,\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\"=\n:[]}},\"protected\":false,\"followers_count\":22601500,\"friends_count\":131,\"lis=\nted_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_=\ncount\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo=\n_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contribut=\nors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6=\n\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background=\n_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url=\n_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1u=\nqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"=\nhttp:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_nor=\nmal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images=\n\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:=\n\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color=\n\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_co=\nlor\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":=\ntrue,\"default_profile\":false,\"default_profile_image\":false,\"following\":null=\n,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\"=\n:null,\"place\":null,\"contributors\":null,\"retweet_count\":364,\"favorite_count\"=\n:222,\"entities\":{\"hashtags\":[{\"text\":\"SharkWeek\",\"indices\":[45,55]}],\"symbo=\nls\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/xDSGQhpV4i\",\"expanded_url\":\"https:\\/=\n\\/blog.twitter.com\\/2013\\/dive-into-shark-week\",\"display_url\":\"blog.twitter=\n.com\\/2013\\/dive-into\\u2026\",\"indices\":[57,80]}],\"user_mentions\":[]},\"favor=\nited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"cre=\nated_at\":\"Thu Aug 01 19:32:58 +0000 2013\",\"id\":363019545822248961,\"id_str\":=\n\"363019545822248961\",\"text\":\"Search update on http:\\/\\/t.co\\/eNvqKTup1d: Se=\ne photos & accounts in results + recent searches & social context a=\ns you type your query.\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_statu=\ns_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_=\nreply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":7832=\n14,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"S=\nan Francisco, CA\",\"description\":\"Your official source for news, updates and=\n tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"ur=\nl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blo=\ng.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"desc=\nription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601500,\"friends=\n_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 20=\n07\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US=\n & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\"=\n:\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgroun=\nd_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/pr=\nofile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_back=\nground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images=\n\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"prof=\nile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7f=\nxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com=\n\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_ban=\nner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"pr=\nofile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile=\n_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_ba=\nckground_image\":true,\"default_profile\":false,\"default_profile_image\":false,=\n\"following\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":nu=\nll,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":510,=\n\"favorite_count\":235,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":=\n\"http:\\/\\/t.co\\/eNvqKTup1d\",\"expanded_url\":\"http:\\/\\/twitter.com\",\"display_=\nurl\":\"twitter.com\",\"indices\":[17,39]}],\"user_mentions\":[]},\"favorited\":fals=\ne,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"=\nThu Aug 01 17:56:54 +0000 2013\",\"id\":362995368629243905,\"id_str\":\"362995368=\n629243905\",\"text\":\"The latest Twitter for Windows 8 now supports multiple a=\nccounts, lists + more. Get the update: http:\\/\\/t.co\\/CHZQdBACgu\",\"source\":=\n\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id=\n_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_re=\nply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twit=\nter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"=\nYour official source for news, updates and tips from Twitter, Inc.\",\"url\":\"=\nhttp:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co=\n\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"b=\nlog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\"=\n:false,\"followers_count\":22601500,\"friends_count\":131,\"listed_count\":79291,=\n\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_of=\nfset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"v=\nerified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":fals=\ne,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"profile_backgr=\nound_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/65709006=\n2\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/=\n\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i=\n.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg=\n.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile=\n_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65=\noai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com=\n\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profi=\nle_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"pr=\nofile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_pro=\nfile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_=\nsent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":nul=\nl,\"contributors\":null,\"retweet_count\":475,\"favorite_count\":192,\"entities\":{=\n\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/CHZQdBACgu\",\"expa=\nnded_url\":\"http:\\/\\/apps.microsoft.com\\/windows\\/en-us\\/app\\/twitter\\/82895=\n49f-9bae-4d44-9a5c-63d9c3a79f35\",\"display_url\":\"apps.microsoft.com\\/windows=\n\\/en-us\\/\\u2026\",\"indices\":[95,117]}],\"user_mentions\":[]},\"favorited\":false=\n,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"W=\ned Jul 31 19:59:15 +0000 2013\",\"id\":362663770872487938,\"id_str\":\"3626637708=\n72487938\",\"text\":\"RT @TwitterAds: An excellent, in-depth look at TVxTwitter=\n from Variety's @awallenstein, featuring @adambain http:\\/\\/t.co\\/6TC63db6I=\n8\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_=\nto_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\"=\n:null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",=\n\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"de=\nscription\":\"Your official source for news, updates and tips from Twitter, I=\nnc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"h=\nttp:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"dis=\nplay_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}}=\n,\"protected\":false,\"followers_count\":22601500,\"friends_count\":131,\"listed_c=\nount\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count=\n\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enab=\nled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_e=\nnabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"pr=\nofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_imag=\nes\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_http=\ns\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5s=\ny82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:=\n\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.p=\nng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/228=\n4174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/p=\nbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"03=\n8543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":=\n\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,=\n\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"fol=\nlow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null=\n,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Jul=\n 31 19:09:22 +0000 2013\",\"id\":362651215206694912,\"id_str\":\"3626512152066949=\n12\",\"text\":\"An excellent, in-depth look at TVxTwitter from Variety's @awall=\nenstein, featuring @adambain http:\\/\\/t.co\\/6TC63db6I8\",\"source\":\"\\u003ca h=\nref=3D\\\"http:\\/\\/www.hootsuite.com\\\" rel=3D\\\"nofollow\\\"\\u003eHootSuite\\u003=\nc\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_sta=\ntus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,=\n\"in_reply_to_screen_name\":null,\"user\":{\"id\":357750891,\"id_str\":\"357750891\",=\n\"name\":\"Twitter Advertising\",\"screen_name\":\"TwitterAds\",\"location\":\"San Fra=\nncisco, CA \",\"description\":\"Your source for Twitter advertising product upd=\nates, tips, news and success stories. Looking for SMB? @twittersmallbiz. Ne=\ned help? http:\\/\\/t.co\\/xAMS8D6Bfu\",\"url\":\"http:\\/\\/t.co\\/EwxpVQz6Gs\",\"enti=\nties\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/EwxpVQz6Gs\",\"expanded_url\":\"ht=\ntp:\\/\\/business.twitter.com\",\"display_url\":\"business.twitter.com\",\"indices\"=\n:[0,22]}]},\"description\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/xAMS8D6Bfu\",\"expan=\nded_url\":\"http:\\/\\/ow.ly\\/kshRw\",\"display_url\":\"ow.ly\\/kshRw\",\"indices\":[13=\n1,153]}]}},\"protected\":false,\"followers_count\":206420,\"friends_count\":98,\"l=\nisted_count\":1444,\"created_at\":\"Thu Aug 18 21:08:15 +0000 2011\",\"favourites=\n_count\":253,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"g=\neo_enabled\":false,\"verified\":true,\"statuses_count\":1077,\"lang\":\"en\",\"contri=\nbutors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0D=\nEED\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_backgro=\nund_images\\/662767273\\/jvmxdpdrplhxcw8yvkv2.png\",\"profile_background_image_=\nurl_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/662767273\\/=\njvmxdpdrplhxcw8yvkv2.png\",\"profile_background_tile\":true,\"profile_image_url=\n\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174566\\/amp1w9arbi2aw151ns3s_=\nnormal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_ima=\nges\\/2284174566\\/amp1w9arbi2aw151ns3s_normal.png\",\"profile_banner_url\":\"htt=\nps:\\/\\/pbs.twimg.com\\/profile_banners\\/357750891\\/1347988305\",\"profile_link=\n_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_f=\nill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_i=\nmage\":true,\"default_profile\":false,\"default_profile_image\":false,\"following=\n\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordi=\nnates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":272,\"favorite_=\ncount\":136,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/=\nt.co\\/6TC63db6I8\",\"expanded_url\":\"http:\\/\\/ow.ly\\/nvCmF\",\"display_url\":\"ow.=\nly\\/nvCmF\",\"indices\":[92,114]}],\"user_mentions\":[{\"screen_name\":\"awallenste=\nin\",\"name\":\"Andrew Wallenstein\",\"id\":14160121,\"id_str\":\"14160121\",\"indices\"=\n:[57,70]},{\"screen_name\":\"adambain\",\"name\":\"adam bain\",\"id\":14253109,\"id_st=\nr\":\"14253109\",\"indices\":[82,91]}]},\"favorited\":false,\"retweeted\":false,\"pos=\nsibly_sensitive\":false,\"lang\":\"en\"},\"retweet_count\":272,\"favorite_count\":0,=\n\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/t.co\\/6TC63=\ndb6I8\",\"expanded_url\":\"http:\\/\\/ow.ly\\/nvCmF\",\"display_url\":\"ow.ly\\/nvCmF\",=\n\"indices\":[108,130]}],\"user_mentions\":[{\"screen_name\":\"TwitterAds\",\"name\":\"=\nTwitter Advertising\",\"id\":357750891,\"id_str\":\"357750891\",\"indices\":[3,14]},=\n{\"screen_name\":\"awallenstein\",\"name\":\"Andrew Wallenstein\",\"id\":14160121,\"id=\n_str\":\"14160121\",\"indices\":[73,86]},{\"screen_name\":\"adambain\",\"name\":\"adam =\nbain\",\"id\":14253109,\"id_str\":\"14253109\",\"indices\":[98,107]}]},\"favorited\":f=\nalse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at=\n\":\"Wed Jul 31 18:53:22 +0000 2013\",\"id\":362647188523847680,\"id_str\":\"362647=\n188523847680\",\"text\":\"We study billions of public Tweets to detect events +=\n visualize the synchrony they generate at scale: https:\\/\\/t.co\\/Jc9Gaubdnr=\n\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_t=\no_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":=\nnull,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"=\nname\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"des=\ncription\":\"Your official source for news, updates and tips from Twitter, In=\nc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"ht=\ntp:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"disp=\nlay_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},=\n\"protected\":false,\"followers_count\":22601500,\"friends_count\":131,\"listed_co=\nunt\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\"=\n:22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabl=\ned\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_en=\nabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"pro=\nfile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_image=\ns\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https=\n\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy=\n82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\=\n/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.pn=\ng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284=\n174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pb=\ns.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038=\n543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"=\nF6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"=\ndefault_profile\":false,\"default_profile_image\":false,\"following\":null,\"foll=\now_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,=\n\"place\":null,\"contributors\":null,\"retweet_count\":448,\"favorite_count\":281,\"=\nentities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/Jc9Ga=\nubdnr\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/twitter-and-synchr=\nony\",\"display_url\":\"blog.twitter.com\\/2013\\/twitter-a\\u2026\",\"indices\":[102=\n,125]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_s=\nensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Wed Jul 31 14:05:56 +0000 2013\"=\n,\"id\":362574854916030465,\"id_str\":\"362574854916030465\",\"text\":\"Our latest #=\ntransparency report is up, covering the last 6 months of government request=\ns & copyright notices: https:\\/\\/t.co\\/GXr3ikr2gT\",\"source\":\"web\",\"trun=\ncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,=\n\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_scre=\nen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"scree=\nn_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your offici=\nal source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.=\nco\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTg=\nu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter=\n.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"fol=\nlowers_count\":22601500,\"friends_count\":131,\"listed_count\":79291,\"created_at=\n\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-2520=\n0,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":tr=\nue,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_trans=\nlator\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_=\nurl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5s=\ny82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg=\n.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"prof=\nile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profi=\nle_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_=\nhttps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv=\n9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_b=\nanners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_=\nborder_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_=\ncolor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false=\n,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":false=\n,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contribu=\ntors\":null,\"retweet_count\":548,\"favorite_count\":234,\"entities\":{\"hashtags\":=\n[{\"text\":\"transparency\",\"indices\":[11,24]}],\"symbols\":[],\"urls\":[{\"url\":\"ht=\ntps:\\/\\/t.co\\/GXr3ikr2gT\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\=\n/working-to-increase-transparency\",\"display_url\":\"blog.twitter.com\\/2013\\/w=\norking-t\\u2026\",\"indices\":[114,137]}],\"user_mentions\":[]},\"favorited\":false=\n,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"M=\non Jul 22 23:00:28 +0000 2013\",\"id\":359447882224500736,\"id_str\":\"3594478822=\n24500736\",\"text\":\"There have been 2 million mentions on Twitter since last =\nnight's #RoyalBaby watch intensified. Our writeup: https:\\/\\/t.co\\/CpIvImwq=\nFj\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply=\n_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str=\n\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\"=\n,\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"d=\nescription\":\"Your official source for news, updates and tips from Twitter, =\nInc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"=\nhttp:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"di=\nsplay_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}=\n},\"protected\":false,\"followers_count\":22601500,\"friends_count\":131,\"listed_=\ncount\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_coun=\nt\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_ena=\nbled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_=\nenabled\":false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"p=\nrofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_ima=\nges\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_htt=\nps\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5=\nsy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http=\n:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.=\npng\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/22=\n84174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/=\npbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"0=\n38543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\"=\n:\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true=\n,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"fo=\nllow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":nul=\nl,\"place\":null,\"contributors\":null,\"retweet_count\":739,\"favorite_count\":356=\n,\"entities\":{\"hashtags\":[{\"text\":\"RoyalBaby\",\"indices\":[65,75]}],\"symbols\":=\n[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CpIvImwqFj\",\"expanded_url\":\"https:\\/\\/bl=\nog.twitter.com\\/2013\\/royalbaby\",\"display_url\":\"blog.twitter.com\\/2013\\/roy=\nalbaby\",\"indices\":[108,131]}],\"user_mentions\":[]},\"favorited\":false,\"retwee=\nted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sun Jul 2=\n1 15:16:22 +0000 2013\",\"id\":358968703511040000,\"id_str\":\"358968703511040000=\n\",\"text\":\"Last day of Comic-Con! Here's your pass to #SDCC2013: https:\\/\\/t=\n.co\\/13RDmr8tCE\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":n=\null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_t=\no_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_=\nstr\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Fran=\ncisco, CA\",\"description\":\"Your official source for news, updates and tips f=\nrom Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"ur=\nls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitt=\ner.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description=\n\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601500,\"friends_count\"=\n:131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"fa=\nvourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Cana=\nda)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"=\ncontributors_enabled\":false,\"is_translator\":false,\"profile_background_color=\n\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_b=\nackground_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/65709=\n0062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9=\nnectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profi=\nle_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"profile_l=\nink_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profile_sideba=\nr_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_backgroun=\nd_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"follow=\ning\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":null,\"coo=\nrdinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":332,\"favori=\nte_count\":180,\"entities\":{\"hashtags\":[{\"text\":\"SDCC2013\",\"indices\":[43,52]}=\n],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/13RDmr8tCE\",\"expanded_url\":\"=\nhttps:\\/\\/blog.twitter.com\\/2013\\/your-pass-to-comic-con\",\"display_url\":\"bl=\nog.twitter.com\\/2013\\/your-pass\\u2026\",\"indices\":[54,77]}],\"user_mentions\":=\n[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"=\nen\"},{\"created_at\":\"Wed Jul 17 17:53:33 +0000 2013\",\"id\":357558708194131969=\n,\"id_str\":\"357558708194131969\",\"text\":\"Read all, know all: The stars and th=\ne stats at last night's @MLB's #ASG: https:\\/\\/t.co\\/bbO6qPpzYO\",\"source\":\"=\nweb\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_=\nstr\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_rep=\nly_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitt=\ner\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Y=\nour official source for news, updates and tips from Twitter, Inc.\",\"url\":\"h=\nttp:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\=\n/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"bl=\nog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":=\nfalse,\"followers_count\":22601500,\"friends_count\":131,\"listed_count\":79291,\"=\ncreated_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_off=\nset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"ve=\nrified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false=\n,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"profile_backgro=\nund_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062=\n\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\=\n/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.=\npng\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.=\ncom\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_=\nimage_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65o=\nai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\=\n/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profil=\ne_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"pro=\nfile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_prof=\nile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_s=\nent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null=\n,\"contributors\":null,\"retweet_count\":319,\"favorite_count\":160,\"entities\":{\"=\nhashtags\":[{\"text\":\"ASG\",\"indices\":[67,71]}],\"symbols\":[],\"urls\":[{\"url\":\"h=\nttps:\\/\\/t.co\\/bbO6qPpzYO\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013=\n\\/mlbs-asg-all-the-stars-all-the-stats\",\"display_url\":\"blog.twitter.com\\/20=\n13\\/mlbs-asg-\\u2026\",\"indices\":[73,96]}],\"user_mentions\":[{\"screen_name\":\"M=\nLB\",\"name\":\"MLB\",\"id\":18479513,\"id_str\":\"18479513\",\"indices\":[60,64]}]},\"fa=\nvorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"},{\"=\ncreated_at\":\"Tue Jul 16 20:42:33 +0000 2013\",\"id\":357238848830443520,\"id_st=\nr\":\"357238848830443520\",\"text\":\"Our new Media Blog showcases how partners &=\namp; publishers are using Twitter in TV, music, sports, govt, news biz: htt=\nps:\\/\\/t.co\\/hgiB0ZjW2P\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_stat=\nus_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in=\n_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":783=\n214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"=\nSan Francisco, CA\",\"description\":\"Your official source for news, updates an=\nd tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"u=\nrl\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/bl=\nog.twitter.com\\/\",\"display_url\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"des=\ncription\":{\"urls\":[]}},\"protected\":false,\"followers_count\":22601500,\"friend=\ns_count\":131,\"listed_count\":79291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2=\n007\",\"favourites_count\":22,\"utc_offset\":-25200,\"time_zone\":\"Pacific Time (U=\nS & Canada)\",\"geo_enabled\":true,\"verified\":true,\"statuses_count\":1632,\"lang=\n\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_backgrou=\nnd_color\":\"ACDED6\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/p=\nrofile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_bac=\nkground_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_image=\ns\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_tile\":true,\"pro=\nfile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/2284174758\\/v65oai7=\nfxn47qv9nectx_normal.png\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.co=\nm\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_ba=\nnner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/783214\\/1347405327\",\"p=\nrofile_link_color\":\"038543\",\"profile_sidebar_border_color\":\"EEEEEE\",\"profil=\ne_sidebar_fill_color\":\"F6F6F6\",\"profile_text_color\":\"333333\",\"profile_use_b=\nackground_image\":true,\"default_profile\":false,\"default_profile_image\":false=\n,\"following\":null,\"follow_request_sent\":false,\"notifications\":null},\"geo\":n=\null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":347=\n,\"favorite_count\":220,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\"=\n:\"https:\\/\\/t.co\\/hgiB0ZjW2P\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/m=\nedia\",\"display_url\":\"blog.twitter.com\\/media\",\"indices\":[115,138]}],\"user_m=\nentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false=\n,\"lang\":\"en\"},{\"created_at\":\"Mon Jul 15 17:37:47 +0000 2013\",\"id\":356829963=\n585994752,\"id_str\":\"356829963585994752\",\"text\":\"The town of Jun, Spain runs=\n on Twitter. Here\\u2019s how it does that: https:\\/\\/t.co\\/7VkoWwNkOB\",\"sou=\nrce\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_stat=\nus_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"=\nin_reply_to_screen_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":=\n\"Twitter\",\"screen_name\":\"twitter\",\"location\":\"San Francisco, CA\",\"descripti=\non\":\"Your official source for news, updates and tips from Twitter, Inc.\",\"u=\nrl\":\"http:\\/\\/t.co\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\=\n/t.co\\/5iRhy7wTgu\",\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_ur=\nl\":\"blog.twitter.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"prote=\ncted\":false,\"followers_count\":22601500,\"friends_count\":131,\"listed_count\":7=\n9291,\"created_at\":\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"u=\ntc_offset\":-25200,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":tr=\nue,\"verified\":true,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\"=\n:false,\"is_translator\":false,\"profile_background_color\":\"ACDED6\",\"profile_b=\nackground_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657=\n090062\\/l1uqey5sy82r9ijhke1i.png\",\"profile_background_image_url_https\":\"htt=\nps:\\/\\/si0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ij=\nhke1i.png\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.=\ntwimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"pr=\nofile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758=\n\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twim=\ng.com\\/profile_banners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"=\nprofile_sidebar_border_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6=\n\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"defaul=\nt_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_req=\nuest_sent\":false,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place=\n\":null,\"contributors\":null,\"retweet_count\":414,\"favorite_count\":235,\"entiti=\nes\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/7VkoWwNkOB\"=\n,\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/talking-about-twitter-in=\n-spain\",\"display_url\":\"blog.twitter.com\\/2013\\/talking-a\\u2026\",\"indices\":[=\n65,88]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_=\nsensitive\":false,\"lang\":\"en\"},{\"created_at\":\"Sat Jul 13 01:14:24 +0000 2013=\n\",\"id\":355857710840950785,\"id_str\":\"355857710840950785\",\"text\":\"Just the #F=\nactsOnly about Jay-Z's (@S_C_'s) rather spontaneous Twitter Q&A that ha=\nppened this past Monday: https:\\/\\/t.co\\/oPHVmyFzvR\",\"source\":\"web\",\"trunca=\nted\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"i=\nn_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen=\n_name\":null,\"user\":{\"id\":783214,\"id_str\":\"783214\",\"name\":\"Twitter\",\"screen_=\nname\":\"twitter\",\"location\":\"San Francisco, CA\",\"description\":\"Your official=\n source for news, updates and tips from Twitter, Inc.\",\"url\":\"http:\\/\\/t.co=\n\\/5iRhy7wTgu\",\"entities\":{\"url\":{\"urls\":[{\"url\":\"http:\\/\\/t.co\\/5iRhy7wTgu\"=\n,\"expanded_url\":\"http:\\/\\/blog.twitter.com\\/\",\"display_url\":\"blog.twitter.c=\nom\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":false,\"follo=\nwers_count\":22601500,\"friends_count\":131,\"listed_count\":79291,\"created_at\":=\n\"Tue Feb 20 14:35:54 +0000 2007\",\"favourites_count\":22,\"utc_offset\":-25200,=\n\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"verified\":true=\n,\"statuses_count\":1632,\"lang\":\"en\",\"contributors_enabled\":false,\"is_transla=\ntor\":false,\"profile_background_color\":\"ACDED6\",\"profile_background_image_ur=\nl\":\"http:\\/\\/a0.twimg.com\\/profile_background_images\\/657090062\\/l1uqey5sy8=\n2r9ijhke1i.png\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.c=\nom\\/profile_background_images\\/657090062\\/l1uqey5sy82r9ijhke1i.png\",\"profil=\ne_background_tile\":true,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile=\n_images\\/2284174758\\/v65oai7fxn47qv9nectx_normal.png\",\"profile_image_url_ht=\ntps\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/2284174758\\/v65oai7fxn47qv9n=\nectx_normal.png\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_ban=\nners\\/783214\\/1347405327\",\"profile_link_color\":\"038543\",\"profile_sidebar_bo=\nrder_color\":\"EEEEEE\",\"profile_sidebar_fill_color\":\"F6F6F6\",\"profile_text_co=\nlor\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"=\ndefault_profile_image\":false,\"following\":null,\"follow_request_sent\":false,\"=\nnotifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributo=\nrs\":null,\"retweet_count\":334,\"favorite_count\":164,\"entities\":{\"hashtags\":[{=\n\"text\":\"FactsOnly\",\"indices\":[9,19]}],\"symbols\":[],\"urls\":[{\"url\":\"https:\\/=\n\\/t.co\\/oPHVmyFzvR\",\"expanded_url\":\"https:\\/\\/blog.twitter.com\\/2013\\/magna=\n-carta-holy-tweet\",\"display_url\":\"blog.twitter.com\\/2013\\/magna-car\\u2026\",=\n\"indices\":[111,134]}],\"user_mentions\":[{\"screen_name\":\"S_C_\",\"name\":\"Mr. Ca=\nrter\",\"id\":17560096,\"id_str\":\"17560096\",\"indices\":[35,40]}]},\"favorited\":fa=\nlse,\"retweeted\":false,\"possibly_sensitive\":false,\"lang\":\"en\"}]", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "62215", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:43 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:43 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706580377217654; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:43 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "180", "x-rate-limit-remaining": "178", "x-rate-limit-reset": "1377066703", "x-transaction": "244c06ef414b8786" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/account/verify_credentials.json?include_entities=True" }, "response": { "body_quoted_printable": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"=\ntweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing =\nstuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url=\n\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed=\n Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time=\n_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"st=\natuses_count\":126,\"lang\":\"en\",\"status\":{\"created_at\":\"Tue Aug 20 04:44:02 +=\n0000 2013\",\"id\":369681207279108096,\"id_str\":\"369681207279108096\",\"text\":\"OC=\nkuXhbwKzAZnwuoJAJaEiawypIdmWuipZOIJrbOGgbPQlHwTsDVHHOUCFGgRHhTtEwSEHkANNSOD=\nHhzMWwaltJhk\",\"source\":\"\\u003ca href=3D\\\"http:\\/\\/tweepy.github.com\\/\\\" rel=\n=3D\\\"nofollow\\\"\\u003eTweepyTravis\\u003c\\/a\\u003e\",\"truncated\":false,\"in_rep=\nly_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id=\n\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":=\nnull,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,=\n\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_m=\nentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"sk\"},\"contributors=\n_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"FFFFFF\",\"=\nprofile_background_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_background_im=\nages\\/394345638\\/test.jpg\",\"profile_background_image_url_https\":\"https:\\/\\/=\nsi0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"profile_bac=\nkground_tile\":false,\"profile_image_url\":\"http:\\/\\/a0.twimg.com\\/profile_ima=\nges\\/1733327710\\/test_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/si0.=\ntwimg.com\\/profile_images\\/1733327710\\/test_normal.jpg\",\"profile_banner_url=\n\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/82301637\\/1377065786\",\"profile=\n_link_color\":\"0000FF\",\"profile_sidebar_border_color\":\"87BC44\",\"profile_side=\nbar_fill_color\":\"E0FF92\",\"profile_text_color\":\"000000\",\"profile_use_backgro=\nund_image\":false,\"default_profile\":false,\"default_profile_image\":false,\"fol=\nlowing\":false,\"follow_request_sent\":false,\"notifications\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "2235", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:44 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:44 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706580416146401; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:44 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "13", "x-rate-limit-reset": "1377066674", "x-transaction": "be2341e1b6aa2d15" }, "status": { "code": 200, "message": "OK" } } }, { "request": { "body": null, "headers": { "Accept-Encoding": "identity", "Host": "api.twitter.com" }, "host": "api.twitter.com", "method": "GET", "port": 443, "url": "/1.1/account/verify_credentials.json?skip_status=True" }, "response": { "body_quoted_printable": "{\"id\":82301637,\"id_str\":\"82301637\",\"name\":\"Tweepy test 123\",\"screen_name\":\"=\ntweepytest\",\"location\":\"pytopia\",\"description\":\"A test account for testing =\nstuff.\",\"url\":\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"entities\":{\"url\":{\"urls\":[{\"url\"=\n:\"http:\\/\\/t.co\\/3L9bWVrV0b\",\"expanded_url\":\"http:\\/\\/foo.com\",\"display_url=\n\":\"foo.com\",\"indices\":[0,22]}]},\"description\":{\"urls\":[]}},\"protected\":fals=\ne,\"followers_count\":7,\"friends_count\":10,\"listed_count\":0,\"created_at\":\"Wed=\n Oct 14 07:28:20 +0000 2009\",\"favourites_count\":2,\"utc_offset\":-18000,\"time=\n_zone\":\"Central Time (US & Canada)\",\"geo_enabled\":true,\"verified\":false,\"st=\natuses_count\":126,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":=\nfalse,\"profile_background_color\":\"FFFFFF\",\"profile_background_image_url\":\"h=\nttp:\\/\\/a0.twimg.com\\/profile_background_images\\/394345638\\/test.jpg\",\"prof=\nile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_backgroun=\nd_images\\/394345638\\/test.jpg\",\"profile_background_tile\":false,\"profile_ima=\nge_url\":\"http:\\/\\/a0.twimg.com\\/profile_images\\/1733327710\\/test_normal.jpg=\n\",\"profile_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_images\\/17333=\n27710\\/test_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/prof=\nile_banners\\/82301637\\/1377065786\",\"profile_link_color\":\"0000FF\",\"profile_s=\nidebar_border_color\":\"87BC44\",\"profile_sidebar_fill_color\":\"E0FF92\",\"profil=\ne_text_color\":\"000000\",\"profile_use_background_image\":false,\"default_profil=\ne\":false,\"default_profile_image\":false,\"following\":false,\"follow_request_se=\nnt\":false,\"notifications\":false}", "headers": { "cache-control": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", "content-length": "1532", "content-type": "application/json;charset=utf-8", "date": "Wed, 21 Aug 2013 06:16:44 GMT", "expires": "Tue, 31 Mar 1981 05:00:00 GMT", "last-modified": "Wed, 21 Aug 2013 06:16:44 GMT", "pragma": "no-cache", "server": "tfe", "set-cookie": "lang=en, guest_id=v1%3A137706580444430008; Domain=.twitter.com; Path=/; Expires=Fri, 21-Aug-2015 06:16:44 UTC", "status": "200 OK", "strict-transport-security": "max-age=631138519", "x-access-level": "read-write-directmessages", "x-frame-options": "SAMEORIGIN", "x-rate-limit-limit": "15", "x-rate-limit-remaining": "12", "x-rate-limit-reset": "1377066674", "x-transaction": "eb7494b2fb1aaf9a" }, "status": { "code": 200, "message": "OK" } } } ]tweepy-3.5.0/tests/test_api.py000066400000000000000000000417451265716604700164110ustar00rootroot00000000000000import unittest import random import shutil from time import sleep import os from ast import literal_eval from nose import SkipTest from tweepy import Friendship, MemoryCache, FileCache, API from tweepy.parsers import Parser from .config import TweepyTestCase, username, use_replay, tape test_tweet_id = '266367358078169089' tweet_text = 'testing 1000' """Unit tests""" class TweepyErrorTests(unittest.TestCase): def testpickle(self): """Verify exceptions can be pickled and unpickled.""" import pickle from tweepy.error import TweepError e = TweepError('no reason', {'status': 200}) e2 = pickle.loads(pickle.dumps(e)) self.assertEqual(e.reason, e2.reason) self.assertEqual(e.response, e2.response) class TweepyAPITests(TweepyTestCase): @tape.use_cassette('testfailure.json') def testapierror(self): from tweepy.error import TweepError with self.assertRaises(TweepError) as cm: self.api.direct_messages() reason, = literal_eval(cm.exception.reason) self.assertEqual(reason['message'], 'Bad Authentication data.') self.assertEqual(reason['code'], 215) self.assertEqual(cm.exception.api_code, 215) # TODO: Actually have some sort of better assertion @tape.use_cassette('testgetoembed.json') def testgetoembed(self): data = self.api.get_oembed(test_tweet_id) self.assertEqual(data['author_name'], "Twitter") @tape.use_cassette('testparserargumenthastobeaparserinstance.json') def testparserargumenthastobeaparserinstance(self): """ Testing the issue https://github.com/tweepy/tweepy/issues/421""" self.assertRaises(TypeError, API, self.auth, parser=Parser) @tape.use_cassette('testhometimeline.json') def testhometimeline(self): self.api.home_timeline() @tape.use_cassette('testusertimeline.json') def testusertimeline(self): self.api.user_timeline() self.api.user_timeline('twitter') @tape.use_cassette('testmentionstimeline.json') def testmentionstimeline(self): self.api.mentions_timeline() @tape.use_cassette('testretweetsofme.json') def testretweetsofme(self): self.api.retweets_of_me() def testretweet(self): # TODO(josh): Need a way to get random tweets to retweet. raise SkipTest() @tape.use_cassette('testretweets.json') def testretweets(self): self.api.retweets(test_tweet_id) @tape.use_cassette('testretweeters.json') def testretweeters(self): self.api.retweeters(test_tweet_id) @tape.use_cassette('testgetstatus.json') def testgetstatus(self): self.api.get_status(id=test_tweet_id) @tape.use_cassette('testupdateanddestroystatus.json') def testupdateanddestroystatus(self): # test update text = tweet_text if use_replay else 'testing %i' % random.randint(0, 1000) update = self.api.update_status(status=text) self.assertEqual(update.text, text) # test destroy deleted = self.api.destroy_status(id=update.id) self.assertEqual(deleted.id, update.id) @tape.use_cassette('testupdateanddestroystatus.json') def testupdateanddestroystatuswithoutkwarg(self): # test update, passing text as a positional argument (#554) text = tweet_text if use_replay else 'testing %i' % random.randint(0, 1000) update = self.api.update_status(text) self.assertEqual(update.text, text) # test destroy deleted = self.api.destroy_status(id=update.id) self.assertEqual(deleted.id, update.id) @tape.use_cassette('testupdatestatuswithmedia.yaml', serializer='yaml') def testupdatestatuswithmedia(self): update = self.api.update_with_media('examples/banner.png', status=tweet_text) self.assertIn(tweet_text + ' http://t.co', update.text) @tape.use_cassette('testgetuser.json') def testgetuser(self): u = self.api.get_user('twitter') self.assertEqual(u.screen_name, 'twitter') u = self.api.get_user(783214) self.assertEqual(u.screen_name, 'twitter') @tape.use_cassette('testlookupusers.json') def testlookupusers(self): def check(users): self.assertEqual(len(users), 2) check(self.api.lookup_users(user_ids=[6844292, 6253282])) check(self.api.lookup_users(screen_names=['twitterapi', 'twitter'])) @tape.use_cassette('testsearchusers.json') def testsearchusers(self): self.api.search_users('twitter') @tape.use_cassette('testsuggestedcategories.json') def testsuggestedcategories(self): self.api.suggested_categories() @tape.use_cassette('testsuggestedusers.json') def testsuggestedusers(self): categories = self.api.suggested_categories() if len(categories) != 0: self.api.suggested_users(categories[0].slug) @tape.use_cassette('testsuggesteduserstweets.json') def testsuggesteduserstweets(self): categories = self.api.suggested_categories() if len(categories) != 0: self.api.suggested_users_tweets(categories[0].slug) @tape.use_cassette('testme.json') def testme(self): me = self.api.me() self.assertEqual(me.screen_name, username) @tape.use_cassette('testdirectmessages.json') def testdirectmessages(self): self.api.direct_messages() @tape.use_cassette('testsentdirectmessages.json') def testsentdirectmessages(self): self.api.sent_direct_messages() @tape.use_cassette('testsendanddestroydirectmessage.json') def testsendanddestroydirectmessage(self): # send sent_dm = self.api.send_direct_message(username, text='test message') self.assertEqual(sent_dm.text, 'test message') self.assertEqual(sent_dm.sender.screen_name, username) self.assertEqual(sent_dm.recipient.screen_name, username) # destroy destroyed_dm = self.api.destroy_direct_message(sent_dm.id) self.assertEqual(destroyed_dm.text, sent_dm.text) self.assertEqual(destroyed_dm.id, sent_dm.id) self.assertEqual(destroyed_dm.sender.screen_name, username) self.assertEqual(destroyed_dm.recipient.screen_name, username) @tape.use_cassette('testcreatedestroyfriendship.json') def testcreatedestroyfriendship(self): enemy = self.api.destroy_friendship('twitter') self.assertEqual(enemy.screen_name, 'twitter') # Wait 5 seconds to allow Twitter time # to process the friendship destroy request. sleep(5) friend = self.api.create_friendship('twitter') self.assertEqual(friend.screen_name, 'twitter') @tape.use_cassette('testshowfriendship.json') def testshowfriendship(self): source, target = self.api.show_friendship(target_screen_name='twitter') self.assert_(isinstance(source, Friendship)) self.assert_(isinstance(target, Friendship)) @tape.use_cassette('testfriendsids.json') def testfriendsids(self): self.api.friends_ids(username) @tape.use_cassette('testfollowersids.json') def testfollowersids(self): self.api.followers_ids(username) @tape.use_cassette('testfriends.json') def testfriends(self): self.api.friends(username) @tape.use_cassette('testfollowers.json') def testfollowers(self): self.api.followers(username) @tape.use_cassette('testverifycredentials.json') def testverifycredentials(self): self.assertNotEqual(self.api.verify_credentials(), False) # make sure that `me.status.entities` is not an empty dict me = self.api.verify_credentials(include_entities=True) self.assertTrue(me.status.entities) # `status` shouldn't be included me = self.api.verify_credentials(skip_status=True) self.assertFalse(hasattr(me, 'status')) @tape.use_cassette('testratelimitstatus.json') def testratelimitstatus(self): self.api.rate_limit_status() """ TODO(josh): Remove once this deprecated API is gone. def testsetdeliverydevice(self): self.api.set_delivery_device('im') self.api.set_delivery_device('none') """ @tape.use_cassette('testupdateprofilecolors.json') def testupdateprofilecolors(self): original = self.api.me() updated = self.api.update_profile_colors('000', '000', '000', '000', '000') # restore colors self.api.update_profile_colors( original.profile_background_color, original.profile_text_color, original.profile_link_color, original.profile_sidebar_fill_color, original.profile_sidebar_border_color ) self.assertEqual(updated.profile_background_color, '000000') self.assertEqual(updated.profile_text_color, '000000') self.assertEqual(updated.profile_link_color, '000000') self.assertEqual(updated.profile_sidebar_fill_color, '000000') self.assertEqual(updated.profile_sidebar_border_color, '000000') """ def testupateprofileimage(self): self.api.update_profile_image('examples/profile.png') def testupdateprofilebg(self): self.api.update_profile_background_image('examples/bg.png') """ @tape.use_cassette('testupdateprofilebannerimage.yaml', serializer='yaml') def testupdateprofilebannerimage(self): self.api.update_profile_banner('examples/banner.png') @tape.use_cassette('testupdateprofile.json') def testupdateprofile(self): original = self.api.me() profile = { 'name': 'Tweepy test 123', 'location': 'pytopia', 'description': 'just testing things out' } updated = self.api.update_profile(**profile) self.api.update_profile( name = original.name, url = original.url, location = original.location, description = original.description ) for k,v in profile.items(): if k == 'email': continue self.assertEqual(getattr(updated, k), v) @tape.use_cassette('testfavorites.json') def testfavorites(self): self.api.favorites() @tape.use_cassette('testcreatedestroyfavorite.json') def testcreatedestroyfavorite(self): self.api.create_favorite(4901062372) self.api.destroy_favorite(4901062372) @tape.use_cassette('testcreatedestroyblock.json') def testcreatedestroyblock(self): self.api.create_block('twitter') self.api.destroy_block('twitter') self.api.create_friendship('twitter') # restore @tape.use_cassette('testblocks.json') def testblocks(self): self.api.blocks() @tape.use_cassette('testblocksids.json') def testblocksids(self): self.api.blocks_ids() # TODO: Rewrite test to be less brittle. It fails way too often. # def testcreateupdatedestroylist(self): # params = { # 'owner_screen_name': username, # 'slug': 'tweeps' # } # l = self.api.create_list(name=params['slug'], **params) # l = self.api.update_list(list_id=l.id, description='updated!') # self.assertEqual(l.description, 'updated!') # self.api.destroy_list(list_id=l.id) @tape.use_cassette('testlistsall.json') def testlistsall(self): self.api.lists_all() @tape.use_cassette('testlistsmemberships.json') def testlistsmemberships(self): self.api.lists_memberships() @tape.use_cassette('testlistssubscriptions.json') def testlistssubscriptions(self): self.api.lists_subscriptions() @tape.use_cassette('testlisttimeline.json') def testlisttimeline(self): self.api.list_timeline('applepie', 'stars') @tape.use_cassette('testgetlist.json') def testgetlist(self): self.api.get_list(owner_screen_name='applepie', slug='stars') @tape.use_cassette('testaddremovelistmember.json') def testaddremovelistmember(self): params = { 'slug': 'test', 'owner_screen_name': username, 'screen_name': 'twitter' } def assert_list(l): self.assertEqual(l.name, params['slug']) assert_list(self.api.add_list_member(**params)) sleep(3) assert_list(self.api.remove_list_member(**params)) @tape.use_cassette('testaddremovelistmembers.json') def testaddremovelistmembers(self): params = { 'slug': 'test', 'owner_screen_name': username, 'screen_name': ['twitterapi', 'twittermobile'] } def assert_list(l): self.assertEqual(l.name, params['slug']) assert_list(self.api.add_list_members(**params)) assert_list(self.api.remove_list_members(**params)) @tape.use_cassette('testlistmembers.json') def testlistmembers(self): self.api.list_members('applepie', 'stars') @tape.use_cassette('testshowlistmember.json') def testshowlistmember(self): self.assertTrue(self.api.show_list_member(owner_screen_name='applepie', slug='stars', screen_name='NathanFillion')) @tape.use_cassette('testsubscribeunsubscribelist.json') def testsubscribeunsubscribelist(self): params = { 'owner_screen_name': 'applepie', 'slug': 'stars' } self.api.subscribe_list(**params) self.api.unsubscribe_list(**params) @tape.use_cassette('testlistsubscribers.json') def testlistsubscribers(self): self.api.list_subscribers('applepie', 'stars') @tape.use_cassette('testshowlistsubscriber.json') def testshowlistsubscriber(self): self.assertTrue(self.api.show_list_subscriber('tweepytest', 'test', 'applepie')) @tape.use_cassette('testsavedsearches.json') def testsavedsearches(self): s = self.api.create_saved_search('test') self.api.saved_searches() self.assertEqual(self.api.get_saved_search(s.id).query, 'test') self.api.destroy_saved_search(s.id) @tape.use_cassette('testsearch.json') def testsearch(self): self.api.search('tweepy') @tape.use_cassette('testgeoapis.json') def testgeoapis(self): def place_name_in_list(place_name, place_list): """Return True if a given place_name is in place_list.""" return any([x.full_name.lower() == place_name.lower() for x in place_list]) twitter_hq = self.api.geo_similar_places(lat='37.7821120598956', long='-122.400612831116', name='South of Market Child Care') # Assumes that twitter_hq is first Place returned... self.assertEqual(twitter_hq[0].id, '1d019624e6b4dcff') # Test various API functions using Austin, TX, USA self.assertEqual(self.api.geo_id(id='1ffd3558f2e98349').full_name, 'Dogpatch, San Francisco') self.assertTrue(place_name_in_list('Austin, TX', self.api.reverse_geocode(lat=30.267370168467806, long= -97.74261474609375))) # Austin, TX, USA @tape.use_cassette('testsupportedlanguages.json') def testsupportedlanguages(self): languages = self.api.supported_languages() expected_dict = { "name": "English", "code": "en", "status": "production" } self.assertTrue(expected_dict in languages) @tape.use_cassette('testcachedresult.json') def testcachedresult(self): self.api.cache = MemoryCache() self.api.home_timeline() self.assertFalse(self.api.cached_result) self.api.home_timeline() self.assertTrue(self.api.cached_result) class TweepyCacheTests(unittest.TestCase): timeout = 2.0 memcache_servers = ['127.0.0.1:11211'] # must be running for test to pass def _run_tests(self, do_cleanup=True): # test store and get self.cache.store('testkey', 'testvalue') self.assertEqual(self.cache.get('testkey'), 'testvalue', 'Stored value does not match retrieved value') # test timeout sleep(self.timeout) self.assertEqual(self.cache.get('testkey'), None, 'Cache entry should have expired') # test cleanup if do_cleanup: self.cache.store('testkey', 'testvalue') sleep(self.timeout) self.cache.cleanup() self.assertEqual(self.cache.count(), 0, 'Cache cleanup failed') # test count for i in range(0, 20): self.cache.store('testkey%i' % i, 'testvalue') self.assertEqual(self.cache.count(), 20, 'Count is wrong') # test flush self.cache.flush() self.assertEqual(self.cache.count(), 0, 'Cache failed to flush') def testmemorycache(self): self.cache = MemoryCache(timeout=self.timeout) self._run_tests() def testfilecache(self): os.mkdir('cache_test_dir') try: self.cache = FileCache('cache_test_dir', self.timeout) self._run_tests() self.cache.flush() finally: if os.path.exists('cache_test_dir'): shutil.rmtree('cache_test_dir') if __name__ == '__main__': unittest.main() tweepy-3.5.0/tests/test_auth.py000066400000000000000000000021731265716604700165710ustar00rootroot00000000000000from __future__ import absolute_import from .config import * from tweepy import API, OAuthHandler import six if six.PY3: import unittest else: import unittest2 as unittest class TweepyAuthTests(unittest.TestCase): def testoauth(self): auth = OAuthHandler(oauth_consumer_key, oauth_consumer_secret) # test getting access token auth_url = auth.get_authorization_url() print('Please authorize: ' + auth_url) verifier = raw_input('PIN: ').strip() self.assert_(len(verifier) > 0) access_token = auth.get_access_token(verifier) self.assert_(access_token is not None) # build api object test using oauth api = API(auth) s = api.update_status('test %i' % random.randint(0, 1000)) api.destroy_status(s.id) def testaccesstype(self): auth = OAuthHandler(oauth_consumer_key, oauth_consumer_secret) auth_url = auth.get_authorization_url(access_type='read') print('Please open: ' + auth_url) answer = raw_input('Did Twitter only request read permissions? (y/n) ') self.assertEqual('y', answer.lower()) tweepy-3.5.0/tests/test_cursors.py000066400000000000000000000035051265716604700173300ustar00rootroot00000000000000from tweepy import Cursor from .config import create_auth from .config import TweepyTestCase, username, use_replay, tape import six if six.PY3: import unittest else: import unittest2 as unittest class TweepyCursorTests(TweepyTestCase): @tape.use_cassette('testidcursoritems.json') def testidcursoritems(self): items = list(Cursor(self.api.user_timeline).items(25)) self.assertEqual(len(items), 25) @tape.use_cassette('testidcursorpages.json') def testidcursorpages(self): pages = list(Cursor(self.api.user_timeline).pages(5)) self.assertEqual(len(pages), 5) @tape.use_cassette('testcursorcursoritems.json') def testcursorcursoritems(self): items = list(Cursor(self.api.friends_ids).items(10)) self.assertEqual(len(items), 10) items = list(Cursor(self.api.followers_ids, username).items(10)) self.assertEqual(len(items), 10) @tape.use_cassette('testcursorcursorpages.json') def testcursorcursorpages(self): pages = list(Cursor(self.api.friends_ids).pages(1)) self.assert_(len(pages) == 1) pages = list(Cursor(self.api.followers_ids, username).pages(1)) self.assert_(len(pages) == 1) @tape.use_cassette('testcursorsetstartcursor.json') def testcursorsetstartcursor(self): c = Cursor(self.api.friends_ids, cursor=123456) self.assertEqual(c.iterator.next_cursor, 123456) self.assertFalse('cursor' in c.iterator.kargs) @tape.use_cassette('testcursornext.json') def testcursornext(self): """ Test cursor.next() behavior, id being passed correctly. Regression test for issue #518 """ cursor = Cursor(self.api.user_timeline, id='twitter').items(5) status = cursor.next() self.assertEquals(status.user.screen_name, 'twitter') tweepy-3.5.0/tests/test_rate_limit.py000066400000000000000000000124501265716604700177600ustar00rootroot00000000000000import unittest import os from tweepy import API, Cursor from tweepy.error import TweepError import six if six.PY3: import unittest else: import unittest2 as unittest from .config import create_auth testratelimit = 'TEST_RATE_LIMIT' in os.environ @unittest.skipIf(not testratelimit, "skipping rate limiting test since testratelimit is not specified") class TweepyRateLimitTests(unittest.TestCase): def setUp(self): self.api = API(create_auth()) self.api.retry_count = 2 self.api.retry_delay = 5 self.api.retry_errors = set([401, 404, 503]) self.api.wait_on_rate_limit = True def testratelimit(self): # should cause the api to sleep test_user_ids = [123796151, 263168076, 990027860, 901955678, 214630268, 18305040, 36126818, 312483939, 426975332, 469837158, 1104126054, 1342066705, 281632872, 608977002, 242901099, 846643308, 1166401645, 153886833, 95314037, 314458230, 149856382, 287916159, 472506496, 267180736, 251764866, 351035524, 997113991, 445915272, 57335947, 251043981, 95051918, 200761489, 48341139, 972660884, 422330517, 326429297, 864927896, 94183577, 95887514, 220807325, 194330782, 58796741, 1039212709, 1017192614, 625828008, 66539548, 320566383, 309829806, 571383983, 382694863, 439140530, 93977882, 277651636, 19984414, 502004733, 1093673143, 60014776, 469849460, 937107642, 155516395, 1272979644, 617433802, 102212981, 301228831, 805784562, 427799926, 322298054, 162197537, 554001783, 89252046, 536789199, 177807568, 805044434, 495541739, 392904916, 154656981, 291266775, 865454102, 475846642, 56910044, 55834550, 177389790, 339841061, 319614526, 954529597, 595960038, 501301480, 15679722, 938090731, 495829228, 325034224, 1041031410, 18882803, 161080540, 456245496, 636854521, 811974907, 222085372, 222306563, 422846724, 281616645, 223641862, 705786134, 1038901512, 174211339, 426795277, 370259272, 34759594, 366410456, 320577812, 757211413, 483238166, 222624369, 29425605, 456455726, 408723740, 1274608346, 295837985, 273490210, 232497444, 726843685, 465232166, 18850087, 22503721, 259629354, 414250375, 1259941938, 777167150, 1080552157, 1271036282, 1000551816, 109443357, 345781858, 45113654, 406536508, 253801866, 98836799, 395469120, 252920129, 604660035, 69124420, 283459909, 482261729, 377767308, 565240139, 191788429, 102048080, 330054371, 527868245, 177044049, 1250978114, 424042840, 15810905, 389030234, 69324415, 15638877, 159080798, 378708319, 549183840, 1034658145, 629924195, 969130340, 1143593845, 188129639, 535863656, 552452458, 1325277547, 756236624, 48421608, 178495858, 566206836, 378519925, 22678249, 377659768, 102326650, 76783997, 440716178, 49062271, 26296705, 1328036587, 289644932, 305767830, 437305735, 124821901, 591735533, 155140501, 1099612568, 631398810, 469295515, 131350941, 325804447, 529801632, 977197808, 232613818, 614777251, 229261732, 255533478, 256942503, 169583016, 237860252, 29257799, 276668845, 871571886, 398162507, 451954078, 526016951, 285655480, 1281827257, 340042172, 146653629, 61055423, 33407417, 95582321, 237420995, 310960580, 1222064886, 16490950, 60924360, 81928649, 374424010, 45703629, 817455571, 336077264, 400268024, 1203200467, 457105876, 232309205, 45838026, 91972056, 226927065, 82125276, 760131962, 1032274398, 562552291, 155155166, 146464315, 864864355, 128655844, 589747622, 293290470, 192004584, 19100402, 133931498, 19775979, 446374381, 1175241198, 20128240, 332395944, 74575955, 247407092, 427794934, 329823657, 405742072, 497475320, 997384698, 147718652, 757768705, 96757163, 289874437, 29892071, 568541704, 297039276, 356590090, 502055438, 291826323, 238944785, 71483924, 50031538, 863355416, 120273668, 224403994, 14880858, 1241506364, 848962080, 57898416, 599695908, 1222132262, 54045447, 907207212, 851412402, 454418991, 231844616, 618447410, 602997300, 447685173, 19681556, 22233657, 509901138, 184705596, 307624714, 553017923, 1249878596, 33727045, 419873350, 789307489, 287531592, 399163977, 1069425228, 920789582, 136891149, 134857296, 358558478, 436855382, 963011161, 195764827, 548872797, 1058980446, 442376799, 578216544, 527147110, 122077799, 1004773993, 420332138, 514994279, 61530732, 133462802, 19513966, 1286972018, 786121332, 265863798, 221258362, 42656382, 43631231, 198264256, 944382595, 37387030, 260948614, 314406408, 296512982, 92830743, 24519306, 21070476, 454107789, 331006606, 939713168, 256197265, 30065299, 74774188, 1332842606, 289424023, 526992024, 429933209, 116384410, 762143389, 308093598, 421208736, 454943394, 66026267, 158851748, 257550092, 70697073, 903627432, 290669225, 121168557, 92994330, 67642033, 635183794, 499303091, 421205146, 1252648171, 375268025, 16281866, 211960508, 267179466, 129016511, 157172416, 373370004, 167781059, 43624522] for user_id in test_user_ids: try: self.api.user_timeline(user_id=user_id, count=1, include_rts=True) except TweepError as e: # continue if we're not autherized to access the user's timeline or she doesn't exist anymore if e.response is not None and e.response.status in set([401, 404]): continue raise e if __name__ == '__main__': oauth_consumer_key = os.environ.get('CONSUMER_KEY', '') if testratelimit: unittest.TextTestRunner().run(unittest.loader.makeSuite(TweepyRateLimitTests)) else: unittest.main() tweepy-3.5.0/tests/test_resultset.py000066400000000000000000000012661265716604700176640ustar00rootroot00000000000000from .config import TweepyTestCase from tweepy.models import ResultSet class NoIdItem(object): pass class IdItem(object): def __init__(self, id): self.id = id ids_fixture = [1, 10, 8, 50, 2, 100, 5] class TweepyResultSetTests(TweepyTestCase): def setUp(self): self.results = ResultSet() for i in ids_fixture: self.results.append(IdItem(i)) self.results.append(NoIdItem()) def testids(self): ids = self.results.ids() self.assertListEqual(ids, ids_fixture) def testmaxid(self): self.assertEqual(self.results.max_id, 100) def testsinceid(self): self.assertEqual(self.results.since_id, 1) tweepy-3.5.0/tests/test_streaming.py000066400000000000000000000174011265716604700176210ustar00rootroot00000000000000from __future__ import absolute_import, print_function from .config import tape import six if six.PY3: import unittest from unittest.case import skip else: import unittest2 as unittest from unittest2.case import skip from tweepy.api import API from tweepy.auth import OAuthHandler from tweepy.models import Status from tweepy.streaming import Stream, StreamListener, ReadBuffer from .config import create_auth from .test_utils import mock_tweet from mock import MagicMock, patch if six.PY3: getresponse_location = 'http.client.HTTPConnection.getresponse' else: getresponse_location = 'httplib.HTTPConnection.getresponse' class MockStreamListener(StreamListener): def __init__(self, test_case): super(MockStreamListener, self).__init__() self.test_case = test_case self.status_count = 0 self.status_stop_count = 0 self.connect_cb = None def on_connect(self): if self.connect_cb: self.connect_cb() def on_timeout(self): self.test_case.fail('timeout') return False def on_error(self, code): print("response: %s" % code) return True def on_status(self, status): self.status_count += 1 self.test_case.assertIsInstance(status, Status) if self.status_stop_count == self.status_count: return False class TweepyStreamTests(unittest.TestCase): def setUp(self): self.auth = create_auth() self.listener = MockStreamListener(self) self.stream = Stream(self.auth, self.listener, timeout=3.0) def tearDown(self): self.stream.disconnect() def on_connect(self): API(self.auth).update_status(mock_tweet()) def test_userstream(self): # Generate random tweet which should show up in the stream. self.listener.connect_cb = self.on_connect self.listener.status_stop_count = 1 self.stream.userstream() self.assertEqual(self.listener.status_count, 1) @skip("Sitestream only available to whitelisted accounts.") def test_sitestream(self): self.listener.connect_cb = self.on_connect self.listener.status_stop_count = 1 self.stream.sitestream(follow=[self.auth.get_username()]) self.assertEqual(self.listener.status_count, 1) def test_userstream_with_params(self): # Generate random tweet which should show up in the stream. def on_connect(): API(self.auth).update_status(mock_tweet()) self.listener.connect_cb = on_connect self.listener.status_stop_count = 1 self.stream.userstream(_with='user', replies='all', stall_warnings=True) self.assertEqual(self.listener.status_count, 1) def test_sample(self): self.listener.status_stop_count = 10 self.stream.sample() self.assertEquals(self.listener.status_count, self.listener.status_stop_count) def test_filter_track(self): self.listener.status_stop_count = 5 phrases = ['twitter'] self.stream.filter(track=phrases) self.assertEquals(self.listener.status_count, self.listener.status_stop_count) def test_track_encoding(self): s = Stream(None, None) s._start = lambda async: None s.filter(track=[u'Caf\xe9']) # Should be UTF-8 encoded self.assertEqual(u'Caf\xe9'.encode('utf8'), s.session.params['track']) def test_follow_encoding(self): s = Stream(None, None) s._start = lambda async: None s.filter(follow=[u'Caf\xe9']) # Should be UTF-8 encoded self.assertEqual(u'Caf\xe9'.encode('utf8'), s.session.params['follow']) class TweepyStreamReadBufferTests(unittest.TestCase): stream = six.b("""11\n{id:12345}\n\n24\n{id:23456, test:"blah"}\n""") def test_read_tweet(self): for length in [1, 2, 5, 10, 20, 50]: buf = ReadBuffer(six.BytesIO(self.stream), length) self.assertEqual('11\n', buf.read_line()) self.assertEqual('{id:12345}\n', buf.read_len(11)) self.assertEqual('\n', buf.read_line()) self.assertEqual('24\n', buf.read_line()) self.assertEqual('{id:23456, test:"blah"}\n', buf.read_len(24)) def test_read_empty_buffer(self): """ Requests can be closed by twitter. The ReadBuffer should not loop infinitely when this happens. Instead it should return and let the outer _read_loop handle it. """ # If the test fails, we are in danger of an infinite loop # so we need to do some work to block that from happening class InfiniteLoopException(Exception): pass self.called_count = 0 call_limit = 5 def on_read(chunk_size): self.called_count += 1 if self.called_count > call_limit: # we have failed raise InfiniteLoopException("Oops, read() was called a bunch of times") return "" # Create a fake stream stream = six.BytesIO(six.b('')) # Mock it's read function so it can't be called too many times mock_read = MagicMock(side_effect=on_read) try: stream.close() with patch.multiple(stream, create=True, read=mock_read): # Now the stream can't call 'read' more than call_limit times # and it looks like a requests stream that is closed buf = ReadBuffer(stream, 50) buf.read_line("\n") except InfiniteLoopException: self.fail("ReadBuffer.read_line tried to loop infinitely.") # The mocked function not have been called at all since the stream looks closed self.assertEqual(mock_read.call_count, 0) def test_read_unicode_tweet(self): stream = six.b('11\n{id:12345}\n\n23\n{id:23456, test:"\xe3\x81\x93"}\n\n') for length in [1, 2, 5, 10, 20, 50]: buf = ReadBuffer(six.BytesIO(stream), length) self.assertEqual('11\n', buf.read_line()) self.assertEqual('{id:12345}\n', buf.read_len(11)) self.assertEqual('\n', buf.read_line()) self.assertEqual('23\n', buf.read_line()) self.assertEqual(u'{id:23456, test:"\u3053"}\n', buf.read_len(23)) class TweepyStreamBackoffTests(unittest.TestCase): def setUp(self): #bad auth causes twitter to return 401 errors self.auth = OAuthHandler("bad-key", "bad-secret") self.auth.set_access_token("bad-token", "bad-token-secret") self.listener = MockStreamListener(self) self.stream = Stream(self.auth, self.listener) def tearDown(self): self.stream.disconnect() def test_exp_backoff(self): self.stream = Stream(self.auth, self.listener, timeout=3.0, retry_count=1, retry_time=1.0, retry_time_cap=100.0) self.stream.sample() # 1 retry, should be 4x the retry_time self.assertEqual(self.stream.retry_time, 4.0) def test_exp_backoff_cap(self): self.stream = Stream(self.auth, self.listener, timeout=3.0, retry_count=1, retry_time=1.0, retry_time_cap=3.0) self.stream.sample() # 1 retry, but 4x the retry_time exceeds the cap, so should be capped self.assertEqual(self.stream.retry_time, 3.0) mock_resp = MagicMock() mock_resp.return_value.status = 420 @patch(getresponse_location, mock_resp) def test_420(self): self.stream = Stream(self.auth, self.listener, timeout=3.0, retry_count=0, retry_time=1.0, retry_420=1.5, retry_time_cap=20.0) self.stream.sample() # no retries, but error 420, should be double the retry_420, not double the retry_time self.assertEqual(self.stream.retry_time, 3.0) tweepy-3.5.0/tests/test_utils.py000066400000000000000000000013431265716604700167660ustar00rootroot00000000000000import six if six.PY3: import unittest else: import unittest2 as unittest from tweepy.utils import * import random import string def mock_tweet(): """Generate some random tweet text.""" count = random.randint(70, 140) return ''.join([random.choice(string.ascii_letters) for _ in range(count)]) class TweepyUtilsTests(unittest.TestCase): def testparse_datetime(self): result = parse_datetime("Wed Aug 27 13:08:45 +0000 2008") self.assertEqual(datetime(2008, 8, 27, 13, 8, 45), result) def testlist_to_csv(self): self.assertEqual("1,2,3", list_to_csv([1,2,3])) self.assertEqual("bird,tweet,nest,egg", list_to_csv(["bird", "tweet", "nest", "egg"])) tweepy-3.5.0/tests/travis-tests.cfg000066400000000000000000000001051265716604700173410ustar00rootroot00000000000000[nosetests] tests=tests.test_api,tests.test_utils,tests.test_cursors tweepy-3.5.0/tox.ini000066400000000000000000000011421265716604700143630ustar00rootroot00000000000000# Tox (http://tox.testrun.org/) is a tool for running tests # in multiple virtualenvs. This configuration file will run the # test suite on all supported python versions. To use it, "pip install tox" # and then run "tox" from this directory. [tox] envlist = py26, py27, py33, py34, py35 [base] deps = nose==1.3.3 vcrpy==1.0.2 mock==1.0.1 [py2] deps = {[base]deps} unittest2==0.5.1 [testenv:py27] deps = {[py2]deps} [testenv:py26] deps = {[py2]deps} [testenv] commands = nosetests -v tests.test_cursors tests.test_api tests.test_utils deps = {[base]deps} setenv = USE_REPLAY=1 tweepy-3.5.0/tweepy/000077500000000000000000000000001265716604700143675ustar00rootroot00000000000000tweepy-3.5.0/tweepy/__init__.py000066400000000000000000000013641265716604700165040ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. """ Tweepy Twitter API library """ __version__ = '3.5.0' __author__ = 'Joshua Roesslein' __license__ = 'MIT' from tweepy.models import Status, User, DirectMessage, Friendship, SavedSearch, SearchResults, ModelFactory, Category from tweepy.error import TweepError, RateLimitError from tweepy.api import API from tweepy.cache import Cache, MemoryCache, FileCache from tweepy.auth import OAuthHandler, AppAuthHandler from tweepy.streaming import Stream, StreamListener from tweepy.cursor import Cursor # Global, unauthenticated instance of API api = API() def debug(enable=True, level=1): from six.moves.http_client import HTTPConnection HTTPConnection.debuglevel = level tweepy-3.5.0/tweepy/api.py000066400000000000000000001366031265716604700155230ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function import os import mimetypes import six from tweepy.binder import bind_api from tweepy.error import TweepError from tweepy.parsers import ModelParser, Parser from tweepy.utils import list_to_csv class API(object): """Twitter API""" def __init__(self, auth_handler=None, host='api.twitter.com', search_host='search.twitter.com', upload_host='upload.twitter.com', cache=None, api_root='/1.1', search_root='', upload_root='/1.1', retry_count=0, retry_delay=0, retry_errors=None, timeout=60, parser=None, compression=False, wait_on_rate_limit=False, wait_on_rate_limit_notify=False, proxy=''): """ Api instance Constructor :param auth_handler: :param host: url of the server of the rest api, default:'api.twitter.com' :param search_host: url of the search server, default:'search.twitter.com' :param upload_host: url of the upload server, default:'upload.twitter.com' :param cache: Cache to query if a GET method is used, default:None :param api_root: suffix of the api version, default:'/1.1' :param search_root: suffix of the search version, default:'' :param upload_root: suffix of the upload version, default:'/1.1' :param retry_count: number of allowed retries, default:0 :param retry_delay: delay in second between retries, default:0 :param retry_errors: default:None :param timeout: delay before to consider the request as timed out in seconds, default:60 :param parser: ModelParser instance to parse the responses, default:None :param compression: If the response is compressed, default:False :param wait_on_rate_limit: If the api wait when it hits the rate limit, default:False :param wait_on_rate_limit_notify: If the api print a notification when the rate limit is hit, default:False :param proxy: Url to use as proxy during the HTTP request, default:'' :raise TypeError: If the given parser is not a ModelParser instance. """ self.auth = auth_handler self.host = host self.search_host = search_host self.upload_host = upload_host self.api_root = api_root self.search_root = search_root self.upload_root = upload_root self.cache = cache self.compression = compression self.retry_count = retry_count self.retry_delay = retry_delay self.retry_errors = retry_errors self.timeout = timeout self.wait_on_rate_limit = wait_on_rate_limit self.wait_on_rate_limit_notify = wait_on_rate_limit_notify self.parser = parser or ModelParser() self.proxy = {} if proxy: self.proxy['https'] = proxy # Attempt to explain more clearly the parser argument requirements # https://github.com/tweepy/tweepy/issues/421 # parser_type = Parser if not isinstance(self.parser, parser_type): raise TypeError( '"parser" argument has to be an instance of "{required}".' ' It is currently a {actual}.'.format( required=parser_type.__name__, actual=type(self.parser) ) ) @property def home_timeline(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/home_timeline :allowed_param:'since_id', 'max_id', 'count' """ return bind_api( api=self, path='/statuses/home_timeline.json', payload_type='status', payload_list=True, allowed_param=['since_id', 'max_id', 'count'], require_auth=True ) def statuses_lookup(self, id_, include_entities=None, trim_user=None, map_=None): return self._statuses_lookup(list_to_csv(id_), include_entities, trim_user, map_) @property def _statuses_lookup(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/lookup :allowed_param:'id', 'include_entities', 'trim_user', 'map' """ return bind_api( api=self, path='/statuses/lookup.json', payload_type='status', payload_list=True, allowed_param=['id', 'include_entities', 'trim_user', 'map'], require_auth=True ) @property def user_timeline(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/user_timeline :allowed_param:'id', 'user_id', 'screen_name', 'since_id' """ return bind_api( api=self, path='/statuses/user_timeline.json', payload_type='status', payload_list=True, allowed_param=['id', 'user_id', 'screen_name', 'since_id', 'max_id', 'count', 'include_rts'] ) @property def mentions_timeline(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/mentions_timeline :allowed_param:'since_id', 'max_id', 'count' """ return bind_api( api=self, path='/statuses/mentions_timeline.json', payload_type='status', payload_list=True, allowed_param=['since_id', 'max_id', 'count'], require_auth=True ) @property def related_results(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/related_results/show/%3id.format :allowed_param:'id' """ return bind_api( api=self, path='/related_results/show/{id}.json', payload_type='relation', payload_list=True, allowed_param=['id'], require_auth=False ) @property def retweets_of_me(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/retweets_of_me :allowed_param:'since_id', 'max_id', 'count' """ return bind_api( api=self, path='/statuses/retweets_of_me.json', payload_type='status', payload_list=True, allowed_param=['since_id', 'max_id', 'count'], require_auth=True ) @property def get_status(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/show/%3Aid :allowed_param:'id' """ return bind_api( api=self, path='/statuses/show.json', payload_type='status', allowed_param=['id'] ) def update_status(self, *args, **kwargs): """ :reference: https://dev.twitter.com/rest/reference/post/statuses/update :allowed_param:'status', 'in_reply_to_status_id', 'lat', 'long', 'source', 'place_id', 'display_coordinates', 'media_ids' """ post_data = {} media_ids = kwargs.pop("media_ids", None) if media_ids is not None: post_data["media_ids"] = list_to_csv(media_ids) return bind_api( api=self, path='/statuses/update.json', method='POST', payload_type='status', allowed_param=['status', 'in_reply_to_status_id', 'lat', 'long', 'source', 'place_id', 'display_coordinates'], require_auth=True )(post_data=post_data, *args, **kwargs) def media_upload(self, filename, *args, **kwargs): """ :reference: https://dev.twitter.com/rest/reference/post/media/upload :allowed_param: """ f = kwargs.pop('file', None) headers, post_data = API._pack_image(filename, 3072, form_field='media', f=f) kwargs.update({'headers': headers, 'post_data': post_data}) return bind_api( api=self, path='/media/upload.json', method='POST', payload_type='media', allowed_param=[], require_auth=True, upload_api=True )(*args, **kwargs) def update_with_media(self, filename, *args, **kwargs): """ :reference: https://dev.twitter.com/rest/reference/post/statuses/update_with_media :allowed_param:'status', 'possibly_sensitive', 'in_reply_to_status_id', 'lat', 'long', 'place_id', 'display_coordinates' """ f = kwargs.pop('file', None) headers, post_data = API._pack_image(filename, 3072, form_field='media[]', f=f) kwargs.update({'headers': headers, 'post_data': post_data}) return bind_api( api=self, path='/statuses/update_with_media.json', method='POST', payload_type='status', allowed_param=[ 'status', 'possibly_sensitive', 'in_reply_to_status_id', 'lat', 'long', 'place_id', 'display_coordinates' ], require_auth=True )(*args, **kwargs) @property def destroy_status(self): """ :reference: https://dev.twitter.com/rest/reference/post/statuses/destroy/%3Aid :allowed_param:'id' """ return bind_api( api=self, path='/statuses/destroy/{id}.json', method='POST', payload_type='status', allowed_param=['id'], require_auth=True ) @property def retweet(self): """ :reference: https://dev.twitter.com/rest/reference/post/statuses/retweet/%3Aid :allowed_param:'id' """ return bind_api( api=self, path='/statuses/retweet/{id}.json', method='POST', payload_type='status', allowed_param=['id'], require_auth=True ) @property def retweets(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/retweets/%3Aid :allowed_param:'id', 'count' """ return bind_api( api=self, path='/statuses/retweets/{id}.json', payload_type='status', payload_list=True, allowed_param=['id', 'count'], require_auth=True ) @property def retweeters(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/retweeters/ids :allowed_param:'id', 'cursor', 'stringify_ids """ return bind_api( api=self, path='/statuses/retweeters/ids.json', payload_type='ids', allowed_param=['id', 'cursor', 'stringify_ids'] ) @property def get_user(self): """ :reference: https://dev.twitter.com/rest/reference/get/users/show :allowed_param:'id', 'user_id', 'screen_name' """ return bind_api( api=self, path='/users/show.json', payload_type='user', allowed_param=['id', 'user_id', 'screen_name'] ) @property def get_oembed(self): """ :reference: https://dev.twitter.com/rest/reference/get/statuses/oembed :allowed_param:'id', 'url', 'maxwidth', 'hide_media', 'omit_script', 'align', 'related', 'lang' """ return bind_api( api=self, path='/statuses/oembed.json', payload_type='json', allowed_param=['id', 'url', 'maxwidth', 'hide_media', 'omit_script', 'align', 'related', 'lang'] ) def lookup_users(self, user_ids=None, screen_names=None, include_entities=None): """ Perform bulk look up of users from user ID or screenname """ post_data = {} if include_entities is not None: include_entities = 'true' if include_entities else 'false' post_data['include_entities'] = include_entities if user_ids: post_data['user_id'] = list_to_csv(user_ids) if screen_names: post_data['screen_name'] = list_to_csv(screen_names) return self._lookup_users(post_data=post_data) @property def _lookup_users(self): """ :reference: https://dev.twitter.com/rest/reference/get/users/lookup allowed_param='user_id', 'screen_name', 'include_entities' """ return bind_api( api=self, path='/users/lookup.json', payload_type='user', payload_list=True, method='POST', ) def me(self): """ Get the authenticated user """ return self.get_user(screen_name=self.auth.get_username()) @property def search_users(self): """ :reference: https://dev.twitter.com/rest/reference/get/users/search :allowed_param:'q', 'count', 'page' """ return bind_api( api=self, path='/users/search.json', payload_type='user', payload_list=True, require_auth=True, allowed_param=['q', 'count', 'page'] ) @property def suggested_users(self): """ :reference: https://dev.twitter.com/rest/reference/get/users/suggestions/%3Aslug :allowed_param:'slug', 'lang' """ return bind_api( api=self, path='/users/suggestions/{slug}.json', payload_type='user', payload_list=True, require_auth=True, allowed_param=['slug', 'lang'] ) @property def suggested_categories(self): """ :reference: https://dev.twitter.com/rest/reference/get/users/suggestions :allowed_param:'lang' """ return bind_api( api=self, path='/users/suggestions.json', payload_type='category', payload_list=True, allowed_param=['lang'], require_auth=True ) @property def suggested_users_tweets(self): """ :reference: https://dev.twitter.com/rest/reference/get/users/suggestions/%3Aslug/members :allowed_param:'slug' """ return bind_api( api=self, path='/users/suggestions/{slug}/members.json', payload_type='status', payload_list=True, allowed_param=['slug'], require_auth=True ) @property def direct_messages(self): """ :reference: https://dev.twitter.com/rest/reference/get/direct_messages :allowed_param:'since_id', 'max_id', 'count', 'full_text' """ return bind_api( api=self, path='/direct_messages.json', payload_type='direct_message', payload_list=True, allowed_param=['since_id', 'max_id', 'count', 'full_text'], require_auth=True ) @property def get_direct_message(self): """ :reference: https://dev.twitter.com/rest/reference/get/direct_messages/show :allowed_param:'id', 'full_text' """ return bind_api( api=self, path='/direct_messages/show/{id}.json', payload_type='direct_message', allowed_param=['id', 'full_text'], require_auth=True ) @property def sent_direct_messages(self): """ :reference: https://dev.twitter.com/rest/reference/get/direct_messages/sent :allowed_param:'since_id', 'max_id', 'count', 'page', 'full_text' """ return bind_api( api=self, path='/direct_messages/sent.json', payload_type='direct_message', payload_list=True, allowed_param=['since_id', 'max_id', 'count', 'page', 'full_text'], require_auth=True ) @property def send_direct_message(self): """ :reference: https://dev.twitter.com/rest/reference/post/direct_messages/new :allowed_param:'user', 'screen_name', 'user_id', 'text' """ return bind_api( api=self, path='/direct_messages/new.json', method='POST', payload_type='direct_message', allowed_param=['user', 'screen_name', 'user_id', 'text'], require_auth=True ) @property def destroy_direct_message(self): """ :reference: https://dev.twitter.com/rest/reference/post/direct_messages/destroy :allowed_param:'id' """ return bind_api( api=self, path='/direct_messages/destroy.json', method='POST', payload_type='direct_message', allowed_param=['id'], require_auth=True ) @property def create_friendship(self): """ :reference: https://dev.twitter.com/rest/reference/post/friendships/create :allowed_param:'id', 'user_id', 'screen_name', 'follow' """ return bind_api( api=self, path='/friendships/create.json', method='POST', payload_type='user', allowed_param=['id', 'user_id', 'screen_name', 'follow'], require_auth=True ) @property def destroy_friendship(self): """ :reference: https://dev.twitter.com/rest/reference/post/friendships/destroy :allowed_param:'id', 'user_id', 'screen_name' """ return bind_api( api=self, path='/friendships/destroy.json', method='POST', payload_type='user', allowed_param=['id', 'user_id', 'screen_name'], require_auth=True ) @property def show_friendship(self): """ :reference: https://dev.twitter.com/rest/reference/get/friendships/show :allowed_param:'source_id', 'source_screen_name' """ return bind_api( api=self, path='/friendships/show.json', payload_type='friendship', allowed_param=['source_id', 'source_screen_name', 'target_id', 'target_screen_name'] ) def lookup_friendships(self, user_ids=None, screen_names=None): """ Perform bulk look up of friendships from user ID or screenname """ return self._lookup_friendships(list_to_csv(user_ids), list_to_csv(screen_names)) @property def _lookup_friendships(self): """ :reference: https://dev.twitter.com/rest/reference/get/friendships/lookup :allowed_param:'user_id', 'screen_name' """ return bind_api( api=self, path='/friendships/lookup.json', payload_type='relationship', payload_list=True, allowed_param=['user_id', 'screen_name'], require_auth=True ) @property def friends_ids(self): """ :reference: https://dev.twitter.com/rest/reference/get/friends/ids :allowed_param:'id', 'user_id', 'screen_name', 'cursor' """ return bind_api( api=self, path='/friends/ids.json', payload_type='ids', allowed_param=['id', 'user_id', 'screen_name', 'cursor'] ) @property def friends(self): """ :reference: https://dev.twitter.com/rest/reference/get/friends/list :allowed_param:'id', 'user_id', 'screen_name', 'cursor', 'skip_status', 'include_user_entities' """ return bind_api( api=self, path='/friends/list.json', payload_type='user', payload_list=True, allowed_param=['id', 'user_id', 'screen_name', 'cursor', 'skip_status', 'include_user_entities'] ) @property def friendships_incoming(self): """ :reference: https://dev.twitter.com/rest/reference/get/friendships/incoming :allowed_param:'cursor' """ return bind_api( api=self, path='/friendships/incoming.json', payload_type='ids', allowed_param=['cursor'] ) @property def friendships_outgoing(self): """ :reference: https://dev.twitter.com/rest/reference/get/friendships/outgoing :allowed_param:'cursor' """ return bind_api( api=self, path='/friendships/outgoing.json', payload_type='ids', allowed_param=['cursor'] ) @property def followers_ids(self): """ :reference: https://dev.twitter.com/rest/reference/get/followers/ids :allowed_param:'id', 'user_id', 'screen_name', 'cursor', 'count' """ return bind_api( api=self, path='/followers/ids.json', payload_type='ids', allowed_param=['id', 'user_id', 'screen_name', 'cursor', 'count'] ) @property def followers(self): """ :reference: https://dev.twitter.com/rest/reference/get/followers/list :allowed_param:'id', 'user_id', 'screen_name', 'cursor', 'count', 'skip_status', 'include_user_entities' """ return bind_api( api=self, path='/followers/list.json', payload_type='user', payload_list=True, allowed_param=['id', 'user_id', 'screen_name', 'cursor', 'count', 'skip_status', 'include_user_entities'] ) @property def get_settings(self): """ :reference: https://dev.twitter.com/rest/reference/get/account/settings """ return bind_api( api=self, path='/account/settings.json', payload_type='json', use_cache=False ) @property def set_settings(self): """ :reference: https://dev.twitter.com/rest/reference/post/account/settings :allowed_param:'sleep_time_enabled', 'start_sleep_time', 'end_sleep_time', 'time_zone', 'trend_location_woeid', 'allow_contributor_request', 'lang' """ return bind_api( api=self, path='/account/settings.json', method='POST', payload_type='json', allowed_param=['sleep_time_enabled', 'start_sleep_time', 'end_sleep_time', 'time_zone', 'trend_location_woeid', 'allow_contributor_request', 'lang'], use_cache=False ) def verify_credentials(self, **kargs): """ :reference: https://dev.twitter.com/rest/reference/get/account/verify_credentials :allowed_param:'include_entities', 'skip_status', 'include_email' """ try: return bind_api( api=self, path='/account/verify_credentials.json', payload_type='user', require_auth=True, allowed_param=['include_entities', 'skip_status', 'include_email'], )(**kargs) except TweepError as e: if e.response and e.response.status == 401: return False raise @property def rate_limit_status(self): """ :reference: https://dev.twitter.com/rest/reference/get/application/rate_limit_status :allowed_param:'resources' """ return bind_api( api=self, path='/application/rate_limit_status.json', payload_type='json', allowed_param=['resources'], use_cache=False ) @property def set_delivery_device(self): """ :reference: https://dev.twitter.com/rest/reference/post/account/update_delivery_device :allowed_param:'device' """ return bind_api( api=self, path='/account/update_delivery_device.json', method='POST', allowed_param=['device'], payload_type='user', require_auth=True ) @property def update_profile_colors(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/account/update_profile_colors :allowed_param:'profile_background_color', 'profile_text_color', 'profile_link_color', 'profile_sidebar_fill_color', 'profile_sidebar_border_color'], """ return bind_api( api=self, path='/account/update_profile_colors.json', method='POST', payload_type='user', allowed_param=['profile_background_color', 'profile_text_color', 'profile_link_color', 'profile_sidebar_fill_color', 'profile_sidebar_border_color'], require_auth=True ) def update_profile_image(self, filename, file_=None): """ :reference: https://dev.twitter.com/rest/reference/post/account/update_profile_image :allowed_param:'include_entities', 'skip_status' """ headers, post_data = API._pack_image(filename, 700, f=file_) return bind_api( api=self, path='/account/update_profile_image.json', method='POST', payload_type='user', allowed_param=['include_entities', 'skip_status'], require_auth=True )(self, post_data=post_data, headers=headers) def update_profile_background_image(self, filename, **kargs): """ :reference: https://dev.twitter.com/rest/reference/post/account/update_profile_background_image :allowed_param:'tile', 'include_entities', 'skip_status', 'use' """ f = kargs.pop('file', None) headers, post_data = API._pack_image(filename, 800, f=f) bind_api( api=self, path='/account/update_profile_background_image.json', method='POST', payload_type='user', allowed_param=['tile', 'include_entities', 'skip_status', 'use'], require_auth=True )(post_data=post_data, headers=headers) def update_profile_banner(self, filename, **kargs): """ :reference: https://dev.twitter.com/rest/reference/post/account/update_profile_banner :allowed_param:'width', 'height', 'offset_left', 'offset_right' """ f = kargs.pop('file', None) headers, post_data = API._pack_image(filename, 700, form_field="banner", f=f) bind_api( api=self, path='/account/update_profile_banner.json', method='POST', allowed_param=['width', 'height', 'offset_left', 'offset_right'], require_auth=True )(post_data=post_data, headers=headers) @property def update_profile(self): """ :reference: https://dev.twitter.com/rest/reference/post/account/update_profile :allowed_param:'name', 'url', 'location', 'description' """ return bind_api( api=self, path='/account/update_profile.json', method='POST', payload_type='user', allowed_param=['name', 'url', 'location', 'description'], require_auth=True ) @property def favorites(self): """ :reference: https://dev.twitter.com/rest/reference/get/favorites/list :allowed_param:'screen_name', 'user_id', 'max_id', 'count', 'since_id', 'max_id' """ return bind_api( api=self, path='/favorites/list.json', payload_type='status', payload_list=True, allowed_param=['screen_name', 'user_id', 'max_id', 'count', 'since_id', 'max_id'] ) @property def create_favorite(self): """ :reference:https://dev.twitter.com/rest/reference/post/favorites/create :allowed_param:'id' """ return bind_api( api=self, path='/favorites/create.json', method='POST', payload_type='status', allowed_param=['id'], require_auth=True ) @property def destroy_favorite(self): """ :reference: https://dev.twitter.com/rest/reference/post/favorites/destroy :allowed_param:'id' """ return bind_api( api=self, path='/favorites/destroy.json', method='POST', payload_type='status', allowed_param=['id'], require_auth=True ) @property def create_block(self): """ :reference: https://dev.twitter.com/rest/reference/post/blocks/create :allowed_param:'id', 'user_id', 'screen_name' """ return bind_api( api=self, path='/blocks/create.json', method='POST', payload_type='user', allowed_param=['id', 'user_id', 'screen_name'], require_auth=True ) @property def destroy_block(self): """ :reference: https://dev.twitter.com/rest/reference/post/blocks/destroy :allowed_param:'id', 'user_id', 'screen_name' """ return bind_api( api=self, path='/blocks/destroy.json', method='POST', payload_type='user', allowed_param=['id', 'user_id', 'screen_name'], require_auth=True ) @property def blocks(self): """ :reference: https://dev.twitter.com/rest/reference/get/blocks/list :allowed_param:'cursor' """ return bind_api( api=self, path='/blocks/list.json', payload_type='user', payload_list=True, allowed_param=['cursor'], require_auth=True ) @property def blocks_ids(self): """ :reference: https://dev.twitter.com/rest/reference/get/blocks/ids """ return bind_api( api=self, path='/blocks/ids.json', payload_type='json', require_auth=True ) @property def report_spam(self): """ :reference: https://dev.twitter.com/rest/reference/post/users/report_spam :allowed_param:'user_id', 'screen_name' """ return bind_api( api=self, path='/users/report_spam.json', method='POST', payload_type='user', allowed_param=['user_id', 'screen_name'], require_auth=True ) @property def saved_searches(self): """ :reference: https://dev.twitter.com/rest/reference/get/saved_searches/show/%3Aid """ return bind_api( api=self, path='/saved_searches/list.json', payload_type='saved_search', payload_list=True, require_auth=True ) @property def get_saved_search(self): """ :reference: https://dev.twitter.com/rest/reference/get/saved_searches/show/%3Aid :allowed_param:'id' """ return bind_api( api=self, path='/saved_searches/show/{id}.json', payload_type='saved_search', allowed_param=['id'], require_auth=True ) @property def create_saved_search(self): """ :reference: https://dev.twitter.com/rest/reference/post/saved_searches/create :allowed_param:'query' """ return bind_api( api=self, path='/saved_searches/create.json', method='POST', payload_type='saved_search', allowed_param=['query'], require_auth=True ) @property def destroy_saved_search(self): """ :reference: https://dev.twitter.com/rest/reference/post/saved_searches/destroy/%3Aid :allowed_param:'id' """ return bind_api( api=self, path='/saved_searches/destroy/{id}.json', method='POST', payload_type='saved_search', allowed_param=['id'], require_auth=True ) @property def create_list(self): """ :reference: https://dev.twitter.com/rest/reference/post/lists/create :allowed_param:'name', 'mode', 'description' """ return bind_api( api=self, path='/lists/create.json', method='POST', payload_type='list', allowed_param=['name', 'mode', 'description'], require_auth=True ) @property def destroy_list(self): """ :reference: https://dev.twitter.com/rest/reference/post/lists/destroy :allowed_param:'owner_screen_name', 'owner_id', 'list_id', 'slug' """ return bind_api( api=self, path='/lists/destroy.json', method='POST', payload_type='list', allowed_param=['owner_screen_name', 'owner_id', 'list_id', 'slug'], require_auth=True ) @property def update_list(self): """ :reference: https://dev.twitter.com/rest/reference/post/lists/update :allowed_param: list_id', 'slug', 'name', 'mode', 'description', 'owner_screen_name', 'owner_id' """ return bind_api( api=self, path='/lists/update.json', method='POST', payload_type='list', allowed_param=['list_id', 'slug', 'name', 'mode', 'description', 'owner_screen_name', 'owner_id'], require_auth=True ) @property def lists_all(self): """ :reference: https://dev.twitter.com/rest/reference/get/lists/list :allowed_param:'screen_name', 'user_id' """ return bind_api( api=self, path='/lists/list.json', payload_type='list', payload_list=True, allowed_param=['screen_name', 'user_id'], require_auth=True ) @property def lists_memberships(self): """ :reference: https://dev.twitter.com/rest/reference/get/lists/memberships :allowed_param:'screen_name', 'user_id', 'filter_to_owned_lists', 'cursor' """ return bind_api( api=self, path='/lists/memberships.json', payload_type='list', payload_list=True, allowed_param=['screen_name', 'user_id', 'filter_to_owned_lists', 'cursor'], require_auth=True ) @property def lists_subscriptions(self): """ :reference: https://dev.twitter.com/rest/reference/get/lists/subscriptions :allowed_param:'screen_name', 'user_id', 'cursor' """ return bind_api( api=self, path='/lists/subscriptions.json', payload_type='list', payload_list=True, allowed_param=['screen_name', 'user_id', 'cursor'], require_auth=True ) @property def list_timeline(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/lists/statuses :allowed_param:'owner_screen_name', 'slug', 'owner_id', 'list_id', 'since_id', 'max_id', 'count', 'include_rts """ return bind_api( api=self, path='/lists/statuses.json', payload_type='status', payload_list=True, allowed_param=['owner_screen_name', 'slug', 'owner_id', 'list_id', 'since_id', 'max_id', 'count', 'include_rts'] ) @property def get_list(self): """ :reference: https://dev.twitter.com/rest/reference/get/lists/show :allowed_param:'owner_screen_name', 'owner_id', 'slug', 'list_id' """ return bind_api( api=self, path='/lists/show.json', payload_type='list', allowed_param=['owner_screen_name', 'owner_id', 'slug', 'list_id'] ) @property def add_list_member(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/lists/members/create :allowed_param:'screen_name', 'user_id', 'owner_screen_name', 'owner_id', 'slug', 'list_id' """ return bind_api( api=self, path='/lists/members/create.json', method='POST', payload_type='list', allowed_param=['screen_name', 'user_id', 'owner_screen_name', 'owner_id', 'slug', 'list_id'], require_auth=True ) @property def remove_list_member(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/lists/members/destroy :allowed_param:'screen_name', 'user_id', 'owner_screen_name', 'owner_id', 'slug', 'list_id' """ return bind_api( api=self, path='/lists/members/destroy.json', method='POST', payload_type='list', allowed_param=['screen_name', 'user_id', 'owner_screen_name', 'owner_id', 'slug', 'list_id'], require_auth=True ) def add_list_members(self, screen_name=None, user_id=None, slug=None, list_id=None, owner_id=None, owner_screen_name=None): """ Perform bulk add of list members from user ID or screenname """ return self._add_list_members(list_to_csv(screen_name), list_to_csv(user_id), slug, list_id, owner_id, owner_screen_name) @property def _add_list_members(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/lists/members/create_all :allowed_param:'screen_name', 'user_id', 'slug', 'list_id', 'owner_id', 'owner_screen_name' """ return bind_api( api=self, path='/lists/members/create_all.json', method='POST', payload_type='list', allowed_param=['screen_name', 'user_id', 'slug', 'list_id', 'owner_id', 'owner_screen_name'], require_auth=True ) def remove_list_members(self, screen_name=None, user_id=None, slug=None, list_id=None, owner_id=None, owner_screen_name=None): """ Perform bulk remove of list members from user ID or screenname """ return self._remove_list_members(list_to_csv(screen_name), list_to_csv(user_id), slug, list_id, owner_id, owner_screen_name) @property def _remove_list_members(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/lists/members/destroy_all :allowed_param:'screen_name', 'user_id', 'slug', 'list_id', 'owner_id', 'owner_screen_name' """ return bind_api( api=self, path='/lists/members/destroy_all.json', method='POST', payload_type='list', allowed_param=['screen_name', 'user_id', 'slug', 'list_id', 'owner_id', 'owner_screen_name'], require_auth=True ) @property def list_members(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/lists/members :allowed_param:'owner_screen_name', 'slug', 'list_id', 'owner_id', 'cursor """ return bind_api( api=self, path='/lists/members.json', payload_type='user', payload_list=True, allowed_param=['owner_screen_name', 'slug', 'list_id', 'owner_id', 'cursor'] ) @property def show_list_member(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/lists/members/show :allowed_param:'list_id', 'slug', 'user_id', 'screen_name', 'owner_screen_name', 'owner_id """ return bind_api( api=self, path='/lists/members/show.json', payload_type='user', allowed_param=['list_id', 'slug', 'user_id', 'screen_name', 'owner_screen_name', 'owner_id'] ) @property def subscribe_list(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/lists/subscribers/create :allowed_param:'owner_screen_name', 'slug', 'owner_id', 'list_id' """ return bind_api( api=self, path='/lists/subscribers/create.json', method='POST', payload_type='list', allowed_param=['owner_screen_name', 'slug', 'owner_id', 'list_id'], require_auth=True ) @property def unsubscribe_list(self): """ :reference: https://dev.twitter.com/docs/api/1.1/post/lists/subscribers/destroy :allowed_param:'owner_screen_name', 'slug', 'owner_id', 'list_id' """ return bind_api( api=self, path='/lists/subscribers/destroy.json', method='POST', payload_type='list', allowed_param=['owner_screen_name', 'slug', 'owner_id', 'list_id'], require_auth=True ) @property def list_subscribers(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/lists/subscribers :allowed_param:'owner_screen_name', 'slug', 'owner_id', 'list_id', 'cursor """ return bind_api( api=self, path='/lists/subscribers.json', payload_type='user', payload_list=True, allowed_param=['owner_screen_name', 'slug', 'owner_id', 'list_id', 'cursor'] ) @property def show_list_subscriber(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/lists/subscribers/show :allowed_param:'owner_screen_name', 'slug', 'screen_name', 'owner_id', 'list_id', 'user_id """ return bind_api( api=self, path='/lists/subscribers/show.json', payload_type='user', allowed_param=['owner_screen_name', 'slug', 'screen_name', 'owner_id', 'list_id', 'user_id'] ) @property def trends_available(self): """ :reference: https://dev.twitter.com/rest/reference/get/trends/available """ return bind_api( api=self, path='/trends/available.json', payload_type='json' ) @property def trends_place(self): """ :reference: https://dev.twitter.com/rest/reference/get/trends/place :allowed_param:'id', 'exclude' """ return bind_api( api=self, path='/trends/place.json', payload_type='json', allowed_param=['id', 'exclude'] ) @property def trends_closest(self): """ :reference: https://dev.twitter.com/rest/reference/get/trends/closest :allowed_param:'lat', 'long' """ return bind_api( api=self, path='/trends/closest.json', payload_type='json', allowed_param=['lat', 'long'] ) @property def search(self): """ :reference: https://dev.twitter.com/rest/reference/get/search/tweets :allowed_param:'q', 'lang', 'locale', 'since_id', 'geocode', 'max_id', 'since', 'until', 'result_type', 'count', 'include_entities', 'from', 'to', 'source'] """ return bind_api( api=self, path='/search/tweets.json', payload_type='search_results', allowed_param=['q', 'lang', 'locale', 'since_id', 'geocode', 'max_id', 'since', 'until', 'result_type', 'count', 'include_entities', 'from', 'to', 'source'] ) @property def reverse_geocode(self): """ :reference: https://dev.twitter.com/rest/reference/get/geo/reverse_geocode :allowed_param:'lat', 'long', 'accuracy', 'granularity', 'max_results' """ return bind_api( api=self, path='/geo/reverse_geocode.json', payload_type='place', payload_list=True, allowed_param=['lat', 'long', 'accuracy', 'granularity', 'max_results'] ) @property def geo_id(self): """ :reference: https://dev.twitter.com/rest/reference/get/geo/id/%3Aplace_id :allowed_param:'id' """ return bind_api( api=self, path='/geo/id/{id}.json', payload_type='place', allowed_param=['id'] ) @property def geo_search(self): """ :reference: https://dev.twitter.com/docs/api/1.1/get/geo/search :allowed_param:'lat', 'long', 'query', 'ip', 'granularity', 'accuracy', 'max_results', 'contained_within """ return bind_api( api=self, path='/geo/search.json', payload_type='place', payload_list=True, allowed_param=['lat', 'long', 'query', 'ip', 'granularity', 'accuracy', 'max_results', 'contained_within'] ) @property def geo_similar_places(self): """ :reference: https://dev.twitter.com/rest/reference/get/geo/similar_places :allowed_param:'lat', 'long', 'name', 'contained_within' """ return bind_api( api=self, path='/geo/similar_places.json', payload_type='place', payload_list=True, allowed_param=['lat', 'long', 'name', 'contained_within'] ) @property def supported_languages(self): """ :reference: https://dev.twitter.com/rest/reference/get/help/languages """ return bind_api( api=self, path='/help/languages.json', payload_type='json', require_auth=True ) @property def configuration(self): """ :reference: https://dev.twitter.com/rest/reference/get/help/configuration """ return bind_api( api=self, path='/help/configuration.json', payload_type='json', require_auth=True ) """ Internal use only """ @staticmethod def _pack_image(filename, max_size, form_field="image", f=None): """Pack image from file into multipart-formdata post body""" # image must be less than 700kb in size if f is None: try: if os.path.getsize(filename) > (max_size * 1024): raise TweepError('File is too big, must be less than %skb.' % max_size) except os.error as e: raise TweepError('Unable to access file: %s' % e.strerror) # build the mulitpart-formdata body fp = open(filename, 'rb') else: f.seek(0, 2) # Seek to end of file if f.tell() > (max_size * 1024): raise TweepError('File is too big, must be less than %skb.' % max_size) f.seek(0) # Reset to beginning of file fp = f # image must be gif, jpeg, or png file_type = mimetypes.guess_type(filename) if file_type is None: raise TweepError('Could not determine file type') file_type = file_type[0] if file_type not in ['image/gif', 'image/jpeg', 'image/png']: raise TweepError('Invalid file type for image: %s' % file_type) if isinstance(filename, six.text_type): filename = filename.encode("utf-8") BOUNDARY = b'Tw3ePy' body = list() body.append(b'--' + BOUNDARY) body.append('Content-Disposition: form-data; name="{0}";' ' filename="{1}"'.format(form_field, filename) .encode('utf-8')) body.append('Content-Type: {0}'.format(file_type).encode('utf-8')) body.append(b'') body.append(fp.read()) body.append(b'--' + BOUNDARY + b'--') body.append(b'') fp.close() body = b'\r\n'.join(body) # build headers headers = { 'Content-Type': 'multipart/form-data; boundary=Tw3ePy', 'Content-Length': str(len(body)) } return headers, body tweepy-3.5.0/tweepy/auth.py000066400000000000000000000150761265716604700157130ustar00rootroot00000000000000from __future__ import print_function import six import logging from tweepy.error import TweepError from tweepy.api import API import requests from requests_oauthlib import OAuth1Session, OAuth1 from requests.auth import AuthBase from six.moves.urllib.parse import parse_qs WARNING_MESSAGE = """Warning! Due to a Twitter API bug, signin_with_twitter and access_type don't always play nice together. Details https://dev.twitter.com/discussions/21281""" class AuthHandler(object): def apply_auth(self, url, method, headers, parameters): """Apply authentication headers to request""" raise NotImplementedError def get_username(self): """Return the username of the authenticated user""" raise NotImplementedError class OAuthHandler(AuthHandler): """OAuth authentication handler""" OAUTH_HOST = 'api.twitter.com' OAUTH_ROOT = '/oauth/' def __init__(self, consumer_key, consumer_secret, callback=None): if type(consumer_key) == six.text_type: consumer_key = consumer_key.encode('ascii') if type(consumer_secret) == six.text_type: consumer_secret = consumer_secret.encode('ascii') self.consumer_key = consumer_key self.consumer_secret = consumer_secret self.access_token = None self.access_token_secret = None self.callback = callback self.username = None self.oauth = OAuth1Session(consumer_key, client_secret=consumer_secret, callback_uri=self.callback) def _get_oauth_url(self, endpoint): return 'https://' + self.OAUTH_HOST + self.OAUTH_ROOT + endpoint def apply_auth(self): return OAuth1(self.consumer_key, client_secret=self.consumer_secret, resource_owner_key=self.access_token, resource_owner_secret=self.access_token_secret, decoding=None) def _get_request_token(self, access_type=None): try: url = self._get_oauth_url('request_token') if access_type: url += '?x_auth_access_type=%s' % access_type return self.oauth.fetch_request_token(url) except Exception as e: raise TweepError(e) def set_access_token(self, key, secret): self.access_token = key self.access_token_secret = secret def get_authorization_url(self, signin_with_twitter=False, access_type=None): """Get the authorization URL to redirect the user""" try: if signin_with_twitter: url = self._get_oauth_url('authenticate') if access_type: logging.warning(WARNING_MESSAGE) else: url = self._get_oauth_url('authorize') self.request_token = self._get_request_token(access_type=access_type) return self.oauth.authorization_url(url) except Exception as e: raise TweepError(e) def get_access_token(self, verifier=None): """ After user has authorized the request token, get access token with user supplied verifier. """ try: url = self._get_oauth_url('access_token') self.oauth = OAuth1Session(self.consumer_key, client_secret=self.consumer_secret, resource_owner_key=self.request_token['oauth_token'], resource_owner_secret=self.request_token['oauth_token_secret'], verifier=verifier, callback_uri=self.callback) resp = self.oauth.fetch_access_token(url) self.access_token = resp['oauth_token'] self.access_token_secret = resp['oauth_token_secret'] return self.access_token, self.access_token_secret except Exception as e: raise TweepError(e) def get_xauth_access_token(self, username, password): """ Get an access token from an username and password combination. In order to get this working you need to create an app at http://twitter.com/apps, after that send a mail to api@twitter.com and request activation of xAuth for it. """ try: url = self._get_oauth_url('access_token') oauth = OAuth1(self.consumer_key, client_secret=self.consumer_secret) r = requests.post(url=url, auth=oauth, headers={'x_auth_mode': 'client_auth', 'x_auth_username': username, 'x_auth_password': password}) credentials = parse_qs(r.content) return credentials.get('oauth_token')[0], credentials.get('oauth_token_secret')[0] except Exception as e: raise TweepError(e) def get_username(self): if self.username is None: api = API(self) user = api.verify_credentials() if user: self.username = user.screen_name else: raise TweepError('Unable to get username,' ' invalid oauth token!') return self.username class OAuth2Bearer(AuthBase): def __init__(self, bearer_token): self.bearer_token = bearer_token def __call__(self, request): request.headers['Authorization'] = 'Bearer ' + self.bearer_token return request class AppAuthHandler(AuthHandler): """Application-only authentication handler""" OAUTH_HOST = 'api.twitter.com' OAUTH_ROOT = '/oauth2/' def __init__(self, consumer_key, consumer_secret): self.consumer_key = consumer_key self.consumer_secret = consumer_secret self._bearer_token = '' resp = requests.post(self._get_oauth_url('token'), auth=(self.consumer_key, self.consumer_secret), data={'grant_type': 'client_credentials'}) data = resp.json() if data.get('token_type') != 'bearer': raise TweepError('Expected token_type to equal "bearer", ' 'but got %s instead' % data.get('token_type')) self._bearer_token = data['access_token'] def _get_oauth_url(self, endpoint): return 'https://' + self.OAUTH_HOST + self.OAUTH_ROOT + endpoint def apply_auth(self): return OAuth2Bearer(self._bearer_token) tweepy-3.5.0/tweepy/binder.py000066400000000000000000000252311265716604700162070ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function import time import re from six.moves.urllib.parse import quote import requests import logging from tweepy.error import TweepError, RateLimitError, is_rate_limit_error_message from tweepy.utils import convert_to_utf8_str from tweepy.models import Model re_path_template = re.compile('{\w+}') log = logging.getLogger('tweepy.binder') def bind_api(**config): class APIMethod(object): api = config['api'] path = config['path'] payload_type = config.get('payload_type', None) payload_list = config.get('payload_list', False) allowed_param = config.get('allowed_param', []) method = config.get('method', 'GET') require_auth = config.get('require_auth', False) search_api = config.get('search_api', False) upload_api = config.get('upload_api', False) use_cache = config.get('use_cache', True) session = requests.Session() def __init__(self, args, kwargs): api = self.api # If authentication is required and no credentials # are provided, throw an error. if self.require_auth and not api.auth: raise TweepError('Authentication required!') self.post_data = kwargs.pop('post_data', None) self.retry_count = kwargs.pop('retry_count', api.retry_count) self.retry_delay = kwargs.pop('retry_delay', api.retry_delay) self.retry_errors = kwargs.pop('retry_errors', api.retry_errors) self.wait_on_rate_limit = kwargs.pop('wait_on_rate_limit', api.wait_on_rate_limit) self.wait_on_rate_limit_notify = kwargs.pop('wait_on_rate_limit_notify', api.wait_on_rate_limit_notify) self.parser = kwargs.pop('parser', api.parser) self.session.headers = kwargs.pop('headers', {}) self.build_parameters(args, kwargs) # Pick correct URL root to use if self.search_api: self.api_root = api.search_root elif self.upload_api: self.api_root = api.upload_root else: self.api_root = api.api_root # Perform any path variable substitution self.build_path() if self.search_api: self.host = api.search_host elif self.upload_api: self.host = api.upload_host else: self.host = api.host # Manually set Host header to fix an issue in python 2.5 # or older where Host is set including the 443 port. # This causes Twitter to issue 301 redirect. # See Issue https://github.com/tweepy/tweepy/issues/12 self.session.headers['Host'] = self.host # Monitoring rate limits self._remaining_calls = None self._reset_time = None def build_parameters(self, args, kwargs): self.session.params = {} for idx, arg in enumerate(args): if arg is None: continue try: self.session.params[self.allowed_param[idx]] = convert_to_utf8_str(arg) except IndexError: raise TweepError('Too many parameters supplied!') for k, arg in kwargs.items(): if arg is None: continue if k in self.session.params: raise TweepError('Multiple values for parameter %s supplied!' % k) self.session.params[k] = convert_to_utf8_str(arg) log.info("PARAMS: %r", self.session.params) def build_path(self): for variable in re_path_template.findall(self.path): name = variable.strip('{}') if name == 'user' and 'user' not in self.session.params and self.api.auth: # No 'user' parameter provided, fetch it from Auth instead. value = self.api.auth.get_username() else: try: value = quote(self.session.params[name]) except KeyError: raise TweepError('No parameter value found for path variable: %s' % name) del self.session.params[name] self.path = self.path.replace(variable, value) def execute(self): self.api.cached_result = False # Build the request URL url = self.api_root + self.path full_url = 'https://' + self.host + url # Query the cache if one is available # and this request uses a GET method. if self.use_cache and self.api.cache and self.method == 'GET': cache_result = self.api.cache.get(url) # if cache result found and not expired, return it if cache_result: # must restore api reference if isinstance(cache_result, list): for result in cache_result: if isinstance(result, Model): result._api = self.api else: if isinstance(cache_result, Model): cache_result._api = self.api self.api.cached_result = True return cache_result # Continue attempting request until successful # or maximum number of retries is reached. retries_performed = 0 while retries_performed < self.retry_count + 1: # handle running out of api calls if self.wait_on_rate_limit: if self._reset_time is not None: if self._remaining_calls is not None: if self._remaining_calls < 1: sleep_time = self._reset_time - int(time.time()) if sleep_time > 0: if self.wait_on_rate_limit_notify: print("Rate limit reached. Sleeping for:", sleep_time) time.sleep(sleep_time + 5) # sleep for few extra sec # if self.wait_on_rate_limit and self._reset_time is not None and \ # self._remaining_calls is not None and self._remaining_calls < 1: # sleep_time = self._reset_time - int(time.time()) # if sleep_time > 0: # if self.wait_on_rate_limit_notify: # print("Rate limit reached. Sleeping for: " + str(sleep_time)) # time.sleep(sleep_time + 5) # sleep for few extra sec # Apply authentication if self.api.auth: auth = self.api.auth.apply_auth() # Request compression if configured if self.api.compression: self.session.headers['Accept-encoding'] = 'gzip' # Execute request try: resp = self.session.request(self.method, full_url, data=self.post_data, timeout=self.api.timeout, auth=auth, proxies=self.api.proxy) except Exception as e: raise TweepError('Failed to send request: %s' % e) rem_calls = resp.headers.get('x-rate-limit-remaining') if rem_calls is not None: self._remaining_calls = int(rem_calls) elif isinstance(self._remaining_calls, int): self._remaining_calls -= 1 reset_time = resp.headers.get('x-rate-limit-reset') if reset_time is not None: self._reset_time = int(reset_time) if self.wait_on_rate_limit and self._remaining_calls == 0 and ( # if ran out of calls before waiting switching retry last call resp.status_code == 429 or resp.status_code == 420): continue retry_delay = self.retry_delay # Exit request loop if non-retry error code if resp.status_code == 200: break elif (resp.status_code == 429 or resp.status_code == 420) and self.wait_on_rate_limit: if 'retry-after' in resp.headers: retry_delay = float(resp.headers['retry-after']) elif self.retry_errors and resp.status_code not in self.retry_errors: break # Sleep before retrying request again time.sleep(retry_delay) retries_performed += 1 # If an error was returned, throw an exception self.api.last_response = resp if resp.status_code and not 200 <= resp.status_code < 300: try: error_msg, api_error_code = \ self.parser.parse_error(resp.text) except Exception: error_msg = "Twitter error response: status code = %s" % resp.status_code api_error_code = None if is_rate_limit_error_message(error_msg): raise RateLimitError(error_msg, resp) else: raise TweepError(error_msg, resp, api_code=api_error_code) # Parse the response payload result = self.parser.parse(self, resp.text) # Store result into cache if one is available. if self.use_cache and self.api.cache and self.method == 'GET' and result: self.api.cache.store(url, result) return result def _call(*args, **kwargs): method = APIMethod(args, kwargs) if kwargs.get('create'): return method else: return method.execute() # Set pagination mode if 'cursor' in APIMethod.allowed_param: _call.pagination_mode = 'cursor' elif 'max_id' in APIMethod.allowed_param: if 'since_id' in APIMethod.allowed_param: _call.pagination_mode = 'id' elif 'page' in APIMethod.allowed_param: _call.pagination_mode = 'page' return _call tweepy-3.5.0/tweepy/cache.py000066400000000000000000000311551265716604700160110ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function import time import datetime import threading import os try: import cPickle as pickle except ImportError: import pickle try: import hashlib except ImportError: # python 2.4 import md5 as hashlib try: import fcntl except ImportError: # Probably on a windows system # TODO: use win32file pass class Cache(object): """Cache interface""" def __init__(self, timeout=60): """Initialize the cache timeout: number of seconds to keep a cached entry """ self.timeout = timeout def store(self, key, value): """Add new record to cache key: entry key value: data of entry """ raise NotImplementedError def get(self, key, timeout=None): """Get cached entry if exists and not expired key: which entry to get timeout: override timeout with this value [optional] """ raise NotImplementedError def count(self): """Get count of entries currently stored in cache""" raise NotImplementedError def cleanup(self): """Delete any expired entries in cache.""" raise NotImplementedError def flush(self): """Delete all cached entries""" raise NotImplementedError class MemoryCache(Cache): """In-memory cache""" def __init__(self, timeout=60): Cache.__init__(self, timeout) self._entries = {} self.lock = threading.Lock() def __getstate__(self): # pickle return {'entries': self._entries, 'timeout': self.timeout} def __setstate__(self, state): # unpickle self.lock = threading.Lock() self._entries = state['entries'] self.timeout = state['timeout'] def _is_expired(self, entry, timeout): return timeout > 0 and (time.time() - entry[0]) >= timeout def store(self, key, value): self.lock.acquire() self._entries[key] = (time.time(), value) self.lock.release() def get(self, key, timeout=None): self.lock.acquire() try: # check to see if we have this key entry = self._entries.get(key) if not entry: # no hit, return nothing return None # use provided timeout in arguments if provided # otherwise use the one provided during init. if timeout is None: timeout = self.timeout # make sure entry is not expired if self._is_expired(entry, timeout): # entry expired, delete and return nothing del self._entries[key] return None # entry found and not expired, return it return entry[1] finally: self.lock.release() def count(self): return len(self._entries) def cleanup(self): self.lock.acquire() try: for k, v in dict(self._entries).items(): if self._is_expired(v, self.timeout): del self._entries[k] finally: self.lock.release() def flush(self): self.lock.acquire() self._entries.clear() self.lock.release() class FileCache(Cache): """File-based cache""" # locks used to make cache thread-safe cache_locks = {} def __init__(self, cache_dir, timeout=60): Cache.__init__(self, timeout) if os.path.exists(cache_dir) is False: os.mkdir(cache_dir) self.cache_dir = cache_dir if cache_dir in FileCache.cache_locks: self.lock = FileCache.cache_locks[cache_dir] else: self.lock = threading.Lock() FileCache.cache_locks[cache_dir] = self.lock if os.name == 'posix': self._lock_file = self._lock_file_posix self._unlock_file = self._unlock_file_posix elif os.name == 'nt': self._lock_file = self._lock_file_win32 self._unlock_file = self._unlock_file_win32 else: print('Warning! FileCache locking not supported on this system!') self._lock_file = self._lock_file_dummy self._unlock_file = self._unlock_file_dummy def _get_path(self, key): md5 = hashlib.md5() md5.update(key.encode('utf-8')) return os.path.join(self.cache_dir, md5.hexdigest()) def _lock_file_dummy(self, path, exclusive=True): return None def _unlock_file_dummy(self, lock): return def _lock_file_posix(self, path, exclusive=True): lock_path = path + '.lock' if exclusive is True: f_lock = open(lock_path, 'w') fcntl.lockf(f_lock, fcntl.LOCK_EX) else: f_lock = open(lock_path, 'r') fcntl.lockf(f_lock, fcntl.LOCK_SH) if os.path.exists(lock_path) is False: f_lock.close() return None return f_lock def _unlock_file_posix(self, lock): lock.close() def _lock_file_win32(self, path, exclusive=True): # TODO: implement return None def _unlock_file_win32(self, lock): # TODO: implement return def _delete_file(self, path): os.remove(path) if os.path.exists(path + '.lock'): os.remove(path + '.lock') def store(self, key, value): path = self._get_path(key) self.lock.acquire() try: # acquire lock and open file f_lock = self._lock_file(path) datafile = open(path, 'wb') # write data pickle.dump((time.time(), value), datafile) # close and unlock file datafile.close() self._unlock_file(f_lock) finally: self.lock.release() def get(self, key, timeout=None): return self._get(self._get_path(key), timeout) def _get(self, path, timeout): if os.path.exists(path) is False: # no record return None self.lock.acquire() try: # acquire lock and open f_lock = self._lock_file(path, False) datafile = open(path, 'rb') # read pickled object created_time, value = pickle.load(datafile) datafile.close() # check if value is expired if timeout is None: timeout = self.timeout if timeout > 0: if (time.time() - created_time) >= timeout: # expired! delete from cache value = None self._delete_file(path) # unlock and return result self._unlock_file(f_lock) return value finally: self.lock.release() def count(self): c = 0 for entry in os.listdir(self.cache_dir): if entry.endswith('.lock'): continue c += 1 return c def cleanup(self): for entry in os.listdir(self.cache_dir): if entry.endswith('.lock'): continue self._get(os.path.join(self.cache_dir, entry), None) def flush(self): for entry in os.listdir(self.cache_dir): if entry.endswith('.lock'): continue self._delete_file(os.path.join(self.cache_dir, entry)) class MemCacheCache(Cache): """Cache interface""" def __init__(self, client, timeout=60): """Initialize the cache client: The memcache client timeout: number of seconds to keep a cached entry """ self.client = client self.timeout = timeout def store(self, key, value): """Add new record to cache key: entry key value: data of entry """ self.client.set(key, value, time=self.timeout) def get(self, key, timeout=None): """Get cached entry if exists and not expired key: which entry to get timeout: override timeout with this value [optional]. DOES NOT WORK HERE """ return self.client.get(key) def count(self): """Get count of entries currently stored in cache. RETURN 0""" raise NotImplementedError def cleanup(self): """Delete any expired entries in cache. NO-OP""" raise NotImplementedError def flush(self): """Delete all cached entries. NO-OP""" raise NotImplementedError class RedisCache(Cache): """Cache running in a redis server""" def __init__(self, client, timeout=60, keys_container='tweepy:keys', pre_identifier='tweepy:'): Cache.__init__(self, timeout) self.client = client self.keys_container = keys_container self.pre_identifier = pre_identifier def _is_expired(self, entry, timeout): # Returns true if the entry has expired return timeout > 0 and (time.time() - entry[0]) >= timeout def store(self, key, value): """Store the key, value pair in our redis server""" # Prepend tweepy to our key, # this makes it easier to identify tweepy keys in our redis server key = self.pre_identifier + key # Get a pipe (to execute several redis commands in one step) pipe = self.client.pipeline() # Set our values in a redis hash (similar to python dict) pipe.set(key, pickle.dumps((time.time(), value))) # Set the expiration pipe.expire(key, self.timeout) # Add the key to a set containing all the keys pipe.sadd(self.keys_container, key) # Execute the instructions in the redis server pipe.execute() def get(self, key, timeout=None): """Given a key, returns an element from the redis table""" key = self.pre_identifier + key # Check to see if we have this key unpickled_entry = self.client.get(key) if not unpickled_entry: # No hit, return nothing return None entry = pickle.loads(unpickled_entry) # Use provided timeout in arguments if provided # otherwise use the one provided during init. if timeout is None: timeout = self.timeout # Make sure entry is not expired if self._is_expired(entry, timeout): # entry expired, delete and return nothing self.delete_entry(key) return None # entry found and not expired, return it return entry[1] def count(self): """Note: This is not very efficient, since it retreives all the keys from the redis server to know how many keys we have""" return len(self.client.smembers(self.keys_container)) def delete_entry(self, key): """Delete an object from the redis table""" pipe = self.client.pipeline() pipe.srem(self.keys_container, key) pipe.delete(key) pipe.execute() def cleanup(self): """Cleanup all the expired keys""" keys = self.client.smembers(self.keys_container) for key in keys: entry = self.client.get(key) if entry: entry = pickle.loads(entry) if self._is_expired(entry, self.timeout): self.delete_entry(key) def flush(self): """Delete all entries from the cache""" keys = self.client.smembers(self.keys_container) for key in keys: self.delete_entry(key) class MongodbCache(Cache): """A simple pickle-based MongoDB cache sytem.""" def __init__(self, db, timeout=3600, collection='tweepy_cache'): """Should receive a "database" cursor from pymongo.""" Cache.__init__(self, timeout) self.timeout = timeout self.col = db[collection] self.col.create_index('created', expireAfterSeconds=timeout) def store(self, key, value): from bson.binary import Binary now = datetime.datetime.utcnow() blob = Binary(pickle.dumps(value)) self.col.insert({'created': now, '_id': key, 'value': blob}) def get(self, key, timeout=None): if timeout: raise NotImplementedError obj = self.col.find_one({'_id': key}) if obj: return pickle.loads(obj['value']) def count(self): return self.col.find({}).count() def delete_entry(self, key): return self.col.remove({'_id': key}) def cleanup(self): """MongoDB will automatically clear expired keys.""" pass def flush(self): self.col.drop() self.col.create_index('created', expireAfterSeconds=self.timeout) tweepy-3.5.0/tweepy/cursor.py000066400000000000000000000156331265716604700162660ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function from tweepy.error import TweepError from tweepy.parsers import ModelParser, RawParser class Cursor(object): """Pagination helper class""" def __init__(self, method, *args, **kargs): if hasattr(method, 'pagination_mode'): if method.pagination_mode == 'cursor': self.iterator = CursorIterator(method, args, kargs) elif method.pagination_mode == 'id': self.iterator = IdIterator(method, args, kargs) elif method.pagination_mode == 'page': self.iterator = PageIterator(method, args, kargs) else: raise TweepError('Invalid pagination mode.') else: raise TweepError('This method does not perform pagination') def pages(self, limit=0): """Return iterator for pages""" if limit > 0: self.iterator.limit = limit return self.iterator def items(self, limit=0): """Return iterator for items in each page""" i = ItemIterator(self.iterator) i.limit = limit return i class BaseIterator(object): def __init__(self, method, args, kargs): self.method = method self.args = args self.kargs = kargs self.limit = 0 def __next__(self): return self.next() def next(self): raise NotImplementedError def prev(self): raise NotImplementedError def __iter__(self): return self class CursorIterator(BaseIterator): def __init__(self, method, args, kargs): BaseIterator.__init__(self, method, args, kargs) start_cursor = kargs.pop('cursor', None) self.next_cursor = start_cursor or -1 self.prev_cursor = start_cursor or 0 self.num_tweets = 0 def next(self): if self.next_cursor == 0 or (self.limit and self.num_tweets == self.limit): raise StopIteration data, cursors = self.method(cursor=self.next_cursor, *self.args, **self.kargs) self.prev_cursor, self.next_cursor = cursors if len(data) == 0: raise StopIteration self.num_tweets += 1 return data def prev(self): if self.prev_cursor == 0: raise TweepError('Can not page back more, at first page') data, self.next_cursor, self.prev_cursor = self.method(cursor=self.prev_cursor, *self.args, **self.kargs) self.num_tweets -= 1 return data class IdIterator(BaseIterator): def __init__(self, method, args, kargs): BaseIterator.__init__(self, method, args, kargs) self.max_id = kargs.pop('max_id', None) self.num_tweets = 0 self.results = [] self.model_results = [] self.index = 0 def next(self): """Fetch a set of items with IDs less than current set.""" if self.limit and self.limit == self.num_tweets: raise StopIteration if self.index >= len(self.results) - 1: data = self.method(max_id=self.max_id, parser=RawParser(), *self.args, **self.kargs) if hasattr(self.method, '__self__'): old_parser = self.method.__self__.parser # Hack for models which expect ModelParser to be set self.method.__self__.parser = ModelParser() # This is a special invocation that returns the underlying # APIMethod class model = ModelParser().parse(self.method(create=True), data) if hasattr(self.method, '__self__'): self.method.__self__.parser = old_parser result = self.method.__self__.parser.parse(self.method(create=True), data) else: result = model if len(self.results) != 0: self.index += 1 self.results.append(result) self.model_results.append(model) else: self.index += 1 result = self.results[self.index] model = self.model_results[self.index] if len(result) == 0: raise StopIteration # TODO: Make this not dependant on the parser making max_id and # since_id available self.max_id = model.max_id self.num_tweets += 1 return result def prev(self): """Fetch a set of items with IDs greater than current set.""" if self.limit and self.limit == self.num_tweets: raise StopIteration self.index -= 1 if self.index < 0: # There's no way to fetch a set of tweets directly 'above' the # current set raise StopIteration data = self.results[self.index] self.max_id = self.model_results[self.index].max_id self.num_tweets += 1 return data class PageIterator(BaseIterator): def __init__(self, method, args, kargs): BaseIterator.__init__(self, method, args, kargs) self.current_page = 0 def next(self): if self.limit > 0: if self.current_page > self.limit: raise StopIteration items = self.method(page=self.current_page, *self.args, **self.kargs) if len(items) == 0: raise StopIteration self.current_page += 1 return items def prev(self): if self.current_page == 1: raise TweepError('Can not page back more, at first page') self.current_page -= 1 return self.method(page=self.current_page, *self.args, **self.kargs) class ItemIterator(BaseIterator): def __init__(self, page_iterator): self.page_iterator = page_iterator self.limit = 0 self.current_page = None self.page_index = -1 self.num_tweets = 0 def next(self): if self.limit > 0: if self.num_tweets == self.limit: raise StopIteration if self.current_page is None or self.page_index == len(self.current_page) - 1: # Reached end of current page, get the next page... self.current_page = self.page_iterator.next() self.page_index = -1 self.page_index += 1 self.num_tweets += 1 return self.current_page[self.page_index] def prev(self): if self.current_page is None: raise TweepError('Can not go back more, at first page') if self.page_index == 0: # At the beginning of the current page, move to next... self.current_page = self.page_iterator.prev() self.page_index = len(self.current_page) if self.page_index == 0: raise TweepError('No more items') self.page_index -= 1 self.num_tweets -= 1 return self.current_page[self.page_index] tweepy-3.5.0/tweepy/error.py000066400000000000000000000016521265716604700160760ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function import six class TweepError(Exception): """Tweepy exception""" def __init__(self, reason, response=None, api_code=None): self.reason = six.text_type(reason) self.response = response self.api_code = api_code Exception.__init__(self, reason) def __str__(self): return self.reason def is_rate_limit_error_message(message): """Check if the supplied error message belongs to a rate limit error.""" return isinstance(message, list) \ and len(message) > 0 \ and 'code' in message[0] \ and message[0]['code'] == 88 class RateLimitError(TweepError): """Exception for Tweepy hitting the rate limit.""" # RateLimitError has the exact same properties and inner workings # as TweepError for backwards compatibility reasons. pass tweepy-3.5.0/tweepy/models.py000066400000000000000000000333051265716604700162300ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import absolute_import, print_function from tweepy.utils import parse_datetime, parse_html_value, parse_a_href class ResultSet(list): """A list like object that holds results from a Twitter API query.""" def __init__(self, max_id=None, since_id=None): super(ResultSet, self).__init__() self._max_id = max_id self._since_id = since_id @property def max_id(self): if self._max_id: return self._max_id ids = self.ids() # Max_id is always set to the *smallest* id, minus one, in the set return (min(ids) - 1) if ids else None @property def since_id(self): if self._since_id: return self._since_id ids = self.ids() # Since_id is always set to the *greatest* id in the set return max(ids) if ids else None def ids(self): return [item.id for item in self if hasattr(item, 'id')] class Model(object): def __init__(self, api=None): self._api = api def __getstate__(self): # pickle pickle = dict(self.__dict__) try: del pickle['_api'] # do not pickle the API reference except KeyError: pass return pickle @classmethod def parse(cls, api, json): """Parse a JSON object into a model instance.""" raise NotImplementedError @classmethod def parse_list(cls, api, json_list): """ Parse a list of JSON objects into a result set of model instances. """ results = ResultSet() for obj in json_list: if obj: results.append(cls.parse(api, obj)) return results def __repr__(self): state = ['%s=%s' % (k, repr(v)) for (k, v) in vars(self).items()] return '%s(%s)' % (self.__class__.__name__, ', '.join(state)) class Status(Model): @classmethod def parse(cls, api, json): status = cls(api) setattr(status, '_json', json) for k, v in json.items(): if k == 'user': user_model = getattr(api.parser.model_factory, 'user') if api else User user = user_model.parse(api, v) setattr(status, 'author', user) setattr(status, 'user', user) # DEPRECIATED elif k == 'created_at': setattr(status, k, parse_datetime(v)) elif k == 'source': if '<' in v: setattr(status, k, parse_html_value(v)) setattr(status, 'source_url', parse_a_href(v)) else: setattr(status, k, v) setattr(status, 'source_url', None) elif k == 'retweeted_status': setattr(status, k, Status.parse(api, v)) elif k == 'place': if v is not None: setattr(status, k, Place.parse(api, v)) else: setattr(status, k, None) else: setattr(status, k, v) return status def destroy(self): return self._api.destroy_status(self.id) def retweet(self): return self._api.retweet(self.id) def retweets(self): return self._api.retweets(self.id) def favorite(self): return self._api.create_favorite(self.id) def __eq__(self, other): if isinstance(other, Status): return self.id == other.id return NotImplemented def __ne__(self, other): result = self == other if result is NotImplemented: return result return not result class User(Model): @classmethod def parse(cls, api, json): user = cls(api) setattr(user, '_json', json) for k, v in json.items(): if k == 'created_at': setattr(user, k, parse_datetime(v)) elif k == 'status': setattr(user, k, Status.parse(api, v)) elif k == 'following': # twitter sets this to null if it is false if v is True: setattr(user, k, True) else: setattr(user, k, False) else: setattr(user, k, v) return user @classmethod def parse_list(cls, api, json_list): if isinstance(json_list, list): item_list = json_list else: item_list = json_list['users'] results = ResultSet() for obj in item_list: results.append(cls.parse(api, obj)) return results def timeline(self, **kargs): return self._api.user_timeline(user_id=self.id, **kargs) def friends(self, **kargs): return self._api.friends(user_id=self.id, **kargs) def followers(self, **kargs): return self._api.followers(user_id=self.id, **kargs) def follow(self): self._api.create_friendship(user_id=self.id) self.following = True def unfollow(self): self._api.destroy_friendship(user_id=self.id) self.following = False def lists_memberships(self, *args, **kargs): return self._api.lists_memberships(user=self.screen_name, *args, **kargs) def lists_subscriptions(self, *args, **kargs): return self._api.lists_subscriptions(user=self.screen_name, *args, **kargs) def lists(self, *args, **kargs): return self._api.lists_all(user=self.screen_name, *args, **kargs) def followers_ids(self, *args, **kargs): return self._api.followers_ids(user_id=self.id, *args, **kargs) class DirectMessage(Model): @classmethod def parse(cls, api, json): dm = cls(api) for k, v in json.items(): if k == 'sender' or k == 'recipient': setattr(dm, k, User.parse(api, v)) elif k == 'created_at': setattr(dm, k, parse_datetime(v)) else: setattr(dm, k, v) return dm def destroy(self): return self._api.destroy_direct_message(self.id) class Friendship(Model): @classmethod def parse(cls, api, json): relationship = json['relationship'] # parse source source = cls(api) for k, v in relationship['source'].items(): setattr(source, k, v) # parse target target = cls(api) for k, v in relationship['target'].items(): setattr(target, k, v) return source, target class Category(Model): @classmethod def parse(cls, api, json): category = cls(api) for k, v in json.items(): setattr(category, k, v) return category class SavedSearch(Model): @classmethod def parse(cls, api, json): ss = cls(api) for k, v in json.items(): if k == 'created_at': setattr(ss, k, parse_datetime(v)) else: setattr(ss, k, v) return ss def destroy(self): return self._api.destroy_saved_search(self.id) class SearchResults(ResultSet): @classmethod def parse(cls, api, json): metadata = json['search_metadata'] results = SearchResults() results.refresh_url = metadata.get('refresh_url') results.completed_in = metadata.get('completed_in') results.query = metadata.get('query') results.count = metadata.get('count') results.next_results = metadata.get('next_results') status_model = getattr(api.parser.model_factory, 'status') if api else Status for status in json['statuses']: results.append(status_model.parse(api, status)) return results class List(Model): @classmethod def parse(cls, api, json): lst = List(api) for k, v in json.items(): if k == 'user': setattr(lst, k, User.parse(api, v)) elif k == 'created_at': setattr(lst, k, parse_datetime(v)) else: setattr(lst, k, v) return lst @classmethod def parse_list(cls, api, json_list, result_set=None): results = ResultSet() if isinstance(json_list, dict): json_list = json_list['lists'] for obj in json_list: results.append(cls.parse(api, obj)) return results def update(self, **kargs): return self._api.update_list(self.slug, **kargs) def destroy(self): return self._api.destroy_list(self.slug) def timeline(self, **kargs): return self._api.list_timeline(self.user.screen_name, self.slug, **kargs) def add_member(self, id): return self._api.add_list_member(self.slug, id) def remove_member(self, id): return self._api.remove_list_member(self.slug, id) def members(self, **kargs): return self._api.list_members(self.user.screen_name, self.slug, **kargs) def is_member(self, id): return self._api.is_list_member(self.user.screen_name, self.slug, id) def subscribe(self): return self._api.subscribe_list(self.user.screen_name, self.slug) def unsubscribe(self): return self._api.unsubscribe_list(self.user.screen_name, self.slug) def subscribers(self, **kargs): return self._api.list_subscribers(self.user.screen_name, self.slug, **kargs) def is_subscribed(self, id): return self._api.is_subscribed_list(self.user.screen_name, self.slug, id) class Relation(Model): @classmethod def parse(cls, api, json): result = cls(api) for k, v in json.items(): if k == 'value' and json['kind'] in ['Tweet', 'LookedupStatus']: setattr(result, k, Status.parse(api, v)) elif k == 'results': setattr(result, k, Relation.parse_list(api, v)) else: setattr(result, k, v) return result class Relationship(Model): @classmethod def parse(cls, api, json): result = cls(api) for k, v in json.items(): if k == 'connections': setattr(result, 'is_following', 'following' in v) setattr(result, 'is_followed_by', 'followed_by' in v) else: setattr(result, k, v) return result class JSONModel(Model): @classmethod def parse(cls, api, json): return json class IDModel(Model): @classmethod def parse(cls, api, json): if isinstance(json, list): return json else: return json['ids'] class BoundingBox(Model): @classmethod def parse(cls, api, json): result = cls(api) if json is not None: for k, v in json.items(): setattr(result, k, v) return result def origin(self): """ Return longitude, latitude of southwest (bottom, left) corner of bounding box, as a tuple. This assumes that bounding box is always a rectangle, which appears to be the case at present. """ return tuple(self.coordinates[0][0]) def corner(self): """ Return longitude, latitude of northeast (top, right) corner of bounding box, as a tuple. This assumes that bounding box is always a rectangle, which appears to be the case at present. """ return tuple(self.coordinates[0][2]) class Place(Model): @classmethod def parse(cls, api, json): place = cls(api) for k, v in json.items(): if k == 'bounding_box': # bounding_box value may be null (None.) # Example: "United States" (id=96683cc9126741d1) if v is not None: t = BoundingBox.parse(api, v) else: t = v setattr(place, k, t) elif k == 'contained_within': # contained_within is a list of Places. setattr(place, k, Place.parse_list(api, v)) else: setattr(place, k, v) return place @classmethod def parse_list(cls, api, json_list): if isinstance(json_list, list): item_list = json_list else: item_list = json_list['result']['places'] results = ResultSet() for obj in item_list: results.append(cls.parse(api, obj)) return results class Media(Model): @classmethod def parse(cls, api, json): media = cls(api) for k, v in json.items(): setattr(media, k, v) return media class ModelFactory(object): """ Used by parsers for creating instances of models. You may subclass this factory to add your own extended models. """ status = Status user = User direct_message = DirectMessage friendship = Friendship saved_search = SavedSearch search_results = SearchResults category = Category list = List relation = Relation relationship = Relationship media = Media json = JSONModel ids = IDModel place = Place bounding_box = BoundingBox tweepy-3.5.0/tweepy/parsers.py000066400000000000000000000060451265716604700164250ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function from tweepy.models import ModelFactory from tweepy.utils import import_simplejson from tweepy.error import TweepError class Parser(object): def parse(self, method, payload): """ Parse the response payload and return the result. Returns a tuple that contains the result data and the cursors (or None if not present). """ raise NotImplementedError def parse_error(self, payload): """ Parse the error message and api error code from payload. Return them as an (error_msg, error_code) tuple. If unable to parse the message, throw an exception and default error message will be used. """ raise NotImplementedError class RawParser(Parser): def __init__(self): pass def parse(self, method, payload): return payload def parse_error(self, payload): return payload class JSONParser(Parser): payload_format = 'json' def __init__(self): self.json_lib = import_simplejson() def parse(self, method, payload): try: json = self.json_lib.loads(payload) except Exception as e: raise TweepError('Failed to parse JSON payload: %s' % e) needs_cursors = 'cursor' in method.session.params if needs_cursors and isinstance(json, dict): if 'previous_cursor' in json: if 'next_cursor' in json: cursors = json['previous_cursor'], json['next_cursor'] return json, cursors else: return json def parse_error(self, payload): error_object = self.json_lib.loads(payload) if 'error' in error_object: reason = error_object['error'] api_code = error_object.get('code') else: reason = error_object['errors'] api_code = [error.get('code') for error in reason if error.get('code')] api_code = api_code[0] if len(api_code) == 1 else api_code return reason, api_code class ModelParser(JSONParser): def __init__(self, model_factory=None): JSONParser.__init__(self) self.model_factory = model_factory or ModelFactory def parse(self, method, payload): try: if method.payload_type is None: return model = getattr(self.model_factory, method.payload_type) except AttributeError: raise TweepError('No model for this payload type: ' '%s' % method.payload_type) json = JSONParser.parse(self, method, payload) if isinstance(json, tuple): json, cursors = json else: cursors = None if method.payload_list: result = model.parse_list(method.api, json) else: result = model.parse(method.api, json) if cursors: return result, cursors else: return result tweepy-3.5.0/tweepy/streaming.py000066400000000000000000000412061265716604700167350ustar00rootroot00000000000000# Tweepy # Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. # Appengine users: https://developers.google.com/appengine/docs/python/sockets/#making_httplib_use_sockets from __future__ import absolute_import, print_function import logging import re import requests from requests.exceptions import Timeout from threading import Thread from time import sleep import six import ssl from tweepy.models import Status from tweepy.api import API from tweepy.error import TweepError from tweepy.utils import import_simplejson json = import_simplejson() STREAM_VERSION = '1.1' class StreamListener(object): def __init__(self, api=None): self.api = api or API() def on_connect(self): """Called once connected to streaming server. This will be invoked once a successful response is received from the server. Allows the listener to perform some work prior to entering the read loop. """ pass def on_data(self, raw_data): """Called when raw data is received from connection. Override this method if you wish to manually handle the stream data. Return False to stop stream and close connection. """ data = json.loads(raw_data) if 'in_reply_to_status_id' in data: status = Status.parse(self.api, data) if self.on_status(status) is False: return False elif 'delete' in data: delete = data['delete']['status'] if self.on_delete(delete['id'], delete['user_id']) is False: return False elif 'event' in data: status = Status.parse(self.api, data) if self.on_event(status) is False: return False elif 'direct_message' in data: status = Status.parse(self.api, data) if self.on_direct_message(status) is False: return False elif 'friends' in data: if self.on_friends(data['friends']) is False: return False elif 'limit' in data: if self.on_limit(data['limit']['track']) is False: return False elif 'disconnect' in data: if self.on_disconnect(data['disconnect']) is False: return False elif 'warning' in data: if self.on_warning(data['warning']) is False: return False else: logging.error("Unknown message type: " + str(raw_data)) def keep_alive(self): """Called when a keep-alive arrived""" return def on_status(self, status): """Called when a new status arrives""" return def on_exception(self, exception): """Called when an unhandled exception occurs.""" return def on_delete(self, status_id, user_id): """Called when a delete notice arrives for a status""" return def on_event(self, status): """Called when a new event arrives""" return def on_direct_message(self, status): """Called when a new direct message arrives""" return def on_friends(self, friends): """Called when a friends list arrives. friends is a list that contains user_id """ return def on_limit(self, track): """Called when a limitation notice arrives""" return def on_error(self, status_code): """Called when a non-200 status code is returned""" return False def on_timeout(self): """Called when stream connection times out""" return def on_disconnect(self, notice): """Called when twitter sends a disconnect notice Disconnect codes are listed here: https://dev.twitter.com/docs/streaming-apis/messages#Disconnect_messages_disconnect """ return def on_warning(self, notice): """Called when a disconnection warning message arrives""" return class ReadBuffer(object): """Buffer data from the response in a smarter way than httplib/requests can. Tweets are roughly in the 2-12kb range, averaging around 3kb. Requests/urllib3/httplib/socket all use socket.read, which blocks until enough data is returned. On some systems (eg google appengine), socket reads are quite slow. To combat this latency we can read big chunks, but the blocking part means we won't get results until enough tweets have arrived. That may not be a big deal for high throughput systems. For low throughput systems we don't want to sacrafice latency, so we use small chunks so it can read the length and the tweet in 2 read calls. """ def __init__(self, stream, chunk_size, encoding='utf-8'): self._stream = stream self._buffer = six.b('') self._chunk_size = chunk_size self._encoding = encoding def read_len(self, length): while not self._stream.closed: if len(self._buffer) >= length: return self._pop(length) read_len = max(self._chunk_size, length - len(self._buffer)) self._buffer += self._stream.read(read_len) def read_line(self, sep=six.b('\n')): """Read the data stream until a given separator is found (default \n) :param sep: Separator to read until. Must by of the bytes type (str in python 2, bytes in python 3) :return: The str of the data read until sep """ start = 0 while not self._stream.closed: loc = self._buffer.find(sep, start) if loc >= 0: return self._pop(loc + len(sep)) else: start = len(self._buffer) self._buffer += self._stream.read(self._chunk_size) def _pop(self, length): r = self._buffer[:length] self._buffer = self._buffer[length:] return r.decode(self._encoding) class Stream(object): host = 'stream.twitter.com' def __init__(self, auth, listener, **options): self.auth = auth self.listener = listener self.running = False self.timeout = options.get("timeout", 300.0) self.retry_count = options.get("retry_count") # values according to # https://dev.twitter.com/docs/streaming-apis/connecting#Reconnecting self.retry_time_start = options.get("retry_time", 5.0) self.retry_420_start = options.get("retry_420", 60.0) self.retry_time_cap = options.get("retry_time_cap", 320.0) self.snooze_time_step = options.get("snooze_time", 0.25) self.snooze_time_cap = options.get("snooze_time_cap", 16) # The default socket.read size. Default to less than half the size of # a tweet so that it reads tweets with the minimal latency of 2 reads # per tweet. Values higher than ~1kb will increase latency by waiting # for more data to arrive but may also increase throughput by doing # fewer socket read calls. self.chunk_size = options.get("chunk_size", 512) self.verify = options.get("verify", True) self.api = API() self.headers = options.get("headers") or {} self.new_session() self.body = None self.retry_time = self.retry_time_start self.snooze_time = self.snooze_time_step def new_session(self): self.session = requests.Session() self.session.headers = self.headers self.session.params = None def _run(self): # Authenticate url = "https://%s%s" % (self.host, self.url) # Connect and process the stream error_counter = 0 resp = None exception = None while self.running: if self.retry_count is not None: if error_counter > self.retry_count: # quit if error count greater than retry count break try: auth = self.auth.apply_auth() resp = self.session.request('POST', url, data=self.body, timeout=self.timeout, stream=True, auth=auth, verify=self.verify) if resp.status_code != 200: if self.listener.on_error(resp.status_code) is False: break error_counter += 1 if resp.status_code == 420: self.retry_time = max(self.retry_420_start, self.retry_time) sleep(self.retry_time) self.retry_time = min(self.retry_time * 2, self.retry_time_cap) else: error_counter = 0 self.retry_time = self.retry_time_start self.snooze_time = self.snooze_time_step self.listener.on_connect() self._read_loop(resp) except (Timeout, ssl.SSLError) as exc: # This is still necessary, as a SSLError can actually be # thrown when using Requests # If it's not time out treat it like any other exception if isinstance(exc, ssl.SSLError): if not (exc.args and 'timed out' in str(exc.args[0])): exception = exc break if self.listener.on_timeout() is False: break if self.running is False: break sleep(self.snooze_time) self.snooze_time = min(self.snooze_time + self.snooze_time_step, self.snooze_time_cap) except Exception as exc: exception = exc # any other exception is fatal, so kill loop break # cleanup self.running = False if resp: resp.close() self.new_session() if exception: # call a handler first so that the exception can be logged. self.listener.on_exception(exception) raise exception def _data(self, data): if self.listener.on_data(data) is False: self.running = False def _read_loop(self, resp): charset = resp.headers.get('content-type', default='') enc_search = re.search('charset=(?P\S*)', charset) if enc_search is not None: encoding = enc_search.group('enc') else: encoding = 'utf-8' buf = ReadBuffer(resp.raw, self.chunk_size, encoding=encoding) while self.running and not resp.raw.closed: length = 0 while not resp.raw.closed: line = buf.read_line().strip() if not line: self.listener.keep_alive() # keep-alive new lines are expected elif line.isdigit(): length = int(line) break else: raise TweepError('Expecting length, unexpected value found') next_status_obj = buf.read_len(length) if self.running: self._data(next_status_obj) # # Note: keep-alive newlines might be inserted before each length value. # # read until we get a digit... # c = b'\n' # for c in resp.iter_content(decode_unicode=True): # if c == b'\n': # continue # break # # delimited_string = c # # # read rest of delimiter length.. # d = b'' # for d in resp.iter_content(decode_unicode=True): # if d != b'\n': # delimited_string += d # continue # break # # # read the next twitter status object # if delimited_string.decode('utf-8').strip().isdigit(): # status_id = int(delimited_string) # next_status_obj = resp.raw.read(status_id) # if self.running: # self._data(next_status_obj.decode('utf-8')) if resp.raw.closed: self.on_closed(resp) def _start(self, async): self.running = True if async: self._thread = Thread(target=self._run) self._thread.start() else: self._run() def on_closed(self, resp): """ Called when the response has been closed by Twitter """ pass def userstream(self, stall_warnings=False, _with=None, replies=None, track=None, locations=None, async=False, encoding='utf8'): self.session.params = {'delimited': 'length'} if self.running: raise TweepError('Stream object already connected!') self.url = '/%s/user.json' % STREAM_VERSION self.host = 'userstream.twitter.com' if stall_warnings: self.session.params['stall_warnings'] = stall_warnings if _with: self.session.params['with'] = _with if replies: self.session.params['replies'] = replies if locations and len(locations) > 0: if len(locations) % 4 != 0: raise TweepError("Wrong number of locations points, " "it has to be a multiple of 4") self.session.params['locations'] = ','.join(['%.2f' % l for l in locations]) if track: self.session.params['track'] = u','.join(track).encode(encoding) self._start(async) def firehose(self, count=None, async=False): self.session.params = {'delimited': 'length'} if self.running: raise TweepError('Stream object already connected!') self.url = '/%s/statuses/firehose.json' % STREAM_VERSION if count: self.url += '&count=%s' % count self._start(async) def retweet(self, async=False): self.session.params = {'delimited': 'length'} if self.running: raise TweepError('Stream object already connected!') self.url = '/%s/statuses/retweet.json' % STREAM_VERSION self._start(async) def sample(self, async=False, languages=None): self.session.params = {'delimited': 'length'} if self.running: raise TweepError('Stream object already connected!') self.url = '/%s/statuses/sample.json' % STREAM_VERSION if languages: self.session.params['language'] = ','.join(map(str, languages)) self._start(async) def filter(self, follow=None, track=None, async=False, locations=None, stall_warnings=False, languages=None, encoding='utf8', filter_level=None): self.body = {} self.session.headers['Content-type'] = "application/x-www-form-urlencoded" if self.running: raise TweepError('Stream object already connected!') self.url = '/%s/statuses/filter.json' % STREAM_VERSION if follow: self.body['follow'] = u','.join(follow).encode(encoding) if track: self.body['track'] = u','.join(track).encode(encoding) if locations and len(locations) > 0: if len(locations) % 4 != 0: raise TweepError("Wrong number of locations points, " "it has to be a multiple of 4") self.body['locations'] = u','.join(['%.4f' % l for l in locations]) if stall_warnings: self.body['stall_warnings'] = stall_warnings if languages: self.body['language'] = u','.join(map(str, languages)) if filter_level: self.body['filter_level'] = unicode(filter_level, encoding) self.session.params = {'delimited': 'length'} self.host = 'stream.twitter.com' self._start(async) def sitestream(self, follow, stall_warnings=False, with_='user', replies=False, async=False): self.body = {} if self.running: raise TweepError('Stream object already connected!') self.url = '/%s/site.json' % STREAM_VERSION self.body['follow'] = u','.join(map(six.text_type, follow)) self.body['delimited'] = 'length' if stall_warnings: self.body['stall_warnings'] = stall_warnings if with_: self.body['with'] = with_ if replies: self.body['replies'] = replies self._start(async) def disconnect(self): if self.running is False: return self.running = False tweepy-3.5.0/tweepy/utils.py000066400000000000000000000023701265716604700161030ustar00rootroot00000000000000# Tweepy # Copyright 2010 Joshua Roesslein # See LICENSE for details. from __future__ import print_function from datetime import datetime import six from six.moves.urllib.parse import quote from email.utils import parsedate def parse_datetime(string): return datetime(*(parsedate(string)[:6])) def parse_html_value(html): return html[html.find('>')+1:html.rfind('<')] def parse_a_href(atag): start = atag.find('"') + 1 end = atag.find('"', start) return atag[start:end] def convert_to_utf8_str(arg): # written by Michael Norton (http://docondev.blogspot.com/) if isinstance(arg, six.text_type): arg = arg.encode('utf-8') elif not isinstance(arg, bytes): arg = six.text_type(arg).encode('utf-8') return arg def import_simplejson(): try: import simplejson as json except ImportError: try: import json # Python 2.6+ except ImportError: try: # Google App Engine from django.utils import simplejson as json except ImportError: raise ImportError("Can't load a json library") return json def list_to_csv(item_list): if item_list: return ','.join([str(i) for i in item_list])