pyomdbapi

A simple OMDB API python wrapper

License GitHub release PyPy Version Downloads

Documenation

Online documentation can be found on readthedocs.org.

Installation

Pip Installation:

$ pip install pyomdbapi

To install from source:

To install pyomdbapi, simply clone the repository on GitHub, then run from the folder:

$ python setup.py install

pyomdbapi supports python versions 3.5 - 3.11

Quickstart

To use pyomdbapi you will need to get an API Key from the OMDBApi site. There are several versions available with the free version limiting to 1000 requests per day.

After installation, using pyomdbapi should be fairly straight forward:

from omdb import OMDB

omdb = OMDB(YOUR_API_KEY)

print(omdb.get_movie('despicable me'))

Table of contents

Additional Information