{ "info": { "author": "Celia Oakley", "author_email": "celia.oakley@alumni.stanford.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Utilities" ], "description": "tmdbsimple\n==========\n\nA wrapper for The Movie Database API v3\n---------------------------------------\n\n*tmdbsimple* is a wrapper, written in Python, for The Movie Database (TMDb) API v3. By calling the functions available in *tmdbsimple* you can simplify your code and easily access a vast amount of movie, tv, and cast data. To learn more about The Movie Database API, check out the overview page http://www.themoviedb.org/documentation/api and documentation page https://developers.themoviedb.org/3.\n\nFeatures\n--------\n\n- COMPLETELY UPDATED AND FULLY TESTED. Updated with the latest Account, Authentication, Certification, GuestSession, List, Movie, People, Timezones, TV, TV Season, and TV Episode methods. \n- Supports and tested under Python 2.7.6, 3.3.5, and 3.4.0\n- One-to-one mapping between *tmdbsimple* functions and TMDb methods.\n- Implements all TMDb methods, including Accounts and Authentication.\n- Implements new TV features.\n- Easy to access data using Python class attributes.\n- Easy to experiment with *tmdbsimple* functions inside the Python interpreter.\n- Code tested with unittests, which illustrate the function call syntax.\n\nInstallation\n------------\n\n*tmdbsimple* is available on the Python Package Index (PyPI) at https://pypi.python.org/pypi/tmdbsimple.\n\nYou can install *tmdbsimple* using one of the following techniques.\n\n- Use pip:\n\n::\n\n pip install tmdbsimple\n\n- Download the .zip or .tar.gz file from PyPI and install it yourself\n- Download the `source from Github`_ and install it yourself\n\nIf you install it yourself, also install requests_.\n\n.. _source from Github: http://github.com/celiao/tmdbsimple\n.. _requests: http://www.python-requests.org/en/latest\n\nAPI Key\n-------\nYou will need an API key to The Movie Database to access the API. To obtain a key, follow these steps:\n\n1) Register for and verify an account_.\n2) `Log into`_ your account.\n3) Select the API section on left side of your account page.\n4) Click on the link to generate a new API key and follow the instructions.\n\n.. _account: https://www.themoviedb.org/account/signup\n.. _Log into: https://www.themoviedb.org/login\n\nExamples\n--------\nOnce you have the *tmdbsimple* package installed and a TMDb API key, you can start to play with the data.\n\nFirst, import the library and assign your API_KEY.\n\n.. code-block:: python\n\n >>> import tmdbsimple as tmdb\n >>> tmdb.API_KEY = 'YOUR_API_KEY_HERE'\n\nTo communicate with The Movie Database API, create an instance of one of the object types, call one of the methods on the instance, and access the instance attributes. Use keys to access the values of attributes that are dictionaries. In this example, we create a movie instance for 'The Matrix' and determine the budget and certification.\n\n.. code-block:: python\n\n >>> movie = tmdb.Movies(603)\n >>> response = movie.info()\n >>> movie.title\n 'The Matrix'\n >>> movie.budget\n 63000000\n >>> response = movie.releases()\n >>> for c in movie.countries:\n ... if c['iso_3166_1'] == 'US':\n ... print(c['certification'])\n ...\n 'R'\n\nLet's play with the interface a bit more. Suppose you and your friend are arguing over which movie in the Bourne series was most popular. Your friend says the first in a series is always most popular. You disagree.\n\n.. code-block:: python\n\n >>> search = tmdb.Search()\n >>> response = search.movie(query='The Bourne')\n >>> for s in search.results:\n ... print(s['title'], s['id'], s['release_date'], s['popularity'])\n ...\n The Bourne Ultimatum 2503 2007-08-03 55.2447062124256\n The Bourne Supremacy 2502 2004-07-23 43.4553609681985\n The Bourne Identity 2501 2002-06-06 38.5531563780592\n The Bourne Legacy 49040 2012-08-10 9.90635210153143\n The Bourne Identity 8677 1988-05-08 1.53988446573129\n Bette Bourne: It Goes with the Shoes 179304 0.23\n\nYou are correct! Now you claim the producers should be able to make sequels cheaper, based on what they learned from making the first movie. To be fair, you compute the budget per minute of runtime. Your friend disagrees, claiming the producers spend more money trying to out do the previous sequel.\n\n.. code-block:: python\n\n >>> identity = tmdb.Movies(2501)\n >>> response = identity.info()\n >>> identity.budget, identity.runtime\n (60000000, 119)\n >>> int(identity.budget/identity.runtime)\n 504201\n >>> supremacy = tmdb.Movies(2502)\n >>> response = supremacy.info()\n >>> supremacy.budget, supremacy.runtime\n (75000000, 108)\n >>> int(supremacy.budget/supremacy.runtime)\n 694444\n >>> ultimatum = tmdb.Movies(2503)\n >>> response = ultimatum.info()\n >>> ultimatum.budget, ultimatum.runtime\n (70000000, 115)\n >>> int(ultimatum.budget/ultimatum.runtime)\n 608695\n\nIn this case you are both correct. The third movie was cheaper than the second, which was more expensive than the first.\n\nYou also can call one of the methods without explicitly instanciating an object.\n\n.. code-block:: python\n\n >>> response = tmdb.Movies(603).info()\n >>> response['budget']\n 63000000\n\nIf you use Authentication to access a user Account, be sure to check out\nhttps://www.themoviedb.org/documentation/api/sessions.\n\nIf you like this wrapper, and would like access to even more movie and TV data, check out *rtsimple* https://pypi.python.org/pypi/rtsimple, a wrapper for the Rotten Tomatoes API.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/celiao/tmdbsimple/tarball/2.2.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/celiao/tmdbsimple", "keywords": "movie,the movie database,movie database,tmdb,wrapper,database,themoviedb,moviedb,api", "license": "", "maintainer": "", "maintainer_email": "", "name": "tmdbsimple", "package_url": "https://pypi.org/project/tmdbsimple/", "platform": "", "project_url": "https://pypi.org/project/tmdbsimple/", "project_urls": { "Download": "https://github.com/celiao/tmdbsimple/tarball/2.2.0", "Homepage": "https://github.com/celiao/tmdbsimple" }, "release_url": "https://pypi.org/project/tmdbsimple/2.2.0/", "requires_dist": [ "requests" ], "requires_python": "", "summary": "A Python wrapper for The Movie Database API v3", "version": "2.2.0" }, "last_serial": 3747450, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "824244b4eb5e45071e88ab460d103801", "sha256": "84e79b8a888616d3632b9c65e15d01c0d64f037a09a5a5bb276eda39bc57c5a3" }, "downloads": -1, "filename": "tmdbsimple-0.2.tar.gz", "has_sig": false, "md5_digest": "824244b4eb5e45071e88ab460d103801", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11674, "upload_time": "2013-12-06T19:32:26", "url": "https://files.pythonhosted.org/packages/f4/be/7fd062b126220def9cf9fbf7459f3cf19816816dd515537d5664ca7f160f/tmdbsimple-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "41017137fdb4e7387eb07ec1ece10ce1", "sha256": "25c2dff784d550d07f31fef0a73bef4df28ebd86663068a1d0e6a9de5db70f2a" }, "downloads": -1, "filename": "tmdbsimple-0.2.1.tar.gz", "has_sig": false, "md5_digest": "41017137fdb4e7387eb07ec1ece10ce1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11575, "upload_time": "2013-12-06T20:06:54", "url": "https://files.pythonhosted.org/packages/b4/39/cd3d8241bf249277666f3fe74dd6eebc5d6c7d0f959465339a192cb5c598/tmdbsimple-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "6a9fd67c0dc299b71d4cf8b980f6e45b", "sha256": "afe5bc54aabae4889a52b770f62dbc8b0d255646c1190c4c4f27a818c34ffcb8" }, "downloads": -1, "filename": "tmdbsimple-0.2.2.tar.gz", "has_sig": false, "md5_digest": "6a9fd67c0dc299b71d4cf8b980f6e45b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11605, "upload_time": "2013-12-09T05:26:45", "url": "https://files.pythonhosted.org/packages/2e/9f/32b6bd8aa7cfe042ce0b738c9ca1bf22af858830783852d373785fe56180/tmdbsimple-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "8aeef830519cfaa6da9bebb1665c7983", "sha256": "1f62688b4776e5ac633e91c04f0e61e615df3949e9330002fcdf7c786004d18d" }, "downloads": -1, "filename": "tmdbsimple-0.3.0.tar.gz", "has_sig": false, "md5_digest": "8aeef830519cfaa6da9bebb1665c7983", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11698, "upload_time": "2013-12-17T21:13:42", "url": "https://files.pythonhosted.org/packages/e0/25/afcf64a90880563ab54df0ec6fbcc79fa1f175ad447b180173e075083f95/tmdbsimple-0.3.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "0abfaddfa1490791e5468e9e6779e086", "sha256": "34c71acb1c74928d1016c553d8a2ed493042183f96242b7d693ee196a221cc9a" }, "downloads": -1, "filename": "tmdbsimple-0.9.0.tar.gz", "has_sig": false, "md5_digest": "0abfaddfa1490791e5468e9e6779e086", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15350, "upload_time": "2014-07-12T04:46:33", "url": "https://files.pythonhosted.org/packages/ea/fb/973febff00c0322edcc92b7d7eb40a1fd6c74c70a9dab5e0bc03873ed548/tmdbsimple-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "e8d4a4ea23e5d580ec066cc78c101b72", "sha256": "01b5f1e1017ae09a117f118f75b178146f8946afac39020bce31899293ef4521" }, "downloads": -1, "filename": "tmdbsimple-0.9.1.tar.gz", "has_sig": false, "md5_digest": "e8d4a4ea23e5d580ec066cc78c101b72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15380, "upload_time": "2014-07-12T06:34:35", "url": "https://files.pythonhosted.org/packages/f9/53/0dde45e9db67f20fc5552e729a73352774b7b26eddab151b62aca9b3fa0c/tmdbsimple-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "68cc33d49e645b1295fcabb44d6304f6", "sha256": "94e6d9a56696a32f74f85e55ce8cac6f9cc69a5b922b4d585e4636b685cad6a2" }, "downloads": -1, "filename": "tmdbsimple-0.9.2.tar.gz", "has_sig": false, "md5_digest": "68cc33d49e645b1295fcabb44d6304f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15467, "upload_time": "2014-09-15T00:08:54", "url": "https://files.pythonhosted.org/packages/b3/63/755e0b53973854376d466ab5086423a4fb959b110320b29f92008aa93f68/tmdbsimple-0.9.2.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "76ec8fac8af6ae33a6246e75d5a23228", "sha256": "2780f82f405aaa7951b9fb09a1a91e94cc46a74a9b3117798f4c17c3c1c30a6a" }, "downloads": -1, "filename": "tmdbsimple-1.0.0-py3.3.egg", "has_sig": false, "md5_digest": "76ec8fac8af6ae33a6246e75d5a23228", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 45345, "upload_time": "2017-10-23T03:48:44", "url": "https://files.pythonhosted.org/packages/a0/39/ba0edd5952e3c9390d3e7c3b8018c6e06ed34303bef6343727b0e18eef3d/tmdbsimple-1.0.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "78abf5a8fa44af2aa569de7a0c84630e", "sha256": "68d4ff3dce30764ce807b6c919cab9aabd4849e56bc2c32aa9c41f60f6bd2662" }, "downloads": -1, "filename": "tmdbsimple-1.0.0.tar.gz", "has_sig": false, "md5_digest": "78abf5a8fa44af2aa569de7a0c84630e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15470, "upload_time": "2014-09-22T23:28:28", "url": "https://files.pythonhosted.org/packages/4b/b3/ec8e1f0d9500f5f9b6a49a20eab97c743c93da71da3b643b7cfcc10961ef/tmdbsimple-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "bae538c636be7915071459c41fccc7e4", "sha256": "46d4776e31f75681f8cfd4229da99df9cbff1aadf848951f701c2e1acb11aebe" }, "downloads": -1, "filename": "tmdbsimple-1.1.0.tar.gz", "has_sig": false, "md5_digest": "bae538c636be7915071459c41fccc7e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15634, "upload_time": "2015-03-24T05:23:41", "url": "https://files.pythonhosted.org/packages/f0/19/ad0c4e78cc08545583d554e28543ea4181d642942fec45be1d32edafbcb6/tmdbsimple-1.1.0.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "07776ddd845b990aa0d09efa0f7a1e14", "sha256": "02495c0a0bf004a9071d37b80391bda052780713d12d8498863fdeeff47378a0" }, "downloads": -1, "filename": "tmdbsimple-1.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "07776ddd845b990aa0d09efa0f7a1e14", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23964, "upload_time": "2018-01-01T03:02:05", "url": "https://files.pythonhosted.org/packages/56/d0/300ec2fa07509e38c75842e46e669aa30192f498ce834117db32e678b196/tmdbsimple-1.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1ae2951ec4e0a64bd7b4a5185f1254a", "sha256": "4ad9b244e9d04a0297e81e426ff82ce64b41845bd97c7f9e38fbf786f77f858b" }, "downloads": -1, "filename": "tmdbsimple-1.10.0.tar.gz", "has_sig": false, "md5_digest": "b1ae2951ec4e0a64bd7b4a5185f1254a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15996, "upload_time": "2018-01-01T03:02:16", "url": "https://files.pythonhosted.org/packages/70/d8/ee357f3018577aa616d2d27ef045326c1c6257da2461d62b1dc2f7538112/tmdbsimple-1.10.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "8ecd48a8d3416eb4fd4f07b95724ae15", "sha256": "bbddc57dd7a5757e971ad2ba3e1c995e585aed6450d2329f67c61af5db4e0114" }, "downloads": -1, "filename": "tmdbsimple-1.2.0.tar.gz", "has_sig": false, "md5_digest": "8ecd48a8d3416eb4fd4f07b95724ae15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15639, "upload_time": "2015-03-25T04:10:09", "url": "https://files.pythonhosted.org/packages/45/4e/e35ac9fa0f0edce60e33b09b7f0960b0b06c1378d4302f507ac9ffc68587/tmdbsimple-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "0a17c5660a15f830f757a2d6b6527a44", "sha256": "57127371cf8f19fd2fbfa790429f063e4304b3532392d9a1b8f7bc40b0657fd5" }, "downloads": -1, "filename": "tmdbsimple-1.3.0.tar.gz", "has_sig": false, "md5_digest": "0a17c5660a15f830f757a2d6b6527a44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15655, "upload_time": "2015-03-30T04:08:05", "url": "https://files.pythonhosted.org/packages/1d/0f/bd40363b71aa1da75c2de8799b416ae5cb05dea3a6a7fbf6e2424692ae32/tmdbsimple-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "f79896e6c3472d09eb6664646ed91000", "sha256": "637a63a7d6375e918b5a35971cbeb2088b1319444fd74a87f57e8df594670d8d" }, "downloads": -1, "filename": "tmdbsimple-1.4.0.tar.gz", "has_sig": false, "md5_digest": "f79896e6c3472d09eb6664646ed91000", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15687, "upload_time": "2016-07-16T22:31:56", "url": "https://files.pythonhosted.org/packages/5a/21/df4036ce8705d332c33ffaab30a7805cfc1361dd86ecc2f466671e9c1c7e/tmdbsimple-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "23cfafe227e15d73657e4c261cf49580", "sha256": "2a41602776f4c3a2168a33379f9d284ed5e702226389f907326236a6944967ed" }, "downloads": -1, "filename": "tmdbsimple-1.4.1.tar.gz", "has_sig": false, "md5_digest": "23cfafe227e15d73657e4c261cf49580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15816, "upload_time": "2017-01-07T21:18:43", "url": "https://files.pythonhosted.org/packages/9b/e3/a24dec98f1b0cd89f5b94534d9faef00ac8c88cb40ebeda283b70b9c85c3/tmdbsimple-1.4.1.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "c8b4afdadd18f07713ed529ff0eff9cb", "sha256": "7c0f84e5f163e8b37ea5357b62580d7691f3c5456b90b6a196be821d736b509c" }, "downloads": -1, "filename": "tmdbsimple-1.5.0.tar.gz", "has_sig": false, "md5_digest": "c8b4afdadd18f07713ed529ff0eff9cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15924, "upload_time": "2017-01-15T22:29:10", "url": "https://files.pythonhosted.org/packages/4f/95/858b6067ceffce60f81b84576ccbd3be33d0617c494e6fd217754b1891c3/tmdbsimple-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "ef5c645153ab132f8f3d4ffb55b1a412", "sha256": "944ae18819e5616c4acb0336b2e3b9429cc1ed6f3f3e4c11543f2be8357e497c" }, "downloads": -1, "filename": "tmdbsimple-1.6.0.tar.gz", "has_sig": false, "md5_digest": "ef5c645153ab132f8f3d4ffb55b1a412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15763, "upload_time": "2017-03-12T21:09:00", "url": "https://files.pythonhosted.org/packages/cc/f9/33603d777f11afa74d5de9f9e5d2a32d3079e0b4b26bc0dbe90b5e30ad6a/tmdbsimple-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "fb5c19aa3184ad76e727e459edbd811e", "sha256": "3bc8ca4c6e138cce562eb3ea73f64d55133dc8a39d78809bd9b725c034bf538a" }, "downloads": -1, "filename": "tmdbsimple-1.6.1.tar.gz", "has_sig": false, "md5_digest": "fb5c19aa3184ad76e727e459edbd811e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15760, "upload_time": "2017-03-12T21:19:48", "url": "https://files.pythonhosted.org/packages/d1/b7/459b5487c0ff848ada873c9d50466ada28e97c48dc4fb802399ec9338cb3/tmdbsimple-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "484c11f7c725afebfcf3ab49a28619d6", "sha256": "26588fcf8a146cd6734a48b5e9765069420fbd1665e234f353583a469370de5b" }, "downloads": -1, "filename": "tmdbsimple-1.7.0.tar.gz", "has_sig": false, "md5_digest": "484c11f7c725afebfcf3ab49a28619d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15955, "upload_time": "2017-06-17T20:13:07", "url": "https://files.pythonhosted.org/packages/74/cf/099de467cdc971075bec6ab1c323a12f77b06e2818f1d020f7cd04443b92/tmdbsimple-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "ec14c345ee3e89f43c23225d9133b807", "sha256": "b7630f7c4abba628da059ce365b6fe07adb1685f458ed935328024d1b817a865" }, "downloads": -1, "filename": "tmdbsimple-1.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec14c345ee3e89f43c23225d9133b807", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23866, "upload_time": "2017-10-23T03:48:41", "url": "https://files.pythonhosted.org/packages/cf/37/aa81234ad36addb4f5e4844ca3f327d4f6ce26aa5e0f2532287204707716/tmdbsimple-1.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e21717d38743c4dd7c4a16900610436a", "sha256": "1415d7075efeac5830089d03cc1299f6be936c243d2a78c1f1ed9bfa0ce2d9c1" }, "downloads": -1, "filename": "tmdbsimple-1.8.0.tar.gz", "has_sig": false, "md5_digest": "e21717d38743c4dd7c4a16900610436a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16011, "upload_time": "2017-10-23T03:48:49", "url": "https://files.pythonhosted.org/packages/ff/fa/b41e20a33c0afd632113bda74fd2ddeb8d8c7861218551e81dd91c837e00/tmdbsimple-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "3b0876fb6ce3327b74f344e05afe1153", "sha256": "6e353bd2df4d23a45aabdc0bd2576e2d4846db2dd5af5d650d103655e79bb995" }, "downloads": -1, "filename": "tmdbsimple-1.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b0876fb6ce3327b74f344e05afe1153", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23892, "upload_time": "2018-01-01T02:42:06", "url": "https://files.pythonhosted.org/packages/f4/fb/18e6f096a3812b591dfa5494008ddc90dba222468c2da1c28510798ecab3/tmdbsimple-1.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfef2bec2229d567546c53e6a5af0ca7", "sha256": "8ccddb39300ab731753555081176d370cf2bfcf21e3aaaf96b47640adabef59c" }, "downloads": -1, "filename": "tmdbsimple-1.9.0.tar.gz", "has_sig": false, "md5_digest": "dfef2bec2229d567546c53e6a5af0ca7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15982, "upload_time": "2018-01-01T02:42:20", "url": "https://files.pythonhosted.org/packages/c4/e6/64b3bfc70e1a91e59a4cce75a164cf7422c3c03462593aea49c1ac99b292/tmdbsimple-1.9.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "db402573159688b483a1fcbfe318321d", "sha256": "213c88a8ea41aa848227af398878ebc5da27ebffd14dac5035b1a0379bfe6ab4" }, "downloads": -1, "filename": "tmdbsimple-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db402573159688b483a1fcbfe318321d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23950, "upload_time": "2018-01-01T04:13:03", "url": "https://files.pythonhosted.org/packages/44/b2/efad46dd9cb1d10f7db7921fff57c7b8348263b5d4873e42dfcae7867b65/tmdbsimple-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58bb5d8ed21210cb75470f11960c43ed", "sha256": "e02f918343bb5d7f92181a5ec4e3289d28c431311af3c2916d06b87776c581df" }, "downloads": -1, "filename": "tmdbsimple-2.0.0.tar.gz", "has_sig": false, "md5_digest": "58bb5d8ed21210cb75470f11960c43ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15994, "upload_time": "2018-01-01T04:13:21", "url": "https://files.pythonhosted.org/packages/da/55/b608ceff384b1d36cef60447ecb60765bd9a201cb86dbd08e7ed4a5bc34b/tmdbsimple-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "4ccae0eb4c677c66f80bd2fad4b4043f", "sha256": "ff95f418bceb3da30fccbd75c43e8ed673403c72342bf88a8a857c6b2529e7d4" }, "downloads": -1, "filename": "tmdbsimple-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4ccae0eb4c677c66f80bd2fad4b4043f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23966, "upload_time": "2018-01-07T00:04:12", "url": "https://files.pythonhosted.org/packages/c7/b3/121bfb5333e2b4a966355cae4a6fb228b37418ff3ffc8339a4002def9222/tmdbsimple-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad286764a7c3f101af80e3ec76b05a47", "sha256": "58b55f6d4d6b828733d7054468c6a2ca76f011f0b5a10ee4dc701072b7a8cf70" }, "downloads": -1, "filename": "tmdbsimple-2.1.0.tar.gz", "has_sig": false, "md5_digest": "ad286764a7c3f101af80e3ec76b05a47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16017, "upload_time": "2018-01-07T00:04:23", "url": "https://files.pythonhosted.org/packages/f9/76/8df55e2b3f2738ab9b7de312ba9a5898c0e4345bc514bcb2ef243ca8a311/tmdbsimple-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "ab1ce8d4fde9bcc6717f06f82dca775c", "sha256": "3383780ae40fbc2b5197feb06496f81f3a5c0ff3336a2a971a51e638fb10c895" }, "downloads": -1, "filename": "tmdbsimple-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab1ce8d4fde9bcc6717f06f82dca775c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23955, "upload_time": "2018-04-09T04:25:59", "url": "https://files.pythonhosted.org/packages/52/d7/e84d96acfff3154bd84cc139472fb3d1293fabf20cd150833b3229c1e40d/tmdbsimple-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33f536947856303601a0dbf8e2d4857a", "sha256": "cd8c5bc3599e803f1f908339b3d010e138722d147f10ed410b3205c72db0c00c" }, "downloads": -1, "filename": "tmdbsimple-2.2.0.tar.gz", "has_sig": false, "md5_digest": "33f536947856303601a0dbf8e2d4857a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16012, "upload_time": "2018-04-09T04:26:05", "url": "https://files.pythonhosted.org/packages/d0/72/b68ca85456c5c9afe086c04b6008b2df3b29644b89365734d585985def14/tmdbsimple-2.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ab1ce8d4fde9bcc6717f06f82dca775c", "sha256": "3383780ae40fbc2b5197feb06496f81f3a5c0ff3336a2a971a51e638fb10c895" }, "downloads": -1, "filename": "tmdbsimple-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab1ce8d4fde9bcc6717f06f82dca775c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23955, "upload_time": "2018-04-09T04:25:59", "url": "https://files.pythonhosted.org/packages/52/d7/e84d96acfff3154bd84cc139472fb3d1293fabf20cd150833b3229c1e40d/tmdbsimple-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33f536947856303601a0dbf8e2d4857a", "sha256": "cd8c5bc3599e803f1f908339b3d010e138722d147f10ed410b3205c72db0c00c" }, "downloads": -1, "filename": "tmdbsimple-2.2.0.tar.gz", "has_sig": false, "md5_digest": "33f536947856303601a0dbf8e2d4857a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16012, "upload_time": "2018-04-09T04:26:05", "url": "https://files.pythonhosted.org/packages/d0/72/b68ca85456c5c9afe086c04b6008b2df3b29644b89365734d585985def14/tmdbsimple-2.2.0.tar.gz" } ] }