Python package to access the IMDb's database
Project description
imdby
imdby is a Python package useful to retrieve and manage the data of the IMDb movie database about movies, people, characters and companies.
Source | Link |
---|---|
PyPI: | https://pypi.org/project/imdby/ |
Repository: | https://github.com/santhoshse7en/imdby/ |
Documentation: | https://santhoshse7en.github.io/imdby_doc/ |
Main features
- imdby is a Python package useful to retrieve and manage the data of the IMDb movie database about movies, people, characters and companies. Sentiment Analysis for IMDb user reviews is included.
-
imdby package can be very easily used by programmers and developers to provide access to the IMDb's data to their programs.
-
Platform-independent and written in Python 3 it can retrieve data from both the IMDb's web server and a local copy of the whole database.
-
Some simple example scripts - useful for the end users - are included in this package;
imdby powers many other software and has been used in various research papers. Curious about that
?
Dependencies
- beautifulsoup4
- selenium
- chromedriver-binary
- vaderSentiment
- textblob
- pandas
Installation
Whenever possible, please use the latest version from the repository::
pip install git+https://github.com/santhoshse7en/imdb
But if you want, you can also install the latest release from PyPI::
pip install imdby
A Glance
Download it by clicking the green download button here on Github. Here's an example that demonstrates how to use imdby:
# create an instance of the IMDb class
from imdby.imdb import imdb
# get a movie
details = imdb('tt4154796')
# print the names of the directors of the movie
print('Directors:')
for i in range(len(details.directors)):
print(details.directors[i])
# print the genres of the movie
print('Genres:')
for i in range(len(details.genre)):
print(details.genre[i])
Directory of IMDb class
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
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 Distribution
File details
Details for the file imdby-0.1.1.tar.gz
.
File metadata
- Download URL: imdby-0.1.1.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7a45095be4f413d6e4ad4e644a428e9e421be0663e76df7c70611887b183b09 |
|
MD5 | 4bca8fadd41ea51b3b8525ddfb79bf22 |
|
BLAKE2b-256 | 094e8d03b026e2996dfe997ed5de1bbf3c2fad8fd1f17b81f93e1b9080ce9715 |