Skip to content

barrust/pyomdbapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1c4f9e4 · Feb 21, 2025

History

45 Commits
Dec 30, 2024
Dec 30, 2024
Feb 21, 2025
Dec 30, 2024
Dec 28, 2024
Nov 14, 2022
Nov 15, 2023
Jan 6, 2024
Aug 31, 2018
Dec 28, 2024
Dec 28, 2024
Dec 30, 2024

Repository files navigation

pyomdbapi

A simple OMDB API python wrapper

License Codecov 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.8 - 3.13

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'))