{ "info": { "author": "Mike Verdone", "author_email": "mike.verdone+twitterapi@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Communications :: Chat :: Internet Relay Chat", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities" ], "description": "Python Twitter Tools\n====================\n\n|Build Status| |Coverage Status|\n\nThe Minimalist Twitter API for Python is a Python API for Twitter,\neveryone's favorite Web 2.0 Facebook-style status updater for people on\nthe go.\n\nAlso included is a Twitter command-line tool for getting your friends'\ntweets and setting your own tweet from the safety and security of your\nfavorite shell and an IRC bot that can announce Twitter updates to an\nIRC channel.\n\nFor more information, after installing the ``twitter`` package:\n\n- import the ``twitter`` package and run ``help()`` on it\n- run ``twitter -h`` for command-line tool help\n\ntwitter - The Command-Line Tool\n-------------------------------\n\nThe command-line tool lets you do some awesome things:\n\n- view your tweets, recent replies, and tweets in lists\n- view the public timeline\n- follow and unfollow (leave) friends\n- various output formats for tweet information\n\nThe bottom line: type ``twitter``, receive tweets.\n\ntwitterbot - The IRC Bot\n------------------------\n\nThe IRC bot is associated with a Twitter account (either your own\naccount or an account you create for the bot). The bot announces all\ntweets from friends it is following. It can be made to follow or leave\nfriends through IRC /msg commands.\n\n``twitter-log``\n---------------\n\n``twitter-log`` is a simple command-line tool that dumps all public\ntweets from a given user in a simple text format. It is useful to get a\ncomplete offsite backup of all your tweets. Run ``twitter-log`` and read\nthe instructions.\n\n``twitter-archiver`` and ``twitter-follow``\n-------------------------------------------\n\ntwitter-archiver will log all the tweets posted by any user since they\nstarted posting. twitter-follow will print a list of all of all the\nfollowers of a user (or all the users that user follows).\n\nProgramming with the Twitter API classes\n========================================\n\nThe ``Twitter`` and ``TwitterStream`` classes are the key to building\nyour own Twitter-enabled applications.\n\nThe ``Twitter`` class\n---------------------\n\nThe minimalist yet fully featured Twitter API class.\n\nGet RESTful data by accessing members of this class. The result is\ndecoded python objects (lists and dicts).\n\nThe Twitter API is documented at:\n\n**https://dev.twitter.com/overview/documentation**\n\nThe list of most accessible functions is listed at:\n\n**https://dev.twitter.com/rest/public**\n\nExamples:\n\n.. code:: python\n\n from twitter import *\n\n t = Twitter(\n auth=OAuth(token, token_secret, consumer_key, consumer_secret))\n\n # Get your \"home\" timeline\n t.statuses.home_timeline()\n\n # Get a particular friend's timeline\n t.statuses.user_timeline(screen_name=\"billybob\")\n\n # to pass in GET/POST parameters, such as `count`\n t.statuses.home_timeline(count=5)\n\n # to pass in the GET/POST parameter `id` you need to use `_id`\n t.statuses.oembed(_id=1234567890)\n\n # Update your status\n t.statuses.update(\n status=\"Using @sixohsix's sweet Python Twitter Tools.\")\n\n # Send a direct message\n t.direct_messages.new(\n user=\"billybob\",\n text=\"I think yer swell!\")\n\n # Get the members of tamtar's list \"Things That Are Rad\"\n t.lists.members(owner_screen_name=\"tamtar\", slug=\"things-that-are-rad\")\n\n # An *optional* `_timeout` parameter can also be used for API\n # calls which take much more time than normal or twitter stops\n # responding for some reason:\n t.users.lookup(\n screen_name=','.join(A_LIST_OF_100_SCREEN_NAMES), _timeout=1)\n\n # Overriding Method: GET/POST\n # you should not need to use this method as this library properly\n # detects whether GET or POST should be used, Nevertheless\n # to force a particular method, use `_method`\n t.statuses.oembed(_id=1234567890, _method='GET')\n\n # Send images along with your tweets:\n # - first just read images from the web or from files the regular way:\n with open(\"example.png\", \"rb\") as imagefile:\n imagedata = imagefile.read()\n # - then upload medias one by one on Twitter's dedicated server\n # and collect each one's id:\n t_upload = Twitter(domain='upload.twitter.com',\n auth=OAuth(token, token_secret, consumer_key, consumer_secret))\n id_img1 = t_upload.media.upload(media=imagedata)[\"media_id_string\"]\n id_img2 = t_upload.media.upload(media=imagedata)[\"media_id_string\"]\n # - finally send your tweet with the list of media ids:\n t.statuses.update(status=\"PTT \u2605\", media_ids=\",\".join([id_img1, id_img2]))\n\n # Or send a tweet with an image (or set a logo/banner similarily)\n # using the old deprecated method that will probably disappear some day\n params = {\"media[]\": imagedata, \"status\": \"PTT \u2605\"}\n # Or for an image encoded as base64:\n params = {\"media[]\": base64_image, \"status\": \"PTT \u2605\", \"_base64\": True}\n t.statuses.update_with_media(**params)\n\n # Attach text metadata to medias sent, using the upload.twitter.com route\n # using the _json workaround to send json arguments as POST body\n # (warning: to be done before attaching the media to a tweet)\n t_upload.media.metadata.create(_json={\n \"media_id\": id_img1,\n \"alt_text\": { \"text\": \"metadata generated via PTT!\" }\n })\n # or with the shortcut arguments (\"alt_text\" and \"text\" work):\n t_upload.media.metadata.create(media_id=id_img1, text=\"metadata generated via PTT!\")\n\nSearching Twitter:\n\n.. code:: python\n\n # Search for the latest tweets about #pycon\n t.search.tweets(q=\"#pycon\")\n\nRetrying after reaching the API rate limit\n------------------------------------------\n\nSimply create the ``Twitter`` instance with the argument ``retry=True``,\nthen the HTTP error codes ``429``, ``502``, ``503``, and ``504`` will\ncause a retry of the last request.\n\nIf ``retry`` is an integer, it defines the maximum number of retry\nattempts.\n\nUsing the data returned\n-----------------------\n\nTwitter API calls return decoded JSON. This is converted into a bunch of\nPython lists, dicts, ints, and strings. For example:\n\n.. code:: python\n\n x = twitter.statuses.home_timeline()\n\n # The first 'tweet' in the timeline\n x[0]\n\n # The screen name of the user who wrote the first 'tweet'\n x[0]['user']['screen_name']\n\nGetting raw XML data\n--------------------\n\nIf you prefer to get your Twitter data in XML format, pass\n``format=\"xml\"`` to the ``Twitter`` object when you instantiate it:\n\n.. code:: python\n\n twitter = Twitter(format=\"xml\")\n\nThe output will not be parsed in any way. It will be a raw string of\nXML.\n\nThe ``TwitterStream`` class\n---------------------------\n\nThe ``TwitterStream`` object is an interface to the Twitter Stream API.\nThis can be used pretty much the same as the ``Twitter`` class, except\nthe result of calling a method will be an iterator that yields objects\ndecoded from the stream. For example::\n\n.. code:: python\n\n twitter_stream = TwitterStream(auth=OAuth(...))\n iterator = twitter_stream.statuses.sample()\n\n for tweet in iterator:\n ...do something with this tweet...\n\nPer default the ``TwitterStream`` object uses `public\nstreams `__.\nIf you want to use one of the other `streaming\nAPIs `__, specify the URL\nmanually:\n\n- `Public\n streams `__:\n stream.twitter.com\n- `User\n streams `__:\n userstream.twitter.com\n- `Site\n streams `__:\n sitestream.twitter.com\n\nNote that you require the proper\n`permissions `__\nto access these streams. (E.g., for direct messages, your\n`application `__ needs the \"Read, Write &\nDirect Messages\" permission.)\n\nThe following example demonstrates how to retrieve all new direct\nmessages from the user stream:\n\n.. code:: python\n\n auth = OAuth(\n consumer_key='[your consumer key]',\n consumer_secret='[your consumer secret]',\n token='[your token]',\n token_secret='[your token secret]'\n )\n twitter_userstream = TwitterStream(auth=auth, domain='userstream.twitter.com')\n for msg in twitter_userstream.user():\n if 'direct_message' in msg:\n print msg['direct_message']['text']\n\nThe iterator will ``yield`` until the TCP connection breaks. When the\nconnection breaks, the iterator yields ``{'hangup': True}`` (and raises\n``StopIteration`` if iterated again).\n\nSimilarly, if the stream does not produce heartbeats for more than 90\nseconds, the iterator yields\n``{'hangup': True, 'heartbeat_timeout': True}`` (and raises\n``StopIteration`` if iterated again).\n\nThe ``timeout`` parameter controls the maximum time between yields. If\nit is nonzero, then the iterator will yield either stream data or\n``{'timeout': True}`` within the timeout period. This is useful if you\nwant your program to do other stuff in between waiting for tweets.\n\nThe ``block`` parameter sets the stream to be fully non-blocking. In\nthis mode, the iterator always yields immediately. It returns stream\ndata, or ``None``.\n\nNote that ``timeout`` supercedes this argument, so it should also be set\n``None`` to use this mode, and non-blocking can potentially lead to 100%\nCPU usage.\n\nTwitter ``Response`` Objects\n----------------------------\n\nResponse from a Twitter request. Behaves like a list or a string\n(depending on requested format), but it has a few other interesting\nattributes.\n\n``headers`` gives you access to the response headers as an\n``httplib.HTTPHeaders`` instance. Use ``response.headers.get('h')`` to\nretrieve a header.\n\nAuthentication\n--------------\n\nYou can authenticate with Twitter in three ways: NoAuth, OAuth, or\nOAuth2 (app-only). Get ``help()`` on these classes to learn how to use\nthem.\n\nOAuth and OAuth2 are probably the most useful.\n\nWorking with OAuth\n------------------\n\nVisit the Twitter developer page and create a new application:\n\n**https://dev.twitter.com/apps/new**\n\nThis will get you a ``CONSUMER_KEY`` and ``CONSUMER_SECRET``.\n\nWhen users run your application they have to authenticate your app with\ntheir Twitter account. A few HTTP calls to Twitter are required to do\nthis. Please see the ``twitter.oauth_dance`` module to see how this is\ndone. If you are making a command-line app, you can use the\n``oauth_dance()`` function directly.\n\nPerforming the \"oauth dance\" gets you an oauth token and oauth secret\nthat authenticate the user with Twitter. You should save these for\nlater, so that the user doesn't have to do the oauth dance again.\n\n``read_token_file`` and ``write_token_file`` are utility methods to read\nand write OAuth ``token`` and ``secret`` key values. The values are\nstored as strings in the file. Not terribly exciting.\n\nFinally, you can use the ``OAuth`` authenticator to connect to Twitter.\nIn code it all goes like this:\n\n.. code:: python\n\n from twitter import *\n\n MY_TWITTER_CREDS = os.path.expanduser('~/.my_app_credentials')\n if not os.path.exists(MY_TWITTER_CREDS):\n oauth_dance(\"My App Name\", CONSUMER_KEY, CONSUMER_SECRET,\n MY_TWITTER_CREDS)\n\n oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)\n\n twitter = Twitter(auth=OAuth(\n oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))\n\n # Now work with Twitter\n twitter.statuses.update(status='Hello, world!')\n\nWorking with ``OAuth2``\n-----------------------\n\nTwitter only supports the application-only flow of OAuth2 for certain\nAPI endpoints. This OAuth2 authenticator only supports the\napplication-only flow right now.\n\nTo authenticate with OAuth2, visit the Twitter developer page and create\na new application:\n\n**https://dev.twitter.com/apps/new**\n\nThis will get you a ``CONSUMER_KEY`` and ``CONSUMER_SECRET``.\n\nExchange your ``CONSUMER_KEY`` and ``CONSUMER_SECRET`` for a bearer\ntoken using the ``oauth2_dance`` function.\n\nFinally, you can use the ``OAuth2`` authenticator and your bearer token\nto connect to Twitter. In code it goes like this::\n\n.. code:: python\n\n twitter = Twitter(auth=OAuth2(bearer_token=BEARER_TOKEN))\n\n # Now work with Twitter\n twitter.search.tweets(q='keyword')\n\nLicense\n=======\n\nPython Twitter Tools are released under an MIT License.\n\n.. |Build Status| image:: https://travis-ci.org/sixohsix/twitter.svg\n :target: https://travis-ci.org/sixohsix/twitter\n.. |Coverage Status| image:: https://coveralls.io/repos/sixohsix/twitter/badge.png?branch=master\n :target: https://coveralls.io/r/sixohsix/twitter?branch=master\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://mike.verdone.ca/twitter/", "keywords": "twitter,IRC,command-line tools,web 2.0", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "twitter", "package_url": "https://pypi.org/project/twitter/", "platform": "", "project_url": "https://pypi.org/project/twitter/", "project_urls": { "Homepage": "http://mike.verdone.ca/twitter/" }, "release_url": "https://pypi.org/project/twitter/1.18.0/", "requires_dist": null, "requires_python": "", "summary": "An API and command-line toolset for Twitter (twitter.com)", "version": "1.18.0" }, "last_serial": 3264878, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "b48ca6bdff0dd7527a6e87592a30e25b", "sha256": "ee346cacb59242e84f645ddece94c8cdabbf9c72ff3b9f8c550cfbf29e75852a" }, "downloads": -1, "filename": "twitter-0.2-py2.5.egg", "has_sig": false, "md5_digest": "b48ca6bdff0dd7527a6e87592a30e25b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16543, "upload_time": "2008-05-11T03:51:59", "url": "https://files.pythonhosted.org/packages/13/61/30b9ef5ca2ab849438d607bc24be5ce3dcf47e579377e5a6a30ccce88855/twitter-0.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2448ce91c31345ca2d340eedefc3d575", "sha256": "973bc2d7f4ffc0dfad5e6d93dbea198cbe34cf8a15be532623587f44108ef126" }, "downloads": -1, "filename": "twitter-0.2.tar.gz", "has_sig": false, "md5_digest": "2448ce91c31345ca2d340eedefc3d575", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6291, "upload_time": "2008-05-11T03:51:49", "url": "https://files.pythonhosted.org/packages/3d/af/d9f23f6880279d2159eb4f1bda278f116e0803a8fb48f632d40ebfc2acfe/twitter-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "69d5e526cbd9ec48120e1a3e565f8a9a", "sha256": "08ed39e1b8ab965bee3830a3f5b00f18db781f5fee9bb18836cdbf6691b1bd4e" }, "downloads": -1, "filename": "twitter-0.3-py2.5.egg", "has_sig": false, "md5_digest": "69d5e526cbd9ec48120e1a3e565f8a9a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 18142, "upload_time": "2008-05-13T16:38:52", "url": "https://files.pythonhosted.org/packages/e8/88/360da5dd3ec5e3a1b8062511d624bf91564d8e3bb0cc8a09741ade75143e/twitter-0.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "398dd1dfb51fe369888cdd966f55c3e7", "sha256": "0206d29c90b97082dcf6ae328b4730ffa273caef33af47b15806cd2b1cbcdad7" }, "downloads": -1, "filename": "twitter-0.3.tar.gz", "has_sig": false, "md5_digest": "398dd1dfb51fe369888cdd966f55c3e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6789, "upload_time": "2008-05-13T16:38:51", "url": "https://files.pythonhosted.org/packages/9d/8e/b26a38cd9b2644836b0053d394ca0fe91730e2eff77cae23cce57cda6446/twitter-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "4f4fa771927dafec96a9baea3035c8ef", "sha256": "49b3ae54288c17262ef64d53a6242ad27aa075aed193ab8f66327062d7030af9" }, "downloads": -1, "filename": "twitter-0.3.1-py2.5.egg", "has_sig": false, "md5_digest": "4f4fa771927dafec96a9baea3035c8ef", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 18272, "upload_time": "2008-05-14T16:00:35", "url": "https://files.pythonhosted.org/packages/0f/c8/74680ee771c3cff1bd0cc2793c42025c490e3d0eb242d39ea31af78fc02b/twitter-0.3.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f97cc1c5fe0f5bbeda525c753c89403a", "sha256": "3265d9582397652bdccdff80bf9be3685872b16ed42fb22b397eee696ad43ef8" }, "downloads": -1, "filename": "twitter-0.3.1.tar.gz", "has_sig": false, "md5_digest": "f97cc1c5fe0f5bbeda525c753c89403a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6876, "upload_time": "2008-05-14T16:00:34", "url": "https://files.pythonhosted.org/packages/44/f7/5d62d4313170aae14c6d1ca5e4a05905fe760946e2770785802123fe8b7d/twitter-0.3.1.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "1c6dfbdd9b7392986c1618b12e4626e6", "sha256": "05850b81da9a28d77a4218bdc2429a3d81784fec1ee63ccad03f17e9832b7e61" }, "downloads": -1, "filename": "twitter-0.4-py2.5.egg", "has_sig": false, "md5_digest": "1c6dfbdd9b7392986c1618b12e4626e6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19319, "upload_time": "2008-10-01T04:18:08", "url": "https://files.pythonhosted.org/packages/ef/7c/ef81bff10fcc912c45b1acd017aa976424550cfff888c1320c6b4eee09b2/twitter-0.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8b6bde7a57d443e2fe14217782e95c58", "sha256": "37fdf57b565f8c64ae8ea213021a6efc7c0bc41501da29c1a613f68d905bd456" }, "downloads": -1, "filename": "twitter-0.4.tar.gz", "has_sig": false, "md5_digest": "8b6bde7a57d443e2fe14217782e95c58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9467, "upload_time": "2008-10-01T04:18:00", "url": "https://files.pythonhosted.org/packages/88/a5/70ac597c8993802877796dad9dbc6d88c44bdc85109532eb7c56b77edde1/twitter-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "85012e54fdc10e55b86168e4e8de51c8", "sha256": "ad3f2ab7fbc24c22b067450fcb7174bbdcbfb9925648341da13e7ebb9f5ff036" }, "downloads": -1, "filename": "twitter-0.4.1-py2.5.egg", "has_sig": false, "md5_digest": "85012e54fdc10e55b86168e4e8de51c8", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19345, "upload_time": "2008-10-04T01:01:03", "url": "https://files.pythonhosted.org/packages/34/1b/d60f759f5a32cc58b1c2df352367fa8cf743dde50895ce6f6d84f77eda7c/twitter-0.4.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "a01f5b812dbb54725fa12efa623e3fb0", "sha256": "c1de3cd334038f42cba0d6d622a23de5b43a701583e04a37cc0e8f2a0e61819b" }, "downloads": -1, "filename": "twitter-0.4.1-py2.6.egg", "has_sig": false, "md5_digest": "a01f5b812dbb54725fa12efa623e3fb0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 19316, "upload_time": "2008-10-04T01:00:38", "url": "https://files.pythonhosted.org/packages/85/df/790bfed98ae000267aa05fbace1d683c0bd71719456fa61144605f007462/twitter-0.4.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "0a9e7793ed149bf31eff51a0b8b18ba6", "sha256": "7464bc5d20e6c3ee152a42f19819f6d3affa56aae30cd2c04d14b86290c746f2" }, "downloads": -1, "filename": "twitter-0.4.1.tar.gz", "has_sig": false, "md5_digest": "0a9e7793ed149bf31eff51a0b8b18ba6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9294, "upload_time": "2008-10-04T01:00:17", "url": "https://files.pythonhosted.org/packages/c8/c7/9268ab664744700712c7ad3ce63ddfad3aa41446e95bda4d6c2c4ac511f2/twitter-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "10db295ddc6cd45bac68f5d50453649b", "sha256": "c355c3e9a58a3b59b1945c2e76fd9d5e7075b37c757394c8a3eb2408f2183a34" }, "downloads": -1, "filename": "twitter-0.4.2-py2.5.egg", "has_sig": false, "md5_digest": "10db295ddc6cd45bac68f5d50453649b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19363, "upload_time": "2008-11-15T23:14:22", "url": "https://files.pythonhosted.org/packages/65/1f/eac62acce40aa175692c26491134c39c9276949021a15d7f99d77ea550e8/twitter-0.4.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "15b797cbfb3b1f36f96fcdb48d184840", "sha256": "e5b727899f3cbb19a8a045d36453549ba08d1ce0fb12c7679eed8af1e30316ff" }, "downloads": -1, "filename": "twitter-0.4.2-py2.6.egg", "has_sig": false, "md5_digest": "15b797cbfb3b1f36f96fcdb48d184840", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 19334, "upload_time": "2008-11-15T23:16:02", "url": "https://files.pythonhosted.org/packages/84/86/20f953f8d5c6414888dbac5efb2982dccfe3ed894433993c226452db79b3/twitter-0.4.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e11a61a1f1c2978028fb14bf4cfb0d06", "sha256": "3e115aaf5f7d7e463b294f62e88d14281cd70c2ae0511788d910cf25d9ef8979" }, "downloads": -1, "filename": "twitter-0.4.2.tar.gz", "has_sig": false, "md5_digest": "e11a61a1f1c2978028fb14bf4cfb0d06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9349, "upload_time": "2008-11-15T23:14:33", "url": "https://files.pythonhosted.org/packages/2a/4c/7f1c741d722d59aaf9f8796499895ef8a8cf6dca5b3352b29964f98fb68e/twitter-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "fb3fef90a76f270b054d875c7c1cb4d9", "sha256": "f312ecaea85878401e232cf254c14d98ec24292767651da25ec2586a847f9ad3" }, "downloads": -1, "filename": "twitter-0.4.3-py2.5.egg", "has_sig": false, "md5_digest": "fb3fef90a76f270b054d875c7c1cb4d9", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19807, "upload_time": "2008-11-22T19:53:10", "url": "https://files.pythonhosted.org/packages/79/76/578327dd8ed3e110646e468273ba60af87989e3330539ab558c33a57aff8/twitter-0.4.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "cf47cce6b68248c203d68ffa90242703", "sha256": "d0237a70a1bcb87f5df05f08d6a7595c3df8d7c9352d10325d11157d313282ea" }, "downloads": -1, "filename": "twitter-0.4.3-py2.6.egg", "has_sig": false, "md5_digest": "cf47cce6b68248c203d68ffa90242703", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 19775, "upload_time": "2008-11-22T19:53:40", "url": "https://files.pythonhosted.org/packages/2c/41/d1b7479fde08097ed0bd75bd8b3da41afd6c0b0ca2e35e97a7ca9a642b4e/twitter-0.4.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "36b2adff40086406eb8ba484210dde22", "sha256": "119996328c70e68b570a2aead300081ee900f93ca2a2c070804bf25515994beb" }, "downloads": -1, "filename": "twitter-0.4.3.tar.gz", "has_sig": false, "md5_digest": "36b2adff40086406eb8ba484210dde22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9639, "upload_time": "2008-11-22T19:53:01", "url": "https://files.pythonhosted.org/packages/9a/49/ef4069ff8f8fc976c8e08c5cacaf305d0edcac0b2b25d954ad198add2ecd/twitter-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "f8fc458c2bd3a0fbff2ab28119139a48", "sha256": "6dbb1457d0b002b565a71e8eb0d94f7f2284906d63506bbc39bfad61f6161ffa" }, "downloads": -1, "filename": "twitter-0.4.4-py2.5.egg", "has_sig": false, "md5_digest": "f8fc458c2bd3a0fbff2ab28119139a48", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 19815, "upload_time": "2008-12-15T21:07:39", "url": "https://files.pythonhosted.org/packages/cc/36/910ced09cec672e891942d66c0b65dff964d492d13a1d61418746941a40f/twitter-0.4.4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ed83ef7225988259ab35ad92dffeb45d", "sha256": "4a84dd07baab85e32a861df9b659880c484a59c2b315d88be56f14134a019b91" }, "downloads": -1, "filename": "twitter-0.4.4-py2.6.egg", "has_sig": false, "md5_digest": "ed83ef7225988259ab35ad92dffeb45d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 19783, "upload_time": "2008-12-15T21:08:07", "url": "https://files.pythonhosted.org/packages/55/52/70039331a18ae84332ed086e79d55077229f5f5454ca451d06071dd7e9d9/twitter-0.4.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8859d7bed5fde1e0990aaa169eed8637", "sha256": "ff7979ed80997dae199365604f7f1dffa7a65fad94ed059996fd8f06f149f1fd" }, "downloads": -1, "filename": "twitter-0.4.4.tar.gz", "has_sig": false, "md5_digest": "8859d7bed5fde1e0990aaa169eed8637", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9662, "upload_time": "2008-12-15T21:07:47", "url": "https://files.pythonhosted.org/packages/3f/0f/cdd7ffe841a9e7dd0b5d1860f2e7a71af02fd121c7f4b4da563e8eb8b766/twitter-0.4.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "8a1664a1c144d431248226b3c4778d74", "sha256": "48cb1f84bafcd8ca834e22d051074a6e48a0d21de557a9d05ab1b4d3f6797453" }, "downloads": -1, "filename": "twitter-0.5-py2.5.egg", "has_sig": false, "md5_digest": "8a1664a1c144d431248226b3c4778d74", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 20124, "upload_time": "2009-01-19T04:43:06", "url": "https://files.pythonhosted.org/packages/4a/6c/255eb8feec619779cc7ef8b6b67fdfe51ad20b4eadc458078f6207295ab5/twitter-0.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8867abc5f280c7f6f2a85f1737b9d9dc", "sha256": "f31cff5704001a3052d4ded96a47b79a0668c85c9fb685d38408c0edc8946ec1" }, "downloads": -1, "filename": "twitter-0.5-py2.6.egg", "has_sig": false, "md5_digest": "8867abc5f280c7f6f2a85f1737b9d9dc", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 20095, "upload_time": "2009-01-19T04:43:27", "url": "https://files.pythonhosted.org/packages/d2/c3/157bccbbc8a67ca9360b37aa3ea75a80f4bd215f79d4575ebd33fb55c230/twitter-0.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "77a1ffb341e217b15a25a2284622e379", "sha256": "2da69eaebd636e0cee9b4450417647839be438da559f89908a23149a37127343" }, "downloads": -1, "filename": "twitter-0.5.tar.gz", "has_sig": false, "md5_digest": "77a1ffb341e217b15a25a2284622e379", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8047, "upload_time": "2009-01-19T04:42:57", "url": "https://files.pythonhosted.org/packages/f5/81/774ffd14863b99b2605adf37cd62011221d00a012c88899be14fd8b738ec/twitter-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "d09fd78e3e4dabeccd45ace0d39ccaa2", "sha256": "b8adb3ee64f1a7e1ca91fea6a5010285a1bdf936ccd3513a8249acad82e33082" }, "downloads": -1, "filename": "twitter-0.5.1-py2.5.egg", "has_sig": false, "md5_digest": "d09fd78e3e4dabeccd45ace0d39ccaa2", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 20475, "upload_time": "2009-01-21T04:08:23", "url": "https://files.pythonhosted.org/packages/0b/03/e88c917d74351607233ab1dfcdc7a8a869e19014cd57b6c7c8f7d0ef96a7/twitter-0.5.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f4f1752ebeaf655a195514001240ca36", "sha256": "bdff2eaf02a79024bb4d3fbc8a7051a07a85b0495c593a587b51cf44a15a022d" }, "downloads": -1, "filename": "twitter-0.5.1-py2.6.egg", "has_sig": false, "md5_digest": "f4f1752ebeaf655a195514001240ca36", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 20448, "upload_time": "2009-01-21T04:08:31", "url": "https://files.pythonhosted.org/packages/b8/fa/cd273031923147195f935bfd44786d04b77426efa3aaa1a8bfa81e0e3918/twitter-0.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "cb86021ff8425a70237eb11a1145fe11", "sha256": "0ac16c7e93844b3d0a66d7dd15b469016af1395706aafa1789fd2612dee65eca" }, "downloads": -1, "filename": "twitter-0.5.1.tar.gz", "has_sig": false, "md5_digest": "cb86021ff8425a70237eb11a1145fe11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8486, "upload_time": "2009-01-21T04:08:15", "url": "https://files.pythonhosted.org/packages/64/4d/ed10514f96c08c620f4f2c12494d16b12d671612c4b47a9fabe1ae56c2a7/twitter-0.5.1.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "f6d7318f98663e47b6a63a761339e359", "sha256": "51eeed734a02ad9b65129d19b4c8c6768f788ba0fea222b5a358a3b1d2ec0787" }, "downloads": -1, "filename": "twitter-1.0-py2.5.egg", "has_sig": false, "md5_digest": "f6d7318f98663e47b6a63a761339e359", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23036, "upload_time": "2009-02-16T00:13:16", "url": "https://files.pythonhosted.org/packages/09/f6/c4dc286d3fb099e0da8558dbd02590e972dd4eb75399e8266ca04f97ea3b/twitter-1.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "aa051eb3c1e30273a31f739c5c64b010", "sha256": "bf91d93956f9d2eb169545d5d3548a06a8da91931b3ad405169438dc30807c9a" }, "downloads": -1, "filename": "twitter-1.0-py2.6.egg", "has_sig": false, "md5_digest": "aa051eb3c1e30273a31f739c5c64b010", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23008, "upload_time": "2009-02-16T00:13:33", "url": "https://files.pythonhosted.org/packages/c6/5a/9441c25afdd1a8864d141df403568a946638d9d934a65c20194e5c2804f0/twitter-1.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e571438b441d71b40134da084432c381", "sha256": "be64f8c6ab818a4d975a7e92d87736e652fc431a1ee60fbcc5350311d1cc3727" }, "downloads": -1, "filename": "twitter-1.0.tar.gz", "has_sig": false, "md5_digest": "e571438b441d71b40134da084432c381", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10046, "upload_time": "2009-02-16T00:13:09", "url": "https://files.pythonhosted.org/packages/16/02/f8f785a81e7b3f75edca06a560a7139f26c2ce9d353f90ad899a6b4aa387/twitter-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "661fc98365dd0d848d9014de5193d4b1", "sha256": "63c339d9aef868bb1e6d658eff4941f4adf3e376ea945cfa24a359ca13adcf4d" }, "downloads": -1, "filename": "twitter-1.0.1-py2.5.egg", "has_sig": false, "md5_digest": "661fc98365dd0d848d9014de5193d4b1", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 23111, "upload_time": "2009-02-16T09:03:57", "url": "https://files.pythonhosted.org/packages/ef/bb/1f6b4b1d9b499225bd3578d2a04a4c860f924a314fcd0210c5fde3a9b420/twitter-1.0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6ac6cc472a8b41715e38eb7dea8fd293", "sha256": "f41255f81561f76a7c658d3387675f5fedcdabc08e8997530158ca3215edc7d2" }, "downloads": -1, "filename": "twitter-1.0.1-py2.6.egg", "has_sig": false, "md5_digest": "6ac6cc472a8b41715e38eb7dea8fd293", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23084, "upload_time": "2009-02-16T09:04:08", "url": "https://files.pythonhosted.org/packages/61/58/7aaf4bffeb3471b10677c7511ce6bd34d86d93ce836477f6d1268d507c10/twitter-1.0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "cd68e4ec40580b26738cb2fb7f48758d", "sha256": "f10a8c88601300f0f8c9a0a04d717d52af090aafd498544d66ad105f66168069" }, "downloads": -1, "filename": "twitter-1.0.1.tar.gz", "has_sig": false, "md5_digest": "cd68e4ec40580b26738cb2fb7f48758d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10126, "upload_time": "2009-02-16T09:03:50", "url": "https://files.pythonhosted.org/packages/a1/f5/d757816cc141b7db5640cebe5133367ec1922b3c3e8711f06d671a6f3e27/twitter-1.0.1.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "26183fad60d98fe4787ad56bfd921977", "sha256": "d5a4b2df1ec38f11cc4cc2f5bdcc3e631245d56b45dfe681a25338a3b10b6fb6" }, "downloads": -1, "filename": "twitter-1.1-py2.5.egg", "has_sig": false, "md5_digest": "26183fad60d98fe4787ad56bfd921977", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 25589, "upload_time": "2009-03-07T05:27:36", "url": "https://files.pythonhosted.org/packages/65/57/aa2ee5e01cdcf6240ba54a16d4f1ef8abba44f3f45f9fa7e28fd68a745ab/twitter-1.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "82c15f84c4b9123340d4a551c49f4461", "sha256": "038e2b7b965d6ee164d9e14bee271d472fbd83d3338249f4c81d09c8351b120f" }, "downloads": -1, "filename": "twitter-1.1-py2.6.egg", "has_sig": false, "md5_digest": "82c15f84c4b9123340d4a551c49f4461", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 25568, "upload_time": "2009-03-07T05:27:48", "url": "https://files.pythonhosted.org/packages/0e/94/9f039ccb2b0a7423fdb9cb1319f46f76f5c7110b43c348c41406c3ff5ff8/twitter-1.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "84e0d38125d5bb9079eb89c40e003642", "sha256": "29e187574b004ceb9e90273454211952aeca409eca3e3d3f9bbe59869b7934a0" }, "downloads": -1, "filename": "twitter-1.1.tar.gz", "has_sig": false, "md5_digest": "84e0d38125d5bb9079eb89c40e003642", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10918, "upload_time": "2009-03-07T05:27:19", "url": "https://files.pythonhosted.org/packages/91/77/459d63d38f3e34639ffd3c0859b95c9f0a79eeb21e596032166d827b6d51/twitter-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "0462affb11635f20cce40e9ef075c629", "sha256": "89f8b9206264c08879ebf6bfb81f04228ecb27ba6e5a5a0122d608f753f155d3" }, "downloads": -1, "filename": "twitter-1.1.1-py2.5.egg", "has_sig": false, "md5_digest": "0462affb11635f20cce40e9ef075c629", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 25585, "upload_time": "2009-03-12T03:16:59", "url": "https://files.pythonhosted.org/packages/19/13/30ea9f8ccf369a12621d89ab3b218e338d12aa505a828adac31392c6c4f3/twitter-1.1.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b2a7941e32edd351851fc614f83594b0", "sha256": "abffd2b3899471bbe9ccfd75d05dcc09daf278dcaa3904e1394fc7f5dd6fdfff" }, "downloads": -1, "filename": "twitter-1.1.1-py2.6.egg", "has_sig": false, "md5_digest": "b2a7941e32edd351851fc614f83594b0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 25565, "upload_time": "2009-03-12T03:17:15", "url": "https://files.pythonhosted.org/packages/1f/73/a71b3fc8340fd6c78e9502140a97b17370129c61e048682f5ae85e1bb129/twitter-1.1.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ea7e2f15aefcc390a7ec03a7c01814a9", "sha256": "4d246317d8ad671892a3da64fc1d1aef0ebcfd77fabec75804d0de46c6076ba7" }, "downloads": -1, "filename": "twitter-1.1.1.tar.gz", "has_sig": false, "md5_digest": "ea7e2f15aefcc390a7ec03a7c01814a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10930, "upload_time": "2009-03-12T03:16:51", "url": "https://files.pythonhosted.org/packages/bd/07/b78a707d91d41cea7c5ad1fffd0ef4068f765020dad8bf933ab0b3ffd617/twitter-1.1.1.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "30d6de298affb11dcf56f96db3d9b36a", "sha256": "d6c43b275ea69d332624b373b988fe6a5987a49d59bcd030132af9d3414935ea" }, "downloads": -1, "filename": "twitter-1.10.0.tar.gz", "has_sig": false, "md5_digest": "30d6de298affb11dcf56f96db3d9b36a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35134, "upload_time": "2013-06-22T17:15:40", "url": "https://files.pythonhosted.org/packages/04/3f/3c7bb04858200158cbe28123071a4c1d998c864e4ee990d47d1fc0d3e420/twitter-1.10.0.tar.gz" } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "9c214cd790e0b0f02f3ff703f456d247", "sha256": "2d96082ddaa0c8ecea7b877fa974441ba7ddccd261e2d4d3b1239d437d053f7f" }, "downloads": -1, "filename": "twitter-1.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9c214cd790e0b0f02f3ff703f456d247", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47808, "upload_time": "2013-11-20T21:38:07", "url": "https://files.pythonhosted.org/packages/5b/b9/bee5531ca21e1e5df2941c222fefb8b1cea8542114e99e30ffabd4e9e4de/twitter-1.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8bff1167b3886c759ee76afa8b52267e", "sha256": "4fac0a3e72fc42cbbfbd608e7fbbe7707cb7a18c5664e5cbd8ad5dfbf627fd5c" }, "downloads": -1, "filename": "twitter-1.10.2.tar.gz", "has_sig": false, "md5_digest": "8bff1167b3886c759ee76afa8b52267e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36795, "upload_time": "2013-11-20T21:34:54", "url": "https://files.pythonhosted.org/packages/11/21/f6db1a022ea40eb8a13d8078222153248e3ba1beb92f1fd7f8a03f66fc6b/twitter-1.10.2.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "58e8ff54563566885b8c2fe11ea87117", "sha256": "e8bd6374194a8c75269a55589c47eb54e85b606fce452400ae642da3a376a6e8" }, "downloads": -1, "filename": "twitter-1.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58e8ff54563566885b8c2fe11ea87117", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 48668, "upload_time": "2014-02-03T22:08:30", "url": "https://files.pythonhosted.org/packages/c6/89/79603a225dd54c100573e5b263141e8ee4aaba80dbf14b146212f252ce98/twitter-1.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3cbaa8081df482c8481797fbb6d5002", "sha256": "bb2214a5803fa51e24db408819d7a10df21608b106e757e93f845d451c65abb2" }, "downloads": -1, "filename": "twitter-1.11.0.tar.gz", "has_sig": false, "md5_digest": "a3cbaa8081df482c8481797fbb6d5002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37733, "upload_time": "2014-02-03T22:06:05", "url": "https://files.pythonhosted.org/packages/2d/4d/3f8ab733c22f4388b2afc8fad3d216617a72bcb348bdf94337967ab168d2/twitter-1.11.0.tar.gz" } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "8c4172e4f876bd34b2218f9bf4927bb8", "sha256": "a5e63d72ae2f16eb9054789bfef4c9d2dbb2e2f2b73e31e3aa3f3b98384dff94" }, "downloads": -1, "filename": "twitter-1.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c4172e4f876bd34b2218f9bf4927bb8", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 48966, "upload_time": "2014-02-03T23:00:07", "url": "https://files.pythonhosted.org/packages/29/c9/f65ce43c75a7bccaa526533ebfb653af5e3bf77d6a41317b1958184a6892/twitter-1.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "692b9a383a7fbad004514ab431766041", "sha256": "416d0245fd31620975f6a37ef38324a03d79cef744fff386b5f6202006c25628" }, "downloads": -1, "filename": "twitter-1.11.1.tar.gz", "has_sig": false, "md5_digest": "692b9a383a7fbad004514ab431766041", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37886, "upload_time": "2014-02-03T22:59:48", "url": "https://files.pythonhosted.org/packages/2a/61/243a1c9b6ae802e55cb888f39e0747b8d545c87d42b6524aa517d96cd84f/twitter-1.11.1.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "6c25f163ec42281b6cd81b180fd5dcc8", "sha256": "a7804221f066e5cb38eaaf20d7806532a643e688919160bed3226ed2a4f4ee3e" }, "downloads": -1, "filename": "twitter-1.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c25f163ec42281b6cd81b180fd5dcc8", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 49410, "upload_time": "2014-02-04T20:02:31", "url": "https://files.pythonhosted.org/packages/df/6c/f1c6d29e4fa0bec30b5ca94118c5660039a37972d7a63639cc27a96deeda/twitter-1.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fe99966a25f6eefbaa5f9dd48499f2a", "sha256": "d8fac0b17a2858bc7698bc5e47064adf16c6cde9b13579cd04b6a4d670f1c9e2" }, "downloads": -1, "filename": "twitter-1.12.1.tar.gz", "has_sig": false, "md5_digest": "2fe99966a25f6eefbaa5f9dd48499f2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38333, "upload_time": "2014-02-04T20:02:20", "url": "https://files.pythonhosted.org/packages/39/2a/bbee68e183b218593b2e5a1017503fda3b66443f69af0123824455d9685a/twitter-1.12.1.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "e9d2e37d4e2ce569a0746654935c97f3", "sha256": "8d2f8b9abbb6ba8c46cb83aa79f38950d7cb642f7a6499c270be286bc8324751" }, "downloads": -1, "filename": "twitter-1.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9d2e37d4e2ce569a0746654935c97f3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49471, "upload_time": "2014-02-12T14:19:58", "url": "https://files.pythonhosted.org/packages/07/a0/1902fb4c50dd8a49cb409cd15f0e58a44d5e03ac9328e26d54b9615c5002/twitter-1.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce8b0939fe679626ffe3081988cafc4b", "sha256": "d376d57f2822798a420c521118df95186c58e2a70a82fa8c14267ffa74f16422" }, "downloads": -1, "filename": "twitter-1.13.0.tar.gz", "has_sig": false, "md5_digest": "ce8b0939fe679626ffe3081988cafc4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38365, "upload_time": "2014-02-12T14:19:27", "url": "https://files.pythonhosted.org/packages/70/3c/d0851d4ca1f38f900ad17daffb64a01669cd8749434d3018dcae013822eb/twitter-1.13.0.tar.gz" } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "7527ff10fa8cb98a600a2258bd60ae47", "sha256": "3d18c148e0ca80cc2c587e5e53f6b575008396608092067acf33d606cace6a91" }, "downloads": -1, "filename": "twitter-1.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7527ff10fa8cb98a600a2258bd60ae47", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49691, "upload_time": "2014-02-12T15:24:20", "url": "https://files.pythonhosted.org/packages/60/b9/1f83c4b8a76de8c7a0bf287d485aa207d821a5abe16f3ad356fdd86aa136/twitter-1.13.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a171d999e20699189d4d081a8fa6f00", "sha256": "dba32c1c27e4515d4c49154d06462c72f782fa952d80871a03ec09d93d35362d" }, "downloads": -1, "filename": "twitter-1.13.1.tar.gz", "has_sig": false, "md5_digest": "7a171d999e20699189d4d081a8fa6f00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38614, "upload_time": "2014-02-12T15:24:13", "url": "https://files.pythonhosted.org/packages/13/68/04f3143da457527a5f1b66d50f97fa2192f5c42e179ba494a8c1040675a4/twitter-1.13.1.tar.gz" } ], "1.14.1": [ { "comment_text": "", "digests": { "md5": "5d5381723e1ae936f631680c93045f1c", "sha256": "e4add694ad141d5f75712a081d36e518c0bb69af92be53493496480b8f5a1d11" }, "downloads": -1, "filename": "twitter-1.14.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d5381723e1ae936f631680c93045f1c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50215, "upload_time": "2014-03-12T20:42:36", "url": "https://files.pythonhosted.org/packages/5c/99/854d1c438e657315fdfe435f6ba91daf6a276afa6a958a2803f05d3637c6/twitter-1.14.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df1208f1995dc233f48ac25626bf51fb", "sha256": "f56cd576885d77188071a31642fdcf5f81fff39609b07f6037624f1920e96733" }, "downloads": -1, "filename": "twitter-1.14.1.tar.gz", "has_sig": false, "md5_digest": "df1208f1995dc233f48ac25626bf51fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39272, "upload_time": "2014-03-12T20:42:26", "url": "https://files.pythonhosted.org/packages/21/32/42ac3eb6c6c75a9a01a1f2a00e2b72969e492b8d42f84d19805df218daeb/twitter-1.14.1.tar.gz" } ], "1.14.2": [ { "comment_text": "", "digests": { "md5": "416184d8ad5ecee45979a5d1d40b9dc1", "sha256": "8bf95c34903077bd6b9e57d2e34e6b6b2d4875db120f91970735d7b5189e8cce" }, "downloads": -1, "filename": "twitter-1.14.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "416184d8ad5ecee45979a5d1d40b9dc1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50336, "upload_time": "2014-03-24T20:22:34", "url": "https://files.pythonhosted.org/packages/49/0c/2d308c151ef02eeda7dc5bdefd1ce9154aae030d2064a245c8ebd8c5423e/twitter-1.14.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7eec6f1b6b178eaefe05de1a3da1090e", "sha256": "9b2a962baa45897357fc6103cd7349adb58a8d4647db9099f0cfbcb9d4c433ec" }, "downloads": -1, "filename": "twitter-1.14.2.tar.gz", "has_sig": false, "md5_digest": "7eec6f1b6b178eaefe05de1a3da1090e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39461, "upload_time": "2014-03-24T20:22:21", "url": "https://files.pythonhosted.org/packages/ba/fa/f2d283f96ec867fd1ed6aad9cce6c4d5e5bc84888accd728a1156de69d44/twitter-1.14.2.tar.gz" } ], "1.14.3": [ { "comment_text": "", "digests": { "md5": "6f7d8b72b6c59daa432b915642a2522d", "sha256": "e875e9647b94ca0d3eddd45870c9eda12e379d19971a311be0448da9100b48aa" }, "downloads": -1, "filename": "twitter-1.14.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6f7d8b72b6c59daa432b915642a2522d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50464, "upload_time": "2014-04-16T21:47:45", "url": "https://files.pythonhosted.org/packages/2b/32/e3e9bd574866a8bb31e85ee051c6855612f4c432b089b5af04f5cbadbfe1/twitter-1.14.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "419a50af58e1b3035c311eb806c8fdc5", "sha256": "497fce2168cb57d5651932a39b70fc0c9304bebd53558107995102bca49210da" }, "downloads": -1, "filename": "twitter-1.14.3.tar.gz", "has_sig": false, "md5_digest": "419a50af58e1b3035c311eb806c8fdc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39538, "upload_time": "2014-04-16T21:47:01", "url": "https://files.pythonhosted.org/packages/6e/f6/6a61b1308749dc8edeb4357d7d5bd58bb6d4331417cd184322a1375ba537/twitter-1.14.3.tar.gz" } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "eb044af1e634792c7503979316949a1a", "sha256": "be3e41d1202846e0e0fe32dca684f42cbe11e6ecb84257337e09ed8652929991" }, "downloads": -1, "filename": "twitter-1.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eb044af1e634792c7503979316949a1a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50720, "upload_time": "2014-08-30T13:59:43", "url": "https://files.pythonhosted.org/packages/aa/d8/033953bfa7e78054e4f892409229e9aa039f92e79180ed65c90c299f06e6/twitter-1.15.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba530230d1687a2a8bfd720a963f13c0", "sha256": "4c7079231c0826f3a4e8e28f9384ff928813ed2527a059c86074a695e309cbd4" }, "downloads": -1, "filename": "twitter-1.15.0.tar.gz", "has_sig": false, "md5_digest": "ba530230d1687a2a8bfd720a963f13c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41074, "upload_time": "2014-08-30T13:58:37", "url": "https://files.pythonhosted.org/packages/2a/3d/6245c9ff0f639627924c544d0fff7f9f762f5b9c4583b1814202fd4c1219/twitter-1.15.0.tar.gz" } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "4c45bc5c7601ab413d9b73af31cbe9d9", "sha256": "af1cd86d2388885242b13a0c9e838b16dd5371fa1b67511cac4879c6e88fd2d2" }, "downloads": -1, "filename": "twitter-1.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4c45bc5c7601ab413d9b73af31cbe9d9", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 52055, "upload_time": "2015-02-09T13:20:47", "url": "https://files.pythonhosted.org/packages/2b/e7/a54040a5b7df10bda537b0434162c587d81e57914bf7a2d0d2c4c64b4682/twitter-1.16.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "964b83350fc0bf7234150a31bf024e41", "sha256": "92a4c13570806cf3ae2aab10ff97000c1aa7fcc0ed5740ca1df01346642e3ec3" }, "downloads": -1, "filename": "twitter-1.16.0.tar.gz", "has_sig": false, "md5_digest": "964b83350fc0bf7234150a31bf024e41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42597, "upload_time": "2015-02-09T13:20:30", "url": "https://files.pythonhosted.org/packages/e4/95/def76228bac6e8b70f0ee1f2fff33fdf1a075f1439ec4f165f1c6629f464/twitter-1.16.0.tar.gz" } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "ac41bd3982ceace242c52a3fb1277911", "sha256": "7406674ada172432d787d6fd742f0842f6820a9eaba0de591806e979fa138e5e" }, "downloads": -1, "filename": "twitter-1.17.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac41bd3982ceace242c52a3fb1277911", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 54649, "upload_time": "2015-04-20T19:35:29", "url": "https://files.pythonhosted.org/packages/8e/49/2498eda4e6193223a911f14ff2b31fa4ae385a739efb46aa41576d144b01/twitter-1.17.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5e412264759dd6ebde16c6554b8cf34", "sha256": "85396c4c33b9b213f3d2d805caaf6b386b9e277af9117eb51e5a782f77257376" }, "downloads": -1, "filename": "twitter-1.17.0.tar.gz", "has_sig": false, "md5_digest": "f5e412264759dd6ebde16c6554b8cf34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42869, "upload_time": "2015-04-20T19:35:00", "url": "https://files.pythonhosted.org/packages/0e/74/84a3570250f3bb9b17c39e690d34ab649c9e1b7de67607943ff100e92b46/twitter-1.17.0.tar.gz" } ], "1.17.1": [ { "comment_text": "", "digests": { "md5": "ca1aa70131eb3b5a71d3ad76c7f030f5", "sha256": "7cb6ce644158c54941e517f828cff752c269e6326726f0287f30e5397875d557" }, "downloads": -1, "filename": "twitter-1.17.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ca1aa70131eb3b5a71d3ad76c7f030f5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 55147, "upload_time": "2015-07-28T14:10:12", "url": "https://files.pythonhosted.org/packages/ea/1e/ffb8dafa9539c68bd0994d98c1cf55760b2efe0e29189cd486bf4f23907d/twitter-1.17.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65219549f09a030719bac6e20b12c3eb", "sha256": "9e998dce881615d5c62579462ad7ed9751ddaed88072f268edf9c0e58f6d700b" }, "downloads": -1, "filename": "twitter-1.17.1.tar.gz", "has_sig": false, "md5_digest": "65219549f09a030719bac6e20b12c3eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44023, "upload_time": "2015-07-28T14:10:04", "url": "https://files.pythonhosted.org/packages/75/30/86a053e40068daece37a8167edc710fd6630ee58d14bcf2aa0997d79bfd4/twitter-1.17.1.tar.gz" } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "ce966020ae120d4f65ddfe4ce0695814", "sha256": "52545fd3b70d3d3807d3ce62d1a256727856d784d1630d64dedcc643aaf0b908" }, "downloads": -1, "filename": "twitter-1.18.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ce966020ae120d4f65ddfe4ce0695814", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54390, "upload_time": "2017-10-20T08:14:20", "url": "https://files.pythonhosted.org/packages/85/e2/f602e3f584503f03e0389491b251464f8ecfe2596ac86e6b9068fe7419d3/twitter-1.18.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22aa581b0c463963ae577e62e1a72158", "sha256": "acdc85e5beea752967bb64c63bde8b915c49a31a01db1b2fecccf9f2c1d5c44d" }, "downloads": -1, "filename": "twitter-1.18.0.tar.gz", "has_sig": false, "md5_digest": "22aa581b0c463963ae577e62e1a72158", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47695, "upload_time": "2017-10-20T08:14:22", "url": "https://files.pythonhosted.org/packages/8a/9d/cea0ec784ba05d56fbd8a56a674ca12d9b012487528ce91e0064b19224f7/twitter-1.18.0.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "fd0288fe9ea2da349d7c72023dbaa20d", "sha256": "817ee9bb347f89bdfa7871ef185f86ee4143e7b0d7afd0a4b820bc75bf1caf1d" }, "downloads": -1, "filename": "twitter-1.2-py2.5.egg", "has_sig": false, "md5_digest": "fd0288fe9ea2da349d7c72023dbaa20d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 30168, "upload_time": "2009-04-02T05:26:06", "url": "https://files.pythonhosted.org/packages/2f/dd/5b0c944e456d93ec7c4cec58ffd047fb2e7c4d7ef0685c7ee17046971615/twitter-1.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "0c6c5d4fe925e7b3c157b085d4870c95", "sha256": "254040f411df55d1823c7107139b12c72d36fb35fa1e69006c96e5f6f039a612" }, "downloads": -1, "filename": "twitter-1.2-py2.6.egg", "has_sig": false, "md5_digest": "0c6c5d4fe925e7b3c157b085d4870c95", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 30136, "upload_time": "2009-04-02T05:26:09", "url": "https://files.pythonhosted.org/packages/d1/7c/1d1fd8755bc2a0e0b653d82a2673a5a546eb1faceb9ccbc694d0ca84b5ff/twitter-1.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b073c77f2931a9c009471b4cfd47b52f", "sha256": "b3217a619fef99e1d45460c7052fe94b6cbd60717c5c35183c8c21436ae05eef" }, "downloads": -1, "filename": "twitter-1.2.tar.gz", "has_sig": false, "md5_digest": "b073c77f2931a9c009471b4cfd47b52f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12678, "upload_time": "2009-04-02T05:26:04", "url": "https://files.pythonhosted.org/packages/45/71/8edb5d9105d7c5fdd24a869d3bf5d583106b43668bc9c8f1e942773c4e78/twitter-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "c84a1b86612e278c97fed6195a983923", "sha256": "347b6cf0813490c1b2afd822ab95930b5e095f43e87737599c3d5ecdcf42a725" }, "downloads": -1, "filename": "twitter-1.2.1-py2.5.egg", "has_sig": false, "md5_digest": "c84a1b86612e278c97fed6195a983923", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 30149, "upload_time": "2009-04-26T20:33:50", "url": "https://files.pythonhosted.org/packages/b5/ae/81f703443d6646c1c311c447ca94df27da94122c17ab8528140d23f38041/twitter-1.2.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "87dec3ad99a324f4194e08ca5e751438", "sha256": "8b83a30ac5fcf38f152e0f3e03c741194a9bf516a410eb18773bde78a636719d" }, "downloads": -1, "filename": "twitter-1.2.1-py2.6.egg", "has_sig": false, "md5_digest": "87dec3ad99a324f4194e08ca5e751438", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 30116, "upload_time": "2009-04-26T20:33:54", "url": "https://files.pythonhosted.org/packages/16/4b/2b6a14cd503ae687e333cdf918d8c89db19229490de248973b66caad28e2/twitter-1.2.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "497af9a8604f475fcf39bb02f4749209", "sha256": "d33d59b008a016b94c0dc092b9a4c6ca8b7819646c9d91c471b2fbd9afcf2a2c" }, "downloads": -1, "filename": "twitter-1.2.1.tar.gz", "has_sig": false, "md5_digest": "497af9a8604f475fcf39bb02f4749209", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12696, "upload_time": "2009-04-26T20:33:48", "url": "https://files.pythonhosted.org/packages/ba/e4/adea86ed1dd2be1158ef785c244c2a6aed2912d136cd95ef549a2157d872/twitter-1.2.1.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "3b0a8af50ca3f9187ae530e831f5e632", "sha256": "8feb5d794e0d14ffd0956ef029f5fdcc55a58788f0a3a33a4b2b90f29e1c7feb" }, "downloads": -1, "filename": "twitter-1.3-py2.6.egg", "has_sig": false, "md5_digest": "3b0a8af50ca3f9187ae530e831f5e632", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 37649, "upload_time": "2010-05-08T22:10:30", "url": "https://files.pythonhosted.org/packages/bc/a7/85b2c5ad96e10ad6d42602be665085491be3198cda1d91d86ceaea7b9396/twitter-1.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "af1524bd5d4ded41d848752879410664", "sha256": "9a3a4a11242b6db2ed43c985269731bdb333bec89fa694d9d35658adef33478f" }, "downloads": -1, "filename": "twitter-1.3.tar.gz", "has_sig": false, "md5_digest": "af1524bd5d4ded41d848752879410664", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14231, "upload_time": "2010-05-08T22:10:20", "url": "https://files.pythonhosted.org/packages/c4/13/41fcaa99a5e378d4036f52944a9371fa1e294c75066dca7b733963e10210/twitter-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "536ac0e269de0f021a4e352cbc4873a1", "sha256": "bfdc4ed9e2e23ae3b73f2b6214f9878fff0435cf391d85215b48e277d70684f0" }, "downloads": -1, "filename": "twitter-1.3.1-py2.6.egg", "has_sig": false, "md5_digest": "536ac0e269de0f021a4e352cbc4873a1", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 39194, "upload_time": "2010-05-11T00:15:12", "url": "https://files.pythonhosted.org/packages/38/b2/ef69b45db18b892093b50c64996a89cc0501689c30a410f22900ec568625/twitter-1.3.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ef40ead4345f942441ca9d43dd6a491c", "sha256": "0a204b082bb679206e76a6fc2ab0155aa925ab684a976318bd9d911c19586f20" }, "downloads": -1, "filename": "twitter-1.3.1.tar.gz", "has_sig": false, "md5_digest": "ef40ead4345f942441ca9d43dd6a491c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14931, "upload_time": "2010-05-11T00:15:03", "url": "https://files.pythonhosted.org/packages/b9/24/e4ea9fcd2f1ebfd976e787a028baa9b2e64dd74f5c6cfb11ef155c9dca17/twitter-1.3.1.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "6c411240549d768dcf2102078832203e", "sha256": "694d69a9a6dc1b8ad549a0785257bd96903922ad098498b4bb90656c6f2cf179" }, "downloads": -1, "filename": "twitter-1.4-py2.6.egg", "has_sig": false, "md5_digest": "6c411240549d768dcf2102078832203e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 42548, "upload_time": "2010-07-12T00:11:08", "url": "https://files.pythonhosted.org/packages/e1/55/ee167a12c3b6b0b192e05fdcd078b5672436c12f91954c5adc7194a23a3a/twitter-1.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "13020643b4234c77662c4168d0e33477", "sha256": "29dcd5e73cb69682dd004350666108211f2bf5d879e3c0313502727dbd4ebb28" }, "downloads": -1, "filename": "twitter-1.4.tar.gz", "has_sig": false, "md5_digest": "13020643b4234c77662c4168d0e33477", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15924, "upload_time": "2010-07-12T00:11:14", "url": "https://files.pythonhosted.org/packages/3a/b1/772531e6aaaa115b5225d08fb2b383d3b5d86ca27a07ee3aa9064542bd12/twitter-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "67a6a487760e34cccdf92c4cfc362662", "sha256": "36dc13821e46c20ea9cc33d5b3c0a79e7f81937f0c1704ddcc0d6c76c31adc5b" }, "downloads": -1, "filename": "twitter-1.4.1-py2.6.egg", "has_sig": false, "md5_digest": "67a6a487760e34cccdf92c4cfc362662", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 42582, "upload_time": "2010-07-13T23:06:52", "url": "https://files.pythonhosted.org/packages/ec/90/6e2a11bca88c4437da40005560595eaa1742081df5cc47f23df2de274071/twitter-1.4.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "77e0ebb67994aa9994f83f4780a5da03", "sha256": "68377ab51d8512dcc4800aec0df2ed5c853ee661cb524bba44044f3d5e3bd1a6" }, "downloads": -1, "filename": "twitter-1.4.1.tar.gz", "has_sig": false, "md5_digest": "77e0ebb67994aa9994f83f4780a5da03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15955, "upload_time": "2010-07-13T23:06:59", "url": "https://files.pythonhosted.org/packages/c2/73/6b30efc3fefe72b3aae67a24f119e92934406dbf79da6d7e1a496207b998/twitter-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "7a0b619d830cb310d65fc1f19fe3dd91", "sha256": "8252e3e5bf730e46f6f7fc3516fa7ffa950a23e92db8b218dec5602d298d21b9" }, "downloads": -1, "filename": "twitter-1.4.2-py2.6.egg", "has_sig": false, "md5_digest": "7a0b619d830cb310d65fc1f19fe3dd91", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 42729, "upload_time": "2010-08-03T18:37:47", "url": "https://files.pythonhosted.org/packages/5e/41/40ac9a49e5859a784526f8b249c7cd06fdac73093120acd22a39d88c120f/twitter-1.4.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "c8bd33e9ff49ea9c51b6a1cc6bfcbf7b", "sha256": "16a419cf02ba1245cc53257cfc96ce56463993385b9431fafb0d9c46fd2a40f6" }, "downloads": -1, "filename": "twitter-1.4.2.tar.gz", "has_sig": false, "md5_digest": "c8bd33e9ff49ea9c51b6a1cc6bfcbf7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15987, "upload_time": "2010-08-03T18:37:39", "url": "https://files.pythonhosted.org/packages/0b/a2/b17d29bd4833cd90878770407a9c3873da2b70db3a3f43f525407ee642e8/twitter-1.4.2.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "0fc6926360297fcb9b4d8572ac388e75", "sha256": "896416039f0b4469b33974497bd90336a906b61c672ea991a61543b35a868c09" }, "downloads": -1, "filename": "twitter-1.5-py2.6.egg", "has_sig": false, "md5_digest": "0fc6926360297fcb9b4d8572ac388e75", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 43874, "upload_time": "2011-02-25T00:24:26", "url": "https://files.pythonhosted.org/packages/46/d9/a83f1a62f2d345fe06cf87444b574403f1dde864412a36f7546798faed07/twitter-1.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "57b878912dae0a990a66e7d897921fbe", "sha256": "89662dd0b3826b9f9ae6b73b0df8e15f1a288ec3665912ed94633e6fa7635216" }, "downloads": -1, "filename": "twitter-1.5.tar.gz", "has_sig": false, "md5_digest": "57b878912dae0a990a66e7d897921fbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16446, "upload_time": "2011-02-25T00:24:17", "url": "https://files.pythonhosted.org/packages/e1/92/20950bee912d967fcd7f47753926fd7dec938fbe775b2ad54d246d3785f6/twitter-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "b1d34f1b7d2f2b3cd082df758fb78091", "sha256": "bfdda7ad782e4fb0c239c71efff96952f808509db7583d4b5dd557690b2ab019" }, "downloads": -1, "filename": "twitter-1.5.1.tar.gz", "has_sig": false, "md5_digest": "b1d34f1b7d2f2b3cd082df758fb78091", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16429, "upload_time": "2011-03-02T23:28:21", "url": "https://files.pythonhosted.org/packages/9e/59/8b29fc536a6ab59928a46286834dccfd5801a22300aebcab3e11feab1725/twitter-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "6349007001a5c113dcba72663eacf2e4", "sha256": "adc318bddd389e0b56201e04c8deb37f55f2563eb30d74820a57f3a99c22d9f3" }, "downloads": -1, "filename": "twitter-1.5.2.tar.gz", "has_sig": false, "md5_digest": "6349007001a5c113dcba72663eacf2e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16797, "upload_time": "2011-03-12T18:10:01", "url": "https://files.pythonhosted.org/packages/2e/89/401a96d345f1332259750657f32b682a7bc1799a69b6f6d1a43b59ba18ac/twitter-1.5.2.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "506ad3140bb5fb03ec0112b20ce61250", "sha256": "62130ca9baed8f6eb7a2414e7cc8d706a74e98392435ada42eb20f4e97f246d8" }, "downloads": -1, "filename": "twitter-1.6-py2.7.egg", "has_sig": false, "md5_digest": "506ad3140bb5fb03ec0112b20ce61250", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 53463, "upload_time": "2011-03-29T22:14:56", "url": "https://files.pythonhosted.org/packages/b6/aa/8a82cfc1942ba2d0112a67185db84c7d96641d3d847e77c519afc5d94182/twitter-1.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "466ffeadcd396b07946b478335358953", "sha256": "edbef98c44b6975480e40c0126c2cf68700c5df522631bb4340a2cd3913225ba" }, "downloads": -1, "filename": "twitter-1.6-py3.2.egg", "has_sig": false, "md5_digest": "466ffeadcd396b07946b478335358953", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 53762, "upload_time": "2011-03-29T22:14:41", "url": "https://files.pythonhosted.org/packages/46/06/f4f48d1ad07e7436747bebd3934b09d4570d86511097a1723fec4793e260/twitter-1.6-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "46030723c44efb2949eaadc8b603bd3e", "sha256": "1d8bc04c3d79cdaba9b185d57b48760503daf4afbe9fca60d09c5b4d8e68d757" }, "downloads": -1, "filename": "twitter-1.6.tar.gz", "has_sig": false, "md5_digest": "46030723c44efb2949eaadc8b603bd3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20323, "upload_time": "2011-03-29T22:14:25", "url": "https://files.pythonhosted.org/packages/a7/fc/b33c950bd66da1c47fb1c0c513f7c146ae1f8fbd3ceb22aaeaab763a363e/twitter-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "1f41e3f784e568129c3f3e8a45756805", "sha256": "25afba91822e8d8575c3bc65b84ceae8d92e5f4b6bee5018704905a688df1b79" }, "downloads": -1, "filename": "twitter-1.6.1-py2.7.egg", "has_sig": false, "md5_digest": "1f41e3f784e568129c3f3e8a45756805", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 53757, "upload_time": "2011-04-04T21:48:51", "url": "https://files.pythonhosted.org/packages/92/de/9b5645b373749446f928c3c9d07e466e155ce38b28713143159d81d99bd6/twitter-1.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "46be8c2ad75d1b0ef27b60ab16d5b984", "sha256": "d8b27feed664bc5f03dda190df9cd0bb9695be02ee450a99805914bf1c8d6878" }, "downloads": -1, "filename": "twitter-1.6.1-py3.2.egg", "has_sig": false, "md5_digest": "46be8c2ad75d1b0ef27b60ab16d5b984", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 54046, "upload_time": "2011-04-04T21:48:23", "url": "https://files.pythonhosted.org/packages/d9/21/b4c1a40993a90f7d1aed14731a3eb9a1fef68d29d0052166c6279907759b/twitter-1.6.1-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "f662b29747b3f18b824d4f9f07cfe1bf", "sha256": "a3fd60aeb010e5a15beab5fceb9c49d7ee77c1af3b9a3e12b815f851937bbff2" }, "downloads": -1, "filename": "twitter-1.6.1.tar.gz", "has_sig": false, "md5_digest": "f662b29747b3f18b824d4f9f07cfe1bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20426, "upload_time": "2011-04-04T21:48:10", "url": "https://files.pythonhosted.org/packages/cd/47/5accc0d48c5243019ebcc01e6ed973568b4f324225c81a6efff7f76187ec/twitter-1.6.1.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "677ceea724070646bc66bbbe1f7e7c91", "sha256": "5031000bbc79e0384079164d9a2e8538f4b2512c88ff60910cbb1da0891e6cf5" }, "downloads": -1, "filename": "twitter-1.7-py2.7.egg", "has_sig": false, "md5_digest": "677ceea724070646bc66bbbe1f7e7c91", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 55015, "upload_time": "2011-10-09T18:45:16", "url": "https://files.pythonhosted.org/packages/cc/10/bc30a29197ab19d90069215bee0e8980f510ba1d4033fbe3305d6bc0f490/twitter-1.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "eaacab75f1c2a78cd13d45de84cee573", "sha256": "17e0be33b078a44e2cba74aa709efd7b557b62188d5a790243ac7597ec0c48a9" }, "downloads": -1, "filename": "twitter-1.7.tar.gz", "has_sig": false, "md5_digest": "eaacab75f1c2a78cd13d45de84cee573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21011, "upload_time": "2011-10-09T18:45:09", "url": "https://files.pythonhosted.org/packages/cd/b5/8fc6cd2ef0608389362f265776e2c5d48987dea73909e0031c498bce32c4/twitter-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "165b94962af25a77ae936db2274a0505", "sha256": "6c1a0dbbe13c27f91f081e753d35cb2a819abb234ea9c6a8ff0b28e4f2cdfbaa" }, "downloads": -1, "filename": "twitter-1.7.1-py2.7.egg", "has_sig": false, "md5_digest": "165b94962af25a77ae936db2274a0505", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 54987, "upload_time": "2011-10-09T19:14:58", "url": "https://files.pythonhosted.org/packages/b1/e0/5dd9b5fd5cb1a76e70eb05a357af5abc58f7f4e35fd3d8c97dcb13639bbd/twitter-1.7.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e1918c7bd0604785ba38f7a0b97b2dda", "sha256": "45723d71314df95ae6e0e476fc4a7d1d958bdb4f4065c2a9e416df781e3c53d6" }, "downloads": -1, "filename": "twitter-1.7.1-py3.2.egg", "has_sig": false, "md5_digest": "e1918c7bd0604785ba38f7a0b97b2dda", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 55269, "upload_time": "2011-10-09T19:14:48", "url": "https://files.pythonhosted.org/packages/d1/77/98a01d7f1f8e67ee47591ae45c7d5b77c5a1f5dd90ee36194eaf7caeeca1/twitter-1.7.1-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "37f9251fb62210927a6b54adee62a08e", "sha256": "f56da16d29bd9df47f791bfbe3e3215d0258415e8f737a8f031cc1e27951c787" }, "downloads": -1, "filename": "twitter-1.7.1.tar.gz", "has_sig": false, "md5_digest": "37f9251fb62210927a6b54adee62a08e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20803, "upload_time": "2011-10-09T19:14:42", "url": "https://files.pythonhosted.org/packages/a9/ea/b1304252f2b17870d2125f264844cd13aa97612e81bbff9cf8d8c3d4c74b/twitter-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "a81b512cc8be5ba278bdaceb6d988fe6", "sha256": "a7f4b8103ac94b7f16ab90f47bc1a9aefdf244e1a16ecfaad0758562388891b6" }, "downloads": -1, "filename": "twitter-1.7.2.tar.gz", "has_sig": false, "md5_digest": "a81b512cc8be5ba278bdaceb6d988fe6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20959, "upload_time": "2011-11-22T22:02:38", "url": "https://files.pythonhosted.org/packages/8c/3c/1530504f45459363512e141e4db4f426072465ffa5fb9f9c792587b210bc/twitter-1.7.2.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "368ad394405647270d7a9591aafaffd0", "sha256": "55bfcd45013317a0b363dd4d926d129bb58bd3ab5b8aeb01226e9fe93e6da702" }, "downloads": -1, "filename": "twitter-1.8.0.tar.gz", "has_sig": false, "md5_digest": "368ad394405647270d7a9591aafaffd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30137, "upload_time": "2012-05-13T22:17:50", "url": "https://files.pythonhosted.org/packages/48/86/05ec4b78659bf4a74cd884f00857de8e823212984a38fa8955c17bedc5ef/twitter-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "d0fb380321f6765ab81c4b2932c26171", "sha256": "4cd59c7206a21a099430ea1f5c46b934dfedbca493f657f6af3872498302b900" }, "downloads": -1, "filename": "twitter-1.9.0.tar.gz", "has_sig": false, "md5_digest": "d0fb380321f6765ab81c4b2932c26171", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31441, "upload_time": "2012-08-03T23:08:41", "url": "https://files.pythonhosted.org/packages/e9/c5/3e02f00e2fc7b458e22bc743065771ec221ac43621e978322dd4e1a7a34f/twitter-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "ca654e8df948d1e3a21fcef64b685f22", "sha256": "4a2f2e90542dc2449e863df4298ebb1075d479393decfcb6c42292847bff828a" }, "downloads": -1, "filename": "twitter-1.9.1.tar.gz", "has_sig": false, "md5_digest": "ca654e8df948d1e3a21fcef64b685f22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32909, "upload_time": "2013-01-27T22:15:16", "url": "https://files.pythonhosted.org/packages/27/b8/a39232a0a79362ae531862edda73d5254e343fd99d5c29bbbaa3f79f6bfd/twitter-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "4541790e9a84018c1de4b7d8e3bbb5c8", "sha256": "b754d4d6cc823c80968575eee7002ccc22982aa0b6bfae140b77b606a38cb6f2" }, "downloads": -1, "filename": "twitter-1.9.2.tar.gz", "has_sig": false, "md5_digest": "4541790e9a84018c1de4b7d8e3bbb5c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32929, "upload_time": "2013-03-25T19:57:39", "url": "https://files.pythonhosted.org/packages/7d/a3/73c3785b1730a087daa4fd8c6e22b890de84481e0995cc8023dc4271a221/twitter-1.9.2.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "bd3ddd7b1739c0213f6b34ee9742f485", "sha256": "3d5b7265bde7fedf7d8ebe3b5ba4cbd3a00ae904e8364cf061bd27b563390037" }, "downloads": -1, "filename": "twitter-1.9.3.tar.gz", "has_sig": false, "md5_digest": "bd3ddd7b1739c0213f6b34ee9742f485", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32903, "upload_time": "2013-04-21T11:43:29", "url": "https://files.pythonhosted.org/packages/c8/ae/1f71892b8d4b431ce3e14e8f371001668a122e4d2b6a0dc7759b7a453412/twitter-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "14d39d8746a1224409c2d41a511d4a90", "sha256": "10e5e9ca9ff9b30869f2493ab432312e9b3e82ba6224c08a3b29b3eebe180f7d" }, "downloads": -1, "filename": "twitter-1.9.4.tar.gz", "has_sig": false, "md5_digest": "14d39d8746a1224409c2d41a511d4a90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32945, "upload_time": "2013-04-21T11:58:26", "url": "https://files.pythonhosted.org/packages/d7/ae/ec7b9f750a53a08f80a018a57c2c00f5008bc412fd2d09a10c8c3bbce44c/twitter-1.9.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ce966020ae120d4f65ddfe4ce0695814", "sha256": "52545fd3b70d3d3807d3ce62d1a256727856d784d1630d64dedcc643aaf0b908" }, "downloads": -1, "filename": "twitter-1.18.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ce966020ae120d4f65ddfe4ce0695814", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54390, "upload_time": "2017-10-20T08:14:20", "url": "https://files.pythonhosted.org/packages/85/e2/f602e3f584503f03e0389491b251464f8ecfe2596ac86e6b9068fe7419d3/twitter-1.18.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22aa581b0c463963ae577e62e1a72158", "sha256": "acdc85e5beea752967bb64c63bde8b915c49a31a01db1b2fecccf9f2c1d5c44d" }, "downloads": -1, "filename": "twitter-1.18.0.tar.gz", "has_sig": false, "md5_digest": "22aa581b0c463963ae577e62e1a72158", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47695, "upload_time": "2017-10-20T08:14:22", "url": "https://files.pythonhosted.org/packages/8a/9d/cea0ec784ba05d56fbd8a56a674ca12d9b012487528ce91e0064b19224f7/twitter-1.18.0.tar.gz" } ] }