{"id":13586132,"url":"https://github.com/cinemagoer/cinemagoer","last_synced_at":"2025-05-13T15:12:09.060Z","repository":{"id":999173,"uuid":"810850","full_name":"cinemagoer/cinemagoer","owner":"cinemagoer","description":"Cinemagoer is a Python package useful to retrieve and manage the data of the IMDb (to which we are not affiliated in any way) movie database about movies, people, characters and companies","archived":false,"fork":false,"pushed_at":"2025-05-10T16:26:09.000Z","size":6122,"stargazers_count":1262,"open_issues_count":81,"forks_count":357,"subscribers_count":50,"default_branch":"master","last_synced_at":"2025-05-10T16:34:56.395Z","etag":null,"topics":["actors","cast","character","cinema","cinemagoer","company","database","db","imdb","internet-movie-database","movie","movie-database","movies","parser","python","scraper","sql"],"latest_commit_sha":null,"homepage":"https://cinemagoer.github.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cinemagoer.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.txt","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2010-08-01T17:34:24.000Z","updated_at":"2025-05-10T16:26:12.000Z","dependencies_parsed_at":"2024-03-24T14:32:05.585Z","dependency_job_id":"6c4a95d9-266a-4cbf-85e8-749efb3a7df4","html_url":"https://github.com/cinemagoer/cinemagoer","commit_stats":{"total_commits":1844,"total_committers":81,"mean_commits":"22.765432098765434","dds":0.6355748373101953,"last_synced_commit":"193ec421a944b2b2e2ab2446d89307884fd3b5f8"},"previous_names":["alberanid/imdbpy"],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinemagoer%2Fcinemagoer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinemagoer%2Fcinemagoer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinemagoer%2Fcinemagoer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinemagoer%2Fcinemagoer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cinemagoer","download_url":"https://codeload.github.com/cinemagoer/cinemagoer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253969262,"owners_count":21992263,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actors","cast","character","cinema","cinemagoer","company","database","db","imdb","internet-movie-database","movie","movie-database","movies","parser","python","scraper","sql"],"created_at":"2024-08-01T15:05:20.690Z","updated_at":"2025-05-13T15:12:04.048Z","avatar_url":"https://github.com/cinemagoer.png","language":"Python","funding_links":[],"categories":["Python","Third-party Web APIs"],"sub_categories":[],"readme":"|pypi| |pyversions| |license|\n\n.. |pypi| image:: https://img.shields.io/pypi/v/cinemagoer.svg?style=flat-square\n    :target: https://pypi.org/project/cinemagoer/\n    :alt: PyPI version.\n\n.. |pyversions| image:: https://img.shields.io/pypi/pyversions/cinemagoer.svg?style=flat-square\n    :target: https://pypi.org/project/cinemagoer/\n    :alt: Supported Python versions.\n\n.. |license| image:: https://img.shields.io/pypi/l/cinemagoer.svg?style=flat-square\n    :target: https://github.com/cinemagoer/cinemagoer/blob/master/LICENSE.txt\n    :alt: Project license.\n\n\n**Cinemagoer** (previously known as *IMDbPY*) is a Python package for retrieving and managing the data\nof the `IMDb`_ movie database about movies, people and companies.\n\nThis project and its authors are not affiliated in any way to Internet Movie Database Inc.; see the `DISCLAIMER.txt`_ file for details about data licenses.\n\n.. admonition:: Revamp notice\n   :class: note\n\n   Starting on November 2017, many things were improved and simplified:\n\n   - moved the package to Python 3 (compatible with Python 2.7)\n   - removed dependencies: SQLObject, C compiler, BeautifulSoup\n   - removed the \"mobile\" and \"httpThin\" parsers\n   - introduced a test suite (`please help with it!`_)\n\n\nMain features\n-------------\n\n- written in Python 3 (compatible with Python 2.7)\n\n- platform-independent\n\n- simple and complete API\n\n- released under the terms of the GPL 2 license\n\nCinemagoer powers many other software and has been used in various research papers.\n`Curious about that`_?\n\n\nInstallation\n------------\n\nWhenever possible, please use the latest version from the repository::\n\n   pip install git+https://github.com/cinemagoer/cinemagoer\n\n\nBut if you want, you can also install the latest release from PyPI::\n\n   pip install cinemagoer\n\n\nExample\n-------\n\nHere's an example that demonstrates how to use Cinemagoer:\n\n.. code-block:: python\n\n   from imdb import Cinemagoer\n\n   # create an instance of the Cinemagoer class\n   ia = Cinemagoer()\n\n   # get a movie\n   movie = ia.get_movie('0133093')\n\n   # print the names of the directors of the movie\n   print('Directors:')\n   for director in movie['directors']:\n       print(director['name'])\n\n   # print the genres of the movie\n   print('Genres:')\n   for genre in movie['genres']:\n       print(genre)\n\n   # search for a person name\n   people = ia.search_person('Mel Gibson')\n   for person in people:\n      print(person.personID, person['name'])\n\n\nGetting help\n------------\n\nPlease refer to the `support`_ page on the `project homepage`_\nand to the the online documentation on `Read The Docs`_.\n\nThe sources are available on `GitHub`_.\n\nContribute\n------------\n\nVisit the `CONTRIBUTOR_GUIDE.rst`_ to learn how you can contribute to the Cinemagoer package.\n\nLicense\n-------\n\nCopyright (C) 2004-2022 Davide Alberani \u003cda --\u003e mimante.net\u003e et al.\n\nCinemagoer is released under the GPL license, version 2 or later.\nRead the included `LICENSE.txt`_ file for details.\n\nNOTE: For a list of persons who share the copyright over specific portions of code, see the `CONTRIBUTORS.txt`_ file.\n\nNOTE: See also the recommendations in the `DISCLAIMER.txt`_ file.\n\n.. _IMDb: https://www.imdb.com/\n.. _please help with it!: http://cinemagoer.readthedocs.io/en/latest/devel/test.html\n.. _Curious about that: https://cinemagoer.github.io/ecosystem/\n.. _project homepage: https://cinemagoer.github.io/\n.. _support: https://cinemagoer.github.io/support/\n.. _Read The Docs: https://cinemagoer.readthedocs.io/\n.. _GitHub: https://github.com/cinemagoer/cinemagoer\n.. _CONTRIBUTOR_GUIDE.rst: https://github.com/ethorne2/cinemagoer/blob/documentation-add-contributor-guide/CONTRIBUTOR_GUIDE.rst\n.. _LICENSE.txt: https://raw.githubusercontent.com/cinemagoer/cinemagoer/master/LICENSE.txt\n.. _CONTRIBUTORS.txt: https://raw.githubusercontent.com/cinemagoer/cinemagoer/master/CONTRIBUTORS.txt\n.. _DISCLAIMER.txt: https://raw.githubusercontent.com/cinemagoer/cinemagoer/master/DISCLAIMER.txt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcinemagoer%2Fcinemagoer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcinemagoer%2Fcinemagoer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcinemagoer%2Fcinemagoer/lists"}