Skip to main content

An api tool for DouBan movie

Project description

Introduce

This is an api tool for DouBan movie(https://movie.douban.com/),you can get the basic information from movies.

Usage

an example of usage

from doubanlib.movies import MovieInfo

# Doctor Strange in the Multiverse of Madness which id is 30304994(https://movie.douban.com/subject/30304994).
obj = MovieInfo(30304994)

# Print the Description of the movie.
print('Description:{}'.format(obj.description))

complete usage

from doubanlib.movies import MovieInfo

# Doctor Strange in the Multiverse of Madness which id is 30304994(https://movie.douban.com/subject/30304994).
obj = MovieInfo(30304994)

# Print all the information of the movie.
print(
    'ID:{}\nName:{}\nChinese_Name:{}\nYear:{}\nGenre:{}\nRegions:{}\nLanguage:{}\nRating:{}\nVotes:{}\nLength_Movie:{}\nDirectors:{}\nAlias:{}\nImage:{}\nDate_Published:{}\nActors:{}\nDescription:{}'
    .format(obj.m_id, obj.name, obj.chineseName, obj.year, obj.genre,
            obj.regions, obj.languages, obj.rating, obj.votes, obj.length_movie,
            obj.directors, obj.alias, obj.image, obj.pubDate, obj.actors,
            obj.actors, obj.description))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

doubanlib-0.0.8.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

doubanlib-0.0.8-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page