Skip to content

miguelgazela/imdbAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

imdbAPI

imdbAPI

Unofficial Python API for the Internet Movie Database (IMDb).

Features

Installation

Right now, the only way to access this package is by manually cloning it.

In the future:

$ pip install imdbAPI

Usage

from imdb import IMDB

api = IMDB()

# search the movie 'Transformers' and get only the first result
res = api.search_movie('Transformers', lucky=True)
print res['title']

# search the tv show 'Breaking Bad' and print the url of each search result
for res in api.search_tv('Breaking Bad'):
  print res['url']

Examples

Contribute

If you want to add any new features, improve existing ones and/or the code, feel free to send a pull request.

Tests

About

Unofficial Python API for the Internet Movie Database (IMDb).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages