Skip to the content.

PyPI Version License Documentation Status Downloads

🎬 imdby

imdby is a Python package designed to retrieve and manage data from the IMDb database β€” including information about movies, people, characters, companies, events, and news.


Resource Link
🐍 PyPI imdby on PyPI
πŸ›  Repository GitHub Repo
πŸ“š Documentation imdby Docs

πŸš€ Features


πŸ“¦ Dependencies


πŸ“₯ Installation

Install from the GitHub repository (recommended for the latest updates):

pip install git+https://github.com/santhoshse7en/imdb

Or install the latest release from PyPI:

pip install imdby

✨ Quick Start

Here’s a quick example of how to use imdby:

from imdb.imdb import IMDb

# Create an instance
ia = IMDb()

# Fetch full cast and crew of a movie by IMDb ID
cast = ia.full_cast_and_crew('tt4154796')

# Print the directors
print('Directors:')
for director in cast.directors:
    print(director)

# Search for a person
people = ia.search_person('Simon Baker')
print(people.person_id, people.person_name)

πŸ†˜ Getting Help

For comprehensive usage guides and API reference, check out the official documentation.


🀝 Contributing

We welcome contributions! If you’re planning a significant change, please open an issue first to discuss your ideas. Make sure to update or add relevant tests.


πŸ‘₯ Contributors

Big thanks to all the contributors who help make imdby better:

Want to contribute? Fork the repo and send a pull request!


πŸ“„ License

This project is licensed under the MIT License.