{ "info": { "author": "Blair Gemmer", "author_email": "blair@intelligen.technology", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "[![Current Version on\nPyPI](https://img.shields.io/pypi/v/omdbpy?style=for-the-badge&logo=pypi&label=Version)](https://pypi.org/project/omdbpy/)\n[![PyPI Format](https://img.shields.io/pypi/format/omdbpy?style=for-the-badge&logo=pypi&label=Format)](https://pypi.org/project/omdbpy/)\n[![PyPI Status](https://img.shields.io/pypi/status/omdbpy?style=for-the-badge&logo=pypi&label=Status)](https://pypi.org/project/omdbpy/)\n[![Supported Python\nVersions](https://img.shields.io/pypi/pyversions/omdbpy?style=for-the-badge&logo=pypi)](https://pypi.org/project/omdbpy/)\n[![Build](https://img.shields.io/travis/com/blairg23/omdbpy?style=for-the-badge&logo=travis)](https://travis-ci.com/blairg23/omdbpy)\n[![Coverage](https://img.shields.io/coveralls/github/blairg23/omdbpy?style=for-the-badge&logo=coverage)](https://coveralls.io/github/blairg23/omdbpy)\n[![License](https://img.shields.io/pypi/l/omdbpy?style=for-the-badge&logo=pypi)](https://github.com/blairg23/omdbpy)\n[![Code style:\nblack](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge&logo=black)](https://github.com/psf/black)\n[![GitHub Last Commit](https://img.shields.io/github/last-commit/blairg23/omdbpy?style=for-the-badge&logo=github)](https://github.com/blairg23/omdbpy/commits/)\n\n# omdbpy\n\n`omdbpy` is a minimalist Python wrapper for the Open Movie Database (OMDb) API (https://www.omdbapi.com/).\n\n## Installation\n\n```\n$ pip install omdbpy\n```\n\n## Testing\n\nTo run linting via `flake8` and `pylint`, formatting via `black`, unit tests via `pytest`, get a `coverage` report, and build via `sdist` on all support versions of Python, run the following command:\n\n```\n$ tox\n```\n\n## Usage\n\n### Search by `search_terms`\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(search_terms='terminator', release_year='1984')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Search\": [\n {\n \"Title\": \"The Terminator\",\n \"Year\": \"1984\",\n \"imdbID\": \"tt0088247\",\n \"Type\": \"movie\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg\"\n },\n {\n \"Title\": \"The Making of 'Terminator'\",\n \"Year\": \"1984\",\n \"imdbID\": \"tt0267719\",\n \"Type\": \"movie\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BMTQ3MzE5NTI0Nl5BMl5BanBnXkFtZTgwNDE1OTk1MDE@._V1_SX300.jpg\"\n }\n ],\n \"totalResults\": \"2\",\n \"Response\": \"True\"\n}\n```\n\n---\n\n### Search by `title`\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(title='terminator', release_year='1984')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Title\": \"The Terminator\",\n \"Year\": \"1984\",\n \"Rated\": \"R\",\n \"Released\": \"26 Oct 1984\",\n \"Runtime\": \"107 min\",\n \"Genre\": \"Action, Sci-Fi\",\n \"Director\": \"James Cameron\",\n \"Writer\": \"James Cameron, Gale Anne Hurd, William Wisher (additional dialogue)\",\n \"Actors\": \"Arnold Schwarzenegger, Michael Biehn, Linda Hamilton, Paul Winfield\",\n \"Plot\": \"A cyborg is sent from the future on a deadly mission. He has to kill Sarah Connor, a young woman whose life will have a great significance in years to come. Sarah has only one protector - Kyle Reese - also sent from the future. The Terminator uses his exceptional intelligence and strength to find Sarah, but is there any way to stop the seemingly indestructible cyborg ?\",\n \"Language\": \"English, Spanish\",\n \"Country\": \"UK, USA\",\n \"Awards\": \"6 wins & 6 nominations.\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg\",\n \"Ratings\": [\n {\n \"Source\": \"Internet Movie Database\",\n \"Value\": \"8.0/10\"\n },\n {\n \"Source\": \"Rotten Tomatoes\",\n \"Value\": \"100%\"\n },\n {\n \"Source\": \"Metacritic\",\n \"Value\": \"84/100\"\n }\n ],\n \"Metascore\": \"84\",\n \"imdbRating\": \"8.0\",\n \"imdbVotes\": \"734,748\",\n \"imdbID\": \"tt0088247\",\n \"Type\": \"movie\",\n \"DVD\": \"03 Sep 1997\",\n \"BoxOffice\": \"N/A\",\n \"Production\": \"Orion Pictures Corporation\",\n \"Website\": \"http://www.terminator1.com/\",\n \"Response\": \"True\"\n}\n```\n\n---\n\n#### Search by `imdb_id`\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(imdb_id='tt0088247', release_year='1984')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Title\": \"The Terminator\",\n \"Year\": \"1984\",\n \"Rated\": \"R\",\n \"Released\": \"26 Oct 1984\",\n \"Runtime\": \"107 min\",\n \"Genre\": \"Action, Sci-Fi\",\n \"Director\": \"James Cameron\",\n \"Writer\": \"James Cameron, Gale Anne Hurd, William Wisher (additional dialogue)\",\n \"Actors\": \"Arnold Schwarzenegger, Michael Biehn, Linda Hamilton, Paul Winfield\",\n \"Plot\": \"A cyborg is sent from the future on a deadly mission. He has to kill Sarah Connor, a young woman whose life will have a great significance in years to come. Sarah has only one protector - Kyle Reese - also sent from the future. The Terminator uses his exceptional intelligence and strength to find Sarah, but is there any way to stop the seemingly indestructible cyborg ?\",\n \"Language\": \"English, Spanish\",\n \"Country\": \"UK, USA\",\n \"Awards\": \"6 wins & 6 nominations.\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg\",\n \"Ratings\": [\n {\n \"Source\": \"Internet Movie Database\",\n \"Value\": \"8.0/10\"\n },\n {\n \"Source\": \"Rotten Tomatoes\",\n \"Value\": \"100%\"\n },\n {\n \"Source\": \"Metacritic\",\n \"Value\": \"84/100\"\n }\n ],\n \"Metascore\": \"84\",\n \"imdbRating\": \"8.0\",\n \"imdbVotes\": \"734,748\",\n \"imdbID\": \"tt0088247\",\n \"Type\": \"movie\",\n \"DVD\": \"03 Sep 1997\",\n \"BoxOffice\": \"N/A\",\n \"Production\": \"Orion Pictures Corporation\",\n \"Website\": \"http://www.terminator1.com/\",\n \"Response\": \"True\"\n}\n```\n\n---\n\n## Important Notes about OMDb API\nAlthough `search_terms`, `imdb_id`, and `title` are all optional, at least one must be chosen or an error will be returned.\nThrough testing, it appears that there is a priority order. In other words, if one query parameter is provided, it will take priority over the others\nthat are provided. This theory can be tested easily by providing three different examples and verifying the results. \nThe priority is as follows: `search_terms` > `title` > `imdb_id`. Keep in mind that the `release_year` greatly affects the results as well. \n\nFor example, if you search via `title` with `title=\"terminator\"` and the `release_year=\"1984\"`, you will get `The Terminator (imdb_id=tt0088247)`:\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(title='terminator', release_year='1984')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Title\": \"The Terminator\",\n \"Year\": \"1984\",\n \"Rated\": \"R\",\n \"Released\": \"26 Oct 1984\",\n \"Runtime\": \"107 min\",\n \"Genre\": \"Action, Sci-Fi\",\n \"Director\": \"James Cameron\",\n \"Writer\": \"James Cameron, Gale Anne Hurd, William Wisher (additional dialogue)\",\n \"Actors\": \"Arnold Schwarzenegger, Michael Biehn, Linda Hamilton, Paul Winfield\",\n \"Plot\": \"A cyborg is sent from the future on a deadly mission. He has to kill Sarah Connor, a young woman whose life will have a great significance in years to come. Sarah has only one protector - Kyle Reese - also sent from the future. The Terminator uses his exceptional intelligence and strength to find Sarah, but is there any way to stop the seemingly indestructible cyborg ?\",\n \"Language\": \"English, Spanish\",\n \"Country\": \"UK, USA\",\n \"Awards\": \"6 wins & 6 nominations.\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_SX300.jpg\",\n \"Ratings\": [\n {\n \"Source\": \"Internet Movie Database\",\n \"Value\": \"8.0/10\"\n },\n {\n \"Source\": \"Rotten Tomatoes\",\n \"Value\": \"100%\"\n },\n {\n \"Source\": \"Metacritic\",\n \"Value\": \"84/100\"\n }\n ],\n \"Metascore\": \"84\",\n \"imdbRating\": \"8.0\",\n \"imdbVotes\": \"734,748\",\n \"imdbID\": \"tt0088247\",\n \"Type\": \"movie\",\n \"DVD\": \"03 Sep 1997\",\n \"BoxOffice\": \"N/A\",\n \"Production\": \"Orion Pictures Corporation\",\n \"Website\": \"http://www.terminator1.com/\",\n \"Response\": \"True\"\n}\n``` \n\nHowever, if you search via `search_terms` with `search_terms=\"terminator\"` with `release_year=\"1985\"`, you will get `Ninja Terminator (imdb_id=tt0199849)`:\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(search_terms='terminator', release_year='1985')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Search\": [\n {\n \"Title\": \"Ninja Terminator\",\n \"Year\": \"1985\",\n \"imdbID\": \"tt0199849\",\n \"Type\": \"movie\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BMGZiNTczNWItOTdmYy00OTFjLWIwOWUtMmE3Y2QyNzBmZDJkXkEyXkFqcGdeQXVyNzg3NjQyOQ@@._V1_SX300.jpg\"\n }\n ],\n \"totalResults\": \"1\",\n \"Response\": \"True\"\n}\n```\n\nOften, you will receive more than one object as the result of a search. For example, if you search via `search_terms` with `search_terms=\"terminator\"` with the `release_year=\"2002\"`, you will get\n`The Terminator: Dawn of Fate (imdb_id=tt0320595)` and `Terminator: A Short Film About JT LeRoy (imdb_id=tt7108520)`:\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(search_terms='terminator', release_year='2002')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Search\": [\n {\n \"Title\": \"The Terminator: Dawn of Fate\",\n \"Year\": \"2002\",\n \"imdbID\": \"tt0320595\",\n \"Type\": \"game\",\n \"Poster\": \"https://m.media-amazon.com/images/M/MV5BYjEyNWU3Y2ItMGI4MS00OGY2LTk2ZTUtNWQyNDY3MTRmM2I1XkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_SX300.jpg\"\n },\n {\n \"Title\": \"Terminator: A Short Film About JT LeRoy\",\n \"Year\": \"2002\",\n \"imdbID\": \"tt7108520\",\n \"Type\": \"movie\",\n \"Poster\": \"N/A\"\n }\n ],\n \"totalResults\": \"2\",\n \"Response\": \"True\"\n}\n```\n\nIf there are no results, you will get a response with a message like this one:\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(search_terms='terminator', release_year='32')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Response\": \"False\",\n \"Error\": \"Movie not found!\"\n}\n```\n\nFinally, if the request doesn't make sense, you will get a response with a message like this one:\n```\n>>> import omdb\n>>> import json\n>>> omdb_api = omdb.Api(apikey='123xyz')\n>>> result = omdb_api.search(release_year='32')\n>>> print(json.dumps(result.json(), indent=4))\n{\n \"Response\": \"False\",\n \"Error\": \"Something went wrong.\"\n}\n```", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/blairg23/omdbpy", "keywords": "omdb api imdb movies television", "license": "MIT", "maintainer": "Blair Gemmer", "maintainer_email": "blair@intelligen.technology", "name": "omdbpy", "package_url": "https://pypi.org/project/omdbpy/", "platform": "any", "project_url": "https://pypi.org/project/omdbpy/", "project_urls": { "Homepage": "https://github.com/blairg23/omdbpy", "Source": "https://github.com/blairg23/omdbpy", "Tracker": "https://github.com/blairg23/omdbpy/issues" }, "release_url": "https://pypi.org/project/omdbpy/0.1.14/", "requires_dist": null, "requires_python": "", "summary": "A minimalist Python wrapper for the Open Movie Database (OMDb) API (https://www.omdbapi.com/).", "version": "0.1.14" }, "last_serial": 5712371, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "e71309d01ecdf7afa789eff507e68439", "sha256": "21ceb59c5cf35a20ee7b729381f7bdc96cda01f5e3dfa88c4a642a486e9d467e" }, "downloads": -1, "filename": "omdbpy-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e71309d01ecdf7afa789eff507e68439", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3967, "upload_time": "2019-08-07T02:16:26", "url": "https://files.pythonhosted.org/packages/d7/f3/ff05cb5dab7b0dfcc23b94dc31b8b5173c9d2b1910eb46b612266c3a91a1/omdbpy-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02f0663b483bef8cbd4b91ff8b04d9a9", "sha256": "0ee0e5fb7d4c981a2428bf9586d34af24a87a9e02b4da1d66ef1a1ef6fe3b14d" }, "downloads": -1, "filename": "omdbpy-0.1.0.tar.gz", "has_sig": false, "md5_digest": "02f0663b483bef8cbd4b91ff8b04d9a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3636, "upload_time": "2019-08-07T02:16:28", "url": "https://files.pythonhosted.org/packages/8a/89/5718f64ee8524a67507239f5badcb648644f8c7755890bf6e308e99d720f/omdbpy-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "faa5c2212660ca3f10d4ab2407723544", "sha256": "e6d26f8691930ee0097a889706b586e37ef13f386ef689285f142cf0d4279936" }, "downloads": -1, "filename": "omdbpy-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "faa5c2212660ca3f10d4ab2407723544", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5256, "upload_time": "2019-08-07T02:50:24", "url": "https://files.pythonhosted.org/packages/f7/e2/d5d1b0aad7b22400fa7ffe93af9dcbb28de2a96afbb528e6af6d1c173ce7/omdbpy-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d7532bae6f25d9be9c4348827671307", "sha256": "f22452ac1ecb9d943c09450228a2f2971b2fe9d9850305b68f39bf784439f058" }, "downloads": -1, "filename": "omdbpy-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1d7532bae6f25d9be9c4348827671307", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4506, "upload_time": "2019-08-07T02:50:25", "url": "https://files.pythonhosted.org/packages/49/04/dda1b7a89a0b10fbf22c334e7e37d4f94e5f283e832033ca5664bc9ee03c/omdbpy-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "53b924346901453dcc4e4db005a6d394", "sha256": "83a4eba29a95d2cb7849fe10be981f37d6e8ad3ab890901fb97f51d3661cc4ed" }, "downloads": -1, "filename": "omdbpy-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53b924346901453dcc4e4db005a6d394", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6551, "upload_time": "2019-08-21T21:11:15", "url": "https://files.pythonhosted.org/packages/fd/ce/c1d6afa483126aca4610158ff2ea60a22a6a596497c42fc1e982bd758f0c/omdbpy-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d49175296ca3b69c8cf06af3f566858d", "sha256": "cb638c77be03fa3559b099e3bdd598cc830890a7dc728be1c6e9c4f2a5a01cc0" }, "downloads": -1, "filename": "omdbpy-0.1.10.tar.gz", "has_sig": false, "md5_digest": "d49175296ca3b69c8cf06af3f566858d", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7081, "upload_time": "2019-08-21T21:11:16", "url": "https://files.pythonhosted.org/packages/aa/d7/18884d9fa58f17393664be9a79ad093c3f9dc1321b89d4843f3e6dd7d7b3/omdbpy-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "5ae6cdc06512ba7273e2b6cfffcd4e93", "sha256": "6f09b1d2a0a57b9ea9884abe43255d74cbdc250ed2c704e80ae1a73bd20a9054" }, "downloads": -1, "filename": "omdbpy-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ae6cdc06512ba7273e2b6cfffcd4e93", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4*, !=3.5*", "size": 6547, "upload_time": "2019-08-21T21:31:44", "url": "https://files.pythonhosted.org/packages/0d/8c/dcfcb607f7292cc8e6ae261ac10a46cdecc455e82db7a77666b5811b2ddc/omdbpy-0.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18ecf7bf8b6e9e569d2a6af4f779bf5f", "sha256": "ce8f7453eb7dfb142c6647766e2fc6b974f59069d93564f50f26da766715527d" }, "downloads": -1, "filename": "omdbpy-0.1.11.tar.gz", "has_sig": false, "md5_digest": "18ecf7bf8b6e9e569d2a6af4f779bf5f", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4*, !=3.5*", "size": 7065, "upload_time": "2019-08-21T21:31:46", "url": "https://files.pythonhosted.org/packages/33/2d/544d665608bf27ee963cdaf716a3cbc4446ed3da638775df33a3ff44cbb4/omdbpy-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "8f550f3ef81c30135b7a72f10cd6b043", "sha256": "b8e4f361a5a5bbdc30814b8f70a93607894ab03ec66a405e7b7753a8520e2309" }, "downloads": -1, "filename": "omdbpy-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f550f3ef81c30135b7a72f10cd6b043", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6519, "upload_time": "2019-08-21T23:36:09", "url": "https://files.pythonhosted.org/packages/cd/23/4a694440f09f65d21c713c25112aac08256cebe83fba474e1d848c097c23/omdbpy-0.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67df21261cbe1bf7f53cbfbbcb79ba2e", "sha256": "4c7aeb6bdcaf41e4f76530b720f6a33eee19489a042708db28129ead198be990" }, "downloads": -1, "filename": "omdbpy-0.1.12.tar.gz", "has_sig": false, "md5_digest": "67df21261cbe1bf7f53cbfbbcb79ba2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7016, "upload_time": "2019-08-21T23:36:11", "url": "https://files.pythonhosted.org/packages/a7/ba/2e18dffb48dc32212135b61c2bf14e6a7b871b0966b3027ccf14de852e9f/omdbpy-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "10aeb984f49393a81cb833bb0efedee8", "sha256": "08c1c8947505f6fb1855323e24e88714cf966381b52e60aff2d13c95be332d46" }, "downloads": -1, "filename": "omdbpy-0.1.13.tar.gz", "has_sig": false, "md5_digest": "10aeb984f49393a81cb833bb0efedee8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6441, "upload_time": "2019-08-21T23:40:16", "url": "https://files.pythonhosted.org/packages/38/bc/22ccefa36fb34dc0b372fe3cf08c1182013c1db43d6ab50d282636d53615/omdbpy-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "9b9e784f9acce0bf2fc6b4d7cdd1c4bb", "sha256": "5ac6f34be899ea06c810a0fec8830be8553bd476ba090827d18948172c0afd75" }, "downloads": -1, "filename": "omdbpy-0.1.14.tar.gz", "has_sig": false, "md5_digest": "9b9e784f9acce0bf2fc6b4d7cdd1c4bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6959, "upload_time": "2019-08-21T23:56:17", "url": "https://files.pythonhosted.org/packages/64/5b/caef9f6974f0c391e2fed301b60a64044d1d2be33187497e93b3e7c513c6/omdbpy-0.1.14.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "052c816b0d750801d712bb91f90bffd3", "sha256": "c64e8ef64b89795aebe80360a721f3d90443420272f303c4baeba0ade0d155d8" }, "downloads": -1, "filename": "omdbpy-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "052c816b0d750801d712bb91f90bffd3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6988, "upload_time": "2019-08-07T03:17:43", "url": "https://files.pythonhosted.org/packages/c6/2c/a2641aba8d126e30870e111d18bf6d6600c20837d36fc15ec918007d53b5/omdbpy-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe7e6ffe11667dd596978e208ec996d9", "sha256": "ac0d2c827a02aa39d92c66942c96a895b1492d8115247bae17f1ea679f05dae0" }, "downloads": -1, "filename": "omdbpy-0.1.2.tar.gz", "has_sig": false, "md5_digest": "fe7e6ffe11667dd596978e208ec996d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4675, "upload_time": "2019-08-07T03:17:45", "url": "https://files.pythonhosted.org/packages/6f/27/38709ae885832fc83620be911107c2557e24b3e5a90566191741f19ed0b4/omdbpy-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "1d8ca47147fb7f72c35359e4e43727f5", "sha256": "0d689e6090573b3c00f0084383189f6e3da907af4a6c63c4334414b9994f208e" }, "downloads": -1, "filename": "omdbpy-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1d8ca47147fb7f72c35359e4e43727f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3967, "upload_time": "2019-08-07T03:38:53", "url": "https://files.pythonhosted.org/packages/04/4c/02db727af3ae15bec1b678b4362c27d9fda0581efa03dc6b78ca40d13f01/omdbpy-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3ccfcd047377d9e2ed30ef06773df01", "sha256": "9952b44bfaa0dcfa8cda614af2668c101708f29d23a335ab9e1619fe00efb879" }, "downloads": -1, "filename": "omdbpy-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d3ccfcd047377d9e2ed30ef06773df01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3630, "upload_time": "2019-08-07T03:38:55", "url": "https://files.pythonhosted.org/packages/cb/c1/6c0bfe2a2ff36ba2f2eaaddc8ff6c7b53c890683d047a17b1908cd1837bb/omdbpy-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "ca149574ab7f588c7fd2bc53e5d8f22d", "sha256": "5f2fbf50e04f952ede06dd0ea5c8a565cd92f851fddfc60ef315e0502d034dc7" }, "downloads": -1, "filename": "omdbpy-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "ca149574ab7f588c7fd2bc53e5d8f22d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7566, "upload_time": "2019-08-07T04:02:58", "url": "https://files.pythonhosted.org/packages/76/76/f46bcb026b3f053800dcfdbcb38171ad7e4ab5fef7499b86fdd594749ee8/omdbpy-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4681a6cc0249ac03792a5e04d8cf25fd", "sha256": "e0480aa6b9536a1b1da3f3e3ac1e2b951e140d4adda52247506e2dfa4934028e" }, "downloads": -1, "filename": "omdbpy-0.1.4.tar.gz", "has_sig": false, "md5_digest": "4681a6cc0249ac03792a5e04d8cf25fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5524, "upload_time": "2019-08-07T04:03:01", "url": "https://files.pythonhosted.org/packages/3d/6e/58ffc33334f8c6ab06559edec9659efa847d32046f8d960ac34f773b3816/omdbpy-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "ef831ea01afc7fa8682db3a83b9a4d95", "sha256": "0b3067e60ff00b63d6718a67977ae85c786228498912b8fe62772078c15745b7" }, "downloads": -1, "filename": "omdbpy-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef831ea01afc7fa8682db3a83b9a4d95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7091, "upload_time": "2019-08-20T10:42:29", "url": "https://files.pythonhosted.org/packages/03/15/7a8358b41a7790b3e91cb8498ac9669deba0b21c75817ebb42b739442cb1/omdbpy-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9e49ac7909d8cc814df1e6d796c71de", "sha256": "0d6f69dca051b72bd1efc4f3449679bcdc79c9b012bd25c67316bc4eb921dcad" }, "downloads": -1, "filename": "omdbpy-0.1.5.tar.gz", "has_sig": false, "md5_digest": "c9e49ac7909d8cc814df1e6d796c71de", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7441, "upload_time": "2019-08-20T10:42:31", "url": "https://files.pythonhosted.org/packages/8f/7d/6436ab1346c1bf95c040461c53e13c5b216ac57a4b92bdc96e1952fa3d55/omdbpy-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "24a2378cbb735c3de1fb69b5d425c16f", "sha256": "d0d69b5464ef0c6d567d0ad5612be831a463bbddd5cf0ff42ba0a32455a0b3fb" }, "downloads": -1, "filename": "omdbpy-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24a2378cbb735c3de1fb69b5d425c16f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6599, "upload_time": "2019-08-21T03:41:21", "url": "https://files.pythonhosted.org/packages/11/e8/e74b3f485cae75a6a75f103c8536707cb58cdc4c4f6c8f3e48853bcf34ee/omdbpy-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed32070721174af53c409fbf4ec4c559", "sha256": "8945d4a63660d2b02b84f47038686e0a3156acb268d274a196a0b49840e7c898" }, "downloads": -1, "filename": "omdbpy-0.1.6.tar.gz", "has_sig": false, "md5_digest": "ed32070721174af53c409fbf4ec4c559", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7154, "upload_time": "2019-08-21T03:41:23", "url": "https://files.pythonhosted.org/packages/97/87/653f7359ac56a4fa64a4ea72ea42c4dd960ba183d31e2e380d276b17a522/omdbpy-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "332e5442002bffa1f2bd8eb8fc6979d0", "sha256": "cb652d453968e025019bd20575b32046eaee28f039bd54e3fc0c16a2ec585a21" }, "downloads": -1, "filename": "omdbpy-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "332e5442002bffa1f2bd8eb8fc6979d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6583, "upload_time": "2019-08-21T05:44:14", "url": "https://files.pythonhosted.org/packages/e0/98/6244c15f0327fc3c34e800e148b6fa41a8063cc51bd4da0cce467a13cce3/omdbpy-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8237f26bf7303a899b92f951a54a7f49", "sha256": "836d0385d19aa764a29ddeab45a05db2e38bf2b05044399835c206ef8bc5d043" }, "downloads": -1, "filename": "omdbpy-0.1.7.tar.gz", "has_sig": false, "md5_digest": "8237f26bf7303a899b92f951a54a7f49", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7136, "upload_time": "2019-08-21T05:44:16", "url": "https://files.pythonhosted.org/packages/e8/af/01b189fd6862bda4d048a5df38ef6f436efbff1ff612eb334e5bb7ac39bc/omdbpy-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "ae366ed56150b3e2cdd06b7297be39ea", "sha256": "dcccf24cc48c165ede7a57af10efc8b1d3c3449f2ede9fc3bbdde3d67b845da5" }, "downloads": -1, "filename": "omdbpy-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae366ed56150b3e2cdd06b7297be39ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6583, "upload_time": "2019-08-21T08:08:55", "url": "https://files.pythonhosted.org/packages/75/1b/319358dac1a3c77aa3dff31c7c9c96edaf988daf0d94e9f1891f23158a0c/omdbpy-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18df3a630a99c301669e96ff2a3cbd68", "sha256": "b76d5c4dcfc374444e364c43b4cee2607d4c671bf01e0a4534fa2aee00dcff10" }, "downloads": -1, "filename": "omdbpy-0.1.8.tar.gz", "has_sig": false, "md5_digest": "18df3a630a99c301669e96ff2a3cbd68", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7136, "upload_time": "2019-08-21T08:08:57", "url": "https://files.pythonhosted.org/packages/dc/fe/13c9be19bc554ab97420179b4542f6ff602c6cba12ee9d99126925362790/omdbpy-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "437c2b0cb9c496dd48e4e62504d7dc74", "sha256": "372e114f3168379e41b775d46b7f1550280d652964cd70226a075fb9b40222a9" }, "downloads": -1, "filename": "omdbpy-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "437c2b0cb9c496dd48e4e62504d7dc74", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6540, "upload_time": "2019-08-21T08:57:46", "url": "https://files.pythonhosted.org/packages/54/15/150498085825e8687b9d9baed5f573a4e6bf9aed276eed9679008c1711ae/omdbpy-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ede90ac13db264c61e356e23a6324bbc", "sha256": "0ccd8eb2c724249593e454a7e7d0ce65e5abf310b279f7c62c1cd502aacee723" }, "downloads": -1, "filename": "omdbpy-0.1.9.tar.gz", "has_sig": false, "md5_digest": "ede90ac13db264c61e356e23a6324bbc", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7085, "upload_time": "2019-08-21T08:57:47", "url": "https://files.pythonhosted.org/packages/ea/65/b7bdd55e1e28a87fab4c26e41b77bf0dfcd6d2b9d9584f214af8b357211a/omdbpy-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9b9e784f9acce0bf2fc6b4d7cdd1c4bb", "sha256": "5ac6f34be899ea06c810a0fec8830be8553bd476ba090827d18948172c0afd75" }, "downloads": -1, "filename": "omdbpy-0.1.14.tar.gz", "has_sig": false, "md5_digest": "9b9e784f9acce0bf2fc6b4d7cdd1c4bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6959, "upload_time": "2019-08-21T23:56:17", "url": "https://files.pythonhosted.org/packages/64/5b/caef9f6974f0c391e2fed301b60a64044d1d2be33187497e93b3e7c513c6/omdbpy-0.1.14.tar.gz" } ] }