Your personal gateway to IMDb data — no API keys required.
imdbio is a Python library for querying movie, TV series, and celebrity information from IMDb. It provides structured, typed results without requiring any API keys or external services.
- Search movies, TV series, and people by title or name
- Cast, crew, ratings, box office, and company credits
- TV series seasons and episode listings
- User reviews, trivia, parental guide, and awards
- Localized results in multiple languages
- Proxy support for IP rotation
- Typed Pydantic models with built-in caching
pip install imdbiofrom imdbio import search_title
results = search_title("The Matrix")
print(results.titles[0].title, results.titles[0].year)📘 Full docs: https://rjriajul.github.io/imdbio/ 📝 Examples: examples/
- Clean structured data via Pydantic models
- No API keys or external dependencies
- Powered by niquests and lxml
- Ideal for scripts and data analysis
Not affiliated with IMDb Inc. See DISCLAIMER.
This project is based on imdbinfo by Tiago Veronesi, licensed under the MIT License. Significant portions of the codebase are derived from the original work. See LICENSE for details.
MIT — see LICENSE.