Metadata-Version: 2.4
Name: imdbio
Version: 0.0.4
Summary: A Python service for querying IMDb data
Project-URL: Homepage, https://rjriajul.github.io/imdbio/
Project-URL: Source, https://github.com/rjriajul/imdbio
Project-URL: Issues, https://github.com/rjriajul/imdbio/issues
Author: rjriajul
License-Expression: MIT
License-File: LICENSE
Keywords: api,data,film,imdb,information,metadata,movie,python,scraper,tv
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: cryptography
Requires-Dist: curl-cffi
Requires-Dist: deprecated
Requires-Dist: jmespath
Requires-Dist: lxml
Requires-Dist: niquests[socks]
Requires-Dist: pydantic
Provides-Extra: dev
Requires-Dist: furo>=2024; extra == 'dev'
Requires-Dist: poethepoet>=0.32; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: sphinx-autodoc-typehints>=2; extra == 'dev'
Requires-Dist: sphinx>=8; extra == 'dev'
Requires-Dist: twine>=5; extra == 'dev'
Description-Content-Type: text/markdown

[![PyPI Downloads](https://static.pepy.tech/badge/imdbio)](https://pepy.tech/projects/imdbio)
[![PyPI Version](https://img.shields.io/pypi/v/imdbio?style=flat-square)](https://pypi.org/project/imdbio/)
[![Python Versions](https://img.shields.io/pypi/pyversions/imdbio?style=flat-square)](https://pypi.org/project/imdbio/)
[![Docs](https://img.shields.io/badge/docs-imdbio-blue?style=flat-square)](https://rjriajul.github.io/imdbio/)

# imdbio

**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

```bash
pip install imdbio
```

```python
from 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/](examples/)

## Why choose imdbio?

- Clean structured data via Pydantic models
- No API keys or external dependencies
- Powered by niquests and lxml
- Ideal for scripts and data analysis

## Disclaimer

Not affiliated with IMDb Inc. See [DISCLAIMER](DISCLAIMER.txt).

## License

MIT — see [LICENSE](LICENSE).
