PyMovieDb icon indicating copy to clipboard operation
PyMovieDb copied to clipboard

A Simple IMDb API for Python

Results 14 PyMovieDb issues
Sort by recently updated
recently updated
newest added

Is it possible to make PyMovieDb return Country of origin and Language also?

I was unable to parse in a better way, but this do the job: ``` diff --git i/PyMovieDb/imdb.py w/PyMovieDb/imdb.py index 6eecd57..4bd3da1 100644 --- i/PyMovieDb/imdb.py +++ w/PyMovieDb/imdb.py @@ -144,6 +144,25 @@...

Add the ability to fetch episode names and IDs from IMDB TV shows by IMDB ID.

Added the possibiltie to use en language encoding like this: imdb = IMDB(lang="de") If there is a special alternated name for the used country, it will be passed to the...

Hi, can: imdb.get_by_id("tt12593682") #Example Also return the year of the movie/show? thanks!

ok it functions, but only get a couple of useful data per movie/tv search. Is there a way to have it download all the user reviews for a movie/series for...

Hi I'm using this API and different endpoint such as `imdb.get_by_name('House Of The Dragon', tv=True) `, or `imdb.get_by_id("tt12593682")` and I have always the result below: **`{"status": 404, "message": "No Result...

fixed parsing problems + made all methods return json object instead of json string because it makes more sense + added language support

#### Feature request Hi, it would be great to be able to get the whole list of movies (titles and/or IDs) in a user's watchlist. Thank you.