Metadata-Version: 2.1
Name: pyimdb
Version: 0.1.1
Summary: A wrapper python for imdb.com
Home-page: https://github.com/hudsonbrendon/python-imdb#readme
License: MIT
Author: Hudson Brendon
Author-email: contato.hudsonbrendon@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: bs4 (>=0.0.1,<0.0.2)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Project-URL: Repository, https://github.com/hudsonbrendon/python-imdb
Description-Content-Type: text/markdown

# Python IMDB

[![Python package](https://github.com/hudsonbrendon/pyimdb/actions/workflows/python-package.yml/badge.svg)](https://github.com/hudsonbrendon/pyimdb/actions/workflows/python-package.yml)
[![Github Issues](http://img.shields.io/github/issues/hudsonbrendon/pyimdb.svg?style=flat)](https://github.com/hudsonbrendon/pyimdb/issues?sort=updated&state=open)
![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)

A wrapper python for imdb.com

# Quick start

```bash
$ pip install pyimdb
```

# Usage

With your key in hand, it's time to authenticate, so run:

```python
>>> from pyimdb import IMDB

>>> imdb = IMDB()
```

# Popular TV Shows

Returns list of popular tv shows.

```python
>>> imdb.popular_tv_shows()
```
or

```python
>>> imdb.popular_tv_shows(limit=10)
```

# Popular Movies

Returns list of popular movies.

```python
>>> imdb.popular_movies()
```
or

```python
>>> imdb.popular_movies(limit=10)
```

# TOP Rated TV Shows

Returns list of top rated tv shows.

```python
>>> imdb.top_rated_tv_shows()
```
or

```python
>>> imdb.top_rated_tv_shows(limit=2)
```

# TOP Rated Movies

Returns list of top rated movies.

```python
>>> imdb.top_rated_movies()
```
or

```python
>>> imdb.top_rated_movies(limit=2)
```

# Dependencies

- Python >=3.8

# License

[MIT](http://en.wikipedia.org/wiki/MIT_License)

