IMDB Parser
Project description
Search IMDb and get movie information. Incredibly basic, limited feature-set, somewhat fast.
Usage
Get from ID
>>> from imdbparser import IMDb
>>> imdb = IMDb()
>>> movie = imdb.get_movie(1954470)
>>> movie.fetched
False
>>> movie.fetch()
>>> movie.fetched
True
>>> movie.__dict__
...
Search
>>> from imdbparser import IMDb
>>> imdb = IMDb()
>>> search_result = imdb.search_movie('Matrix')
>>> search_result.fetched
False
>>> search_result.fetch()
>>> search_result.fetched
True
>>> search_result.movies
[<Movie fetched=False imdb_id='0133093' title='The Matrix' year=1999>,
<Movie fetched=False imdb_id='0234215' title='The Matrix Reloaded' year=2003>, ...]
License
MIT, see LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for imdbparser-1.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 099d396ae0f4f18fa651f0e26499ed5b3459d46b892c30c78b6363a92768925b |
|
MD5 | aea6f0370f46599d8fc75fbc6e97a2da |
|
BLAKE2b-256 | 7c63e253a07207852c088d853b914e1e5d1b0913b98dd79f980682b932ebf8d2 |