{ "info": { "author": "sergiormb", "author_email": "sergiormb88@gmail.com", "bugtrack_url": null, "classifiers": [ "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.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4" ], "description": "*******************\nPython FilmAffinity\n*******************\nThis is a simple python scraping for the FilmAffinity.\n\n.. image:: https://travis-ci.org/sergiormb/python_filmaffinity.svg?branch=master\n :target: https://travis-ci.org/sergiormb/python_filmaffinity\n.. image:: https://coveralls.io/repos/github/sergiormb/python_filmaffinity/badge.svg?branch=master\n :target: https://coveralls.io/github/sergiormb/python_filmaffinity?branch=master\n.. image:: https://img.shields.io/github/license/mashape/apistatus.svg \n :target: https://github.com/sergiormb/python_filmaffinity/blob/master/LICENSE.rst\n.. image:: https://img.shields.io/pypi/pyversions/Django.svg \n :target: https://pypi.python.org/pypi/python_filmaffinity/\n.. image:: https://readthedocs.org/projects/python-filmaffinity/badge/?version=latest\n :target: http://python-filmaffinity.readthedocs.io/en/latest/?badge=latest\n\n\nInstallation\n============\n\nPip\n***\n::\n\n pip install python_filmaffinity\n\n\nFrom Source\n***********\n\n::\n\n git clone git@github.com:sergiormb/python_filmaffinity.git\n cd python_filmaffinity\n python setup.py install\n\n\nRequirements\n**********************\n\n::\n\n requests >= 2.0.1\n requests-cache >= 0.4.13\n bs4 >= 0.0.1\n\n\nExamples\n========\n\n.. code-block:: python\n\n import python_filmaffinity\n service = python_filmaffinity.FilmAffinity()\n movie = service.get_movie(title='Celda 211')\n movie['title']\n Celda 211\n movie['rating']\n 7.7\n movie['directors']\n ['Daniel Monz\u00f3n']\n movie['actors']\n ['Luis Tosar', 'Alberto Ammann', 'Antonio Resines', 'Carlos Bardem', 'Marta Etura', 'Vicente Romero', 'Manuel Mor\u00f3n', 'Manolo Solo', 'Fernando Soto', 'Luis Zahera', 'Patxi Bisquert', 'F\u00e9lix Cubero', 'Josean Bengoetxea', 'Juan Carlos Mangas', 'Jes\u00fas Carroza']\n\n\nUsage\n=====\n\nlanguage\n********\n\n- Spanish: 'es'\n- USA, UK: 'en'\n- M\u00e9xico: 'mx'\n- Argentina: 'ar'\n- Chile: 'cl'\n- Colombia: 'co'\n\n\n- Example\n\n.. code-block:: python\n\n import python_filmaffinity\n service = python_filmaffinity.FilmAffinity(lang='en')\n\n\nsearch\n******\n\n+-----------+----------+--------+-----------------------------------+\n| Parameter | Required | Type | Description |\n+===========+==========+========+===================================+\n| title | False | String | Search for the title of the movie |\n+-----------+----------+--------+-----------------------------------+\n| cast | False | String | Search movies by actor |\n+-----------+----------+--------+-----------------------------------+\n| director | False | String | Search movies by the director |\n+-----------+----------+--------+-----------------------------------+\n| from_year | False | String | Search start date |\n+-----------+----------+--------+-----------------------------------+\n| to_year | False | String | Search end date |\n+-----------+----------+--------+-----------------------------------+\n\n- Example\n\n.. code-block:: python\n\n movies = service.search(cast='Nicolas Cage')\n\n\nget_movie\n*********\n\n+-----------+----------+--------+-----------------------------------+\n| Parameter | Required | Type | Description |\n+===========+==========+========+===================================+\n| id | False | String | FilmAffinity id |\n+-----------+----------+--------+-----------------------------------+\n| title | False | String | Get movie by title |\n+-----------+----------+--------+-----------------------------------+\n| trailer | False | Boolean| Return movie with trailer |\n+-----------+----------+--------+-----------------------------------+\n| images | False | Boolean| Return movie with images |\n+-----------+----------+--------+-----------------------------------+\n\n- Example\n\n.. code-block:: python\n\n movies = service.get_movie(title='Avatar')\n movies = service.get_movie(id='495280')\n\n\ntop_filmaffinity\n****************\n\n+-----------+----------+--------+-----------------------------------+\n| Parameter | Required | Type | Description |\n+===========+==========+========+===================================+\n| from_year | False | String | Search start date |\n+-----------+----------+--------+-----------------------------------+\n| to_year | False | String | Search end date |\n+-----------+----------+--------+-----------------------------------+\n| top | False | Integer| Number of elements |\n+-----------+----------+--------+-----------------------------------+\n\n- Example\n\n.. code-block:: python\n\n movies = service.top_filmaffinity()\n movies = service.top_filmaffinity(from_year=2010, to_year=2011)\n\n\ntop_premieres\n*************\n\n+-----------+----------+--------+-----------------------------------+\n| Parameter | Required | Type | Description |\n+===========+==========+========+===================================+\n| top | False | Integer| Number of elements |\n+-----------+----------+--------+-----------------------------------+\n\n- Example\n\n.. code-block:: python\n\n movies = service.top_premieres()\n\n\ntop_netflix, top_hbo, top_filmin, top_movistar, top_rakuten, top_tv_series\n**************************************************************************\n\n+-----------+----------+--------+-----------------------------------+\n| Parameter | Required | Type | Description |\n+===========+==========+========+===================================+\n| top | False | Integer| Number of elements |\n+-----------+----------+--------+-----------------------------------+\n\n- Example\n\n.. code-block:: python\n\n movies = service.top_netflix()\n movies = service.top_hbo(top=5)\n movies = service.top_filmin()\n movies = service.top_movistar()\n movies = service.top_rakuten()\n movies = service.top_tv_series()\n\n\nrecommend HBO, Netflix, Filmin, Movistar, Rakuten\n*************************************************\n\n+-----------+----------+--------+-----------------------------------+\n| Parameter | Required | Type | Description |\n+===========+==========+========+===================================+\n| trailer | False | Boolean| Return movie with trailer |\n+-----------+----------+--------+-----------------------------------+\n| images | False | Boolean| Return movie with images |\n+-----------+----------+--------+-----------------------------------+\n\n- Example\n\n.. code-block:: python\n\n movies = service.recommend_netflix()\n movies = service.recommend_hbo()\n movies = service.recommend_filmin()\n movies = service.recommend_movistar()\n movies = service.recommend_rakuten()\n\n\nChangelog\n=========\n\nv0.0.14 (08-09-2018)\n********************\n\n- Fixed errors\n\nv0.0.13 (07-09-2018)\n********************\n\n- Adds proxies and random user-agent in headers\n\nv0.0.12 (27-08-2018)\n********************\n\n- Changed description\n\nv0.0.11 (27-08-2018)\n********************\n\n- Fixed errors\n\nv0.0.1O (27-08-2018)\n********************\n\n- Fixed errors with SSL\n\nv0.0.09 (28-12-2017)\n********************\n\n- Replaces cachetools for requests-cache\n\nv0.0.8 (26-12-2017)\n*******************\n\n- Add images\n- Fixed errors\n\nv0.0.7 (15-12-2017)\n*******************\n\n- Fixes encoding for the analyzed results\n- Disabled limitations for all the supported languages\n- Change of name to the main class.\n- Adds initial language check and raise error if this is not in support\n- Adds basic exceptions\n\nv0.0.6 (12-06-2017)\n*******************\n\n- Add cachetools\n\nv0.0.5 (13-06-2017)\n*******************\n\n- Fixed errors\n\nv0.0.4 (11-06-2017)\n*******************\n\n- Top new DVDs\n- Get movie with trailer\n- Top TV series\n- Return movies list with raiting\n\n\nv0.0.3 (10-06-2017)\n*******************\n\n- Top Netlfix, HBO and Filmin\n- Recommendation from Netflix, HBO or Filmin\n- Fixed errors\n\n\nv0.0.2 (31-05-2017)\n*******************\n\n- Search movies by title, year, director or cast.\n- Get the filmaffinity top and search by year\n- Get the premieres top\n\n\nv0.0.1 (29-05-2017)\n*******************\n\n- Initial release.\n\n\nAuthors\n*******\n\n\nLead\n====\n\n- Sergio Pino, sergiormb88@gmail.com, `sergiormb.github.io `_\n\nCollaborators\n=============\n\n- opacam\n\nLicense\n=======\n\nThe MIT License (MIT)\n\nCopyright (c) 2014 Derrick Gilland\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "https://github.com/sergiormb/python_filmaffinity/tarball/0.0.14", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sergiormb/python_filmaffinityy", "keywords": "filmaffinity movies films", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "python_filmaffinity", "package_url": "https://pypi.org/project/python_filmaffinity/", "platform": "", "project_url": "https://pypi.org/project/python_filmaffinity/", "project_urls": { "Download": "https://github.com/sergiormb/python_filmaffinity/tarball/0.0.14", "Homepage": "https://github.com/sergiormb/python_filmaffinityy" }, "release_url": "https://pypi.org/project/python_filmaffinity/0.0.14/", "requires_dist": [ "requests (>=2.0.1)", "requests-cache (>=0.4.13)", "bs4 (>=0.0.1)", "user-agent (==0.1.9)" ], "requires_python": "", "summary": "Python wrapper for FilmAffinity", "version": "0.0.14" }, "last_serial": 4418553, "releases": { "0.0.1": [], "0.0.11": [ { "comment_text": "", "digests": { "md5": "bcba8189f39d0413ede0630c2dcecbeb", "sha256": "91a822492a873fd243475b8375003ebd7106641f67a49fc062294c168e984c48" }, "downloads": -1, "filename": "python_filmaffinity-0.0.11-py2.7.egg", "has_sig": false, "md5_digest": "bcba8189f39d0413ede0630c2dcecbeb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 29227, "upload_time": "2018-09-27T17:00:11", "url": "https://files.pythonhosted.org/packages/4b/09/9fb74b4c797dff1d22246d4ab4c37644735be815381bb8845db351a48ed1/python_filmaffinity-0.0.11-py2.7.egg" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "55342833f4be705530e9bffa904d043b", "sha256": "c7ecc95cb2bc80134fe7bfa5d330a67de395ef59f8b716fe2c661086c57509b8" }, "downloads": -1, "filename": "python_filmaffinity-0.0.12-py2.7.egg", "has_sig": false, "md5_digest": "55342833f4be705530e9bffa904d043b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 29244, "upload_time": "2018-09-27T18:25:54", "url": "https://files.pythonhosted.org/packages/6f/09/b9eef5e2510c98118828ccad23c7b7a69814e5b5ecc302973d3e75417f6d/python_filmaffinity-0.0.12-py2.7.egg" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "6b05ad028f058101588610f62a987285", "sha256": "779e73ce8c12aef55dd5ee4c41cb4f93715ceabea38664d236732b282c6d09d7" }, "downloads": -1, "filename": "python_filmaffinity-0.0.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b05ad028f058101588610f62a987285", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14670, "upload_time": "2018-10-07T19:46:30", "url": "https://files.pythonhosted.org/packages/7a/de/44a648730cd97ed43d4062fd313fcaa0f286d3d861c7ba517d4459c51e06/python_filmaffinity-0.0.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22ef2f232f7c1a0cf4af07e35921da99", "sha256": "f2ece75070fbd850be7afb30b16ded583449223b4377dffae97bdf6bb48dbcb9" }, "downloads": -1, "filename": "python_filmaffinity-0.0.13.tar.gz", "has_sig": false, "md5_digest": "22ef2f232f7c1a0cf4af07e35921da99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15129, "upload_time": "2018-10-07T19:46:31", "url": "https://files.pythonhosted.org/packages/82/f4/28f756b5acf37f12921bf6c98e7e1f996dd7494db4f2592b1fabbb7f297b/python_filmaffinity-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "f8807c110ee4a819097083dc9510c81a", "sha256": "aa5055294cf5ae53174eda837137d69d4b616e7db632447f619e519082f4471a" }, "downloads": -1, "filename": "python_filmaffinity-0.0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8807c110ee4a819097083dc9510c81a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15995, "upload_time": "2018-10-26T09:12:47", "url": "https://files.pythonhosted.org/packages/b8/d0/d85f5b2454cdb92e062f8a76697f60ee0bd5fbbe3ed0599c07544e5b93ce/python_filmaffinity-0.0.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a90ad5b6e4a2a6815d52f19d2a978a8", "sha256": "1928c8d5f0332a3534c5354ed99f038a67d05e324123c0f243678bb3be0f7c3e" }, "downloads": -1, "filename": "python_filmaffinity-0.0.14.tar.gz", "has_sig": false, "md5_digest": "9a90ad5b6e4a2a6815d52f19d2a978a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12577, "upload_time": "2018-10-26T09:12:48", "url": "https://files.pythonhosted.org/packages/6c/f9/103c8d8386ebb65ddf2690456695127eec008a4a01ff433e86759f934935/python_filmaffinity-0.0.14.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "4e0fcc34062613c2d3999a9a160d013a", "sha256": "edf01a66ccdc3803180b1a7813d313013af2b61dab5ba5504f74b0bd3cbbd4e2" }, "downloads": -1, "filename": "python_filmaffinity-0.0.2.zip", "has_sig": false, "md5_digest": "4e0fcc34062613c2d3999a9a160d013a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9712, "upload_time": "2017-06-02T09:30:50", "url": "https://files.pythonhosted.org/packages/32/6e/a6fd2fee53dea7f97972635cca164bbefbc41ebd4fac784da867414e211a/python_filmaffinity-0.0.2.zip" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "aa6418bd16deec1a15cebcf5acf61ae2", "sha256": "af98e6c4cdfc93b50fbbc3ee7872c3e84d236775a6014d4ce0537382b74781b1" }, "downloads": -1, "filename": "python_filmaffinity-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa6418bd16deec1a15cebcf5acf61ae2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4842, "upload_time": "2017-06-10T13:19:27", "url": "https://files.pythonhosted.org/packages/f9/09/222abacb5865649358a5411510a5402945220587f8067f6500921f136963/python_filmaffinity-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64dc58054f9bb25c2b3e721f961c723e", "sha256": "8d84ba0a1dd449252f1db4e4c249187835129ad41c5155ddc216cb0e7e7d1532" }, "downloads": -1, "filename": "python_filmaffinity-0.0.3.tar.gz", "has_sig": false, "md5_digest": "64dc58054f9bb25c2b3e721f961c723e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5891, "upload_time": "2017-06-10T13:19:29", "url": "https://files.pythonhosted.org/packages/03/84/b9551697e79b5d6bd4094125bb4a8b07afeb6fdc0fb205345fc090e73c9c/python_filmaffinity-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "312d0adf190375502938d791a1d6e73a", "sha256": "f6e12d01604a276e65f73318e53a1d6762b7ca5c23805afef9e13e0b09ab8878" }, "downloads": -1, "filename": "python_filmaffinity-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "312d0adf190375502938d791a1d6e73a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5993, "upload_time": "2017-06-12T14:57:43", "url": "https://files.pythonhosted.org/packages/3d/fe/0b6812b4eee55da991135062ba577f830be7c0b4e192b0cf3667d3348e7c/python_filmaffinity-0.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "294bdb5ec9eab2ee1fd3403f9d92996e", "sha256": "5425c3306c3c1e83d8ebf0af956610ca8447436899f68455a85b0d71540ce8ca" }, "downloads": -1, "filename": "python_filmaffinity-0.0.4.tar.gz", "has_sig": false, "md5_digest": "294bdb5ec9eab2ee1fd3403f9d92996e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6419, "upload_time": "2017-06-12T14:57:45", "url": "https://files.pythonhosted.org/packages/d9/12/5acf627af2533c3b17504df5f94995fb2ab6403383ff1a9d5d97066bf60a/python_filmaffinity-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "cd8ec2bbac477ddf3f70379a96abd00c", "sha256": "0749b44a4bfe36634173edec937352445a423e5f20ca36de4329e2d161e4150c" }, "downloads": -1, "filename": "python_filmaffinity-0.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd8ec2bbac477ddf3f70379a96abd00c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8666, "upload_time": "2017-06-13T14:16:50", "url": "https://files.pythonhosted.org/packages/5e/9b/2e62ca4af18dee33511bbf83ae04770215bfcf0498f10f6ed82d50302394/python_filmaffinity-0.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e12a3737fb7e1d3a9843ea84080ce21", "sha256": "91a19ee62df4e583ac53b120cce6e084f264a21ec22d0b780ce257163e55d4c8" }, "downloads": -1, "filename": "python_filmaffinity-0.0.5.tar.gz", "has_sig": false, "md5_digest": "8e12a3737fb7e1d3a9843ea84080ce21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7380, "upload_time": "2017-06-13T14:16:52", "url": "https://files.pythonhosted.org/packages/63/83/99ec465a99179bc6c58ef465ff3f159e464fbf299fa46317a04968b04f26/python_filmaffinity-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "60fd5a19e1f965800b565c0787c4fc2c", "sha256": "0e7fde93ca1e50e995d49a9a00f659afa27d8a49783e853f297a38286552d28d" }, "downloads": -1, "filename": "python_filmaffinity-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60fd5a19e1f965800b565c0787c4fc2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8755, "upload_time": "2017-12-12T13:50:37", "url": "https://files.pythonhosted.org/packages/b5/99/c98e1d4e5862843e2fa3eacbf317d5b49b7f1da0f0fce464a4ed8bdfd66c/python_filmaffinity-0.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "516d15136d1277487ceb4c68b305613e", "sha256": "8eb23ef333367e8de4d5bfc798734e009d7c3e5b67f0c3f0d79b02de96e2a880" }, "downloads": -1, "filename": "python_filmaffinity-0.0.6.tar.gz", "has_sig": false, "md5_digest": "516d15136d1277487ceb4c68b305613e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8502, "upload_time": "2017-12-12T13:50:39", "url": "https://files.pythonhosted.org/packages/e9/cc/e1a3060fb294be4f08868d1092356f2441905f430261aa277f025d93fd7a/python_filmaffinity-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "2ac92e4be2a010183184d759c4678ad8", "sha256": "e8eac17c3d404ac2e5ce2c7dc6e53b0fbb9a83ffb3260ea5f78886751be84750" }, "downloads": -1, "filename": "python_filmaffinity-0.0.7.tar.gz", "has_sig": false, "md5_digest": "2ac92e4be2a010183184d759c4678ad8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9067, "upload_time": "2017-12-15T12:19:07", "url": "https://files.pythonhosted.org/packages/be/58/496884271e664a99de51bfda6a4e8e3f3d0396bc6b9b0f2608edea64ae64/python_filmaffinity-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "22ed0bdf36c6f9f4223f9e29d06c924a", "sha256": "310b3c81369197c58bf331a86ad0a7ed4254d583ef47d095f7c724ae094d068f" }, "downloads": -1, "filename": "python_filmaffinity-0.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22ed0bdf36c6f9f4223f9e29d06c924a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11585, "upload_time": "2017-12-26T13:10:34", "url": "https://files.pythonhosted.org/packages/83/4d/b3dff1af757b3276d979397a5fe185144cd47be84bd0850a7d5573be8a58/python_filmaffinity-0.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3532a97b58fa1673d9dacf2d25951354", "sha256": "8ec3ef4b529b772b301f1d3f14c06fdff7322d36ca377755b2b9baf21050e5e4" }, "downloads": -1, "filename": "python_filmaffinity-0.0.8.tar.gz", "has_sig": false, "md5_digest": "3532a97b58fa1673d9dacf2d25951354", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11315, "upload_time": "2017-12-26T13:10:38", "url": "https://files.pythonhosted.org/packages/b4/c6/3dd4eeb9d8e0c312af69e0f18f648d103e544536973c25767b484716d323/python_filmaffinity-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "94dd5c1675a4412ad2d34274cf6d8af7", "sha256": "c393c738d7b1ebf4d135f10db53310d1ae680d9d3f8810427f72c15ae94f5916" }, "downloads": -1, "filename": "python_filmaffinity-0.0.9-py2.7.egg", "has_sig": false, "md5_digest": "94dd5c1675a4412ad2d34274cf6d8af7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 26755, "upload_time": "2018-09-27T16:47:48", "url": "https://files.pythonhosted.org/packages/37/11/80a0689acccfbfc6f272c59eaec25db26d849a22b25171464149ba7eb6f4/python_filmaffinity-0.0.9-py2.7.egg" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f8807c110ee4a819097083dc9510c81a", "sha256": "aa5055294cf5ae53174eda837137d69d4b616e7db632447f619e519082f4471a" }, "downloads": -1, "filename": "python_filmaffinity-0.0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8807c110ee4a819097083dc9510c81a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15995, "upload_time": "2018-10-26T09:12:47", "url": "https://files.pythonhosted.org/packages/b8/d0/d85f5b2454cdb92e062f8a76697f60ee0bd5fbbe3ed0599c07544e5b93ce/python_filmaffinity-0.0.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a90ad5b6e4a2a6815d52f19d2a978a8", "sha256": "1928c8d5f0332a3534c5354ed99f038a67d05e324123c0f243678bb3be0f7c3e" }, "downloads": -1, "filename": "python_filmaffinity-0.0.14.tar.gz", "has_sig": false, "md5_digest": "9a90ad5b6e4a2a6815d52f19d2a978a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12577, "upload_time": "2018-10-26T09:12:48", "url": "https://files.pythonhosted.org/packages/6c/f9/103c8d8386ebb65ddf2690456695127eec008a4a01ff433e86759f934935/python_filmaffinity-0.0.14.tar.gz" } ] }