dmil
dmil

Reputation: 119

Ratings within Demographic using IMDBPy

Is any way to get the movie ratings distribution by demographics using imdbpy? For example, I can get this data

with the following code

import imdb
i = imdb.IMDb(accessSystem='http')
movie = i.get_movie('0780504')
i.update(movie, 'vote details')
movie['demographics']

but can I get these distributions?

etc etc...

Upvotes: 1

Views: 235

Answers (1)

Davide Alberani
Davide Alberani

Reputation: 1081

Right now it's not possible to access those information.

Anyway, it would be easy to add a way to access them, since the parser is the same and it's just a matter of adding some methods to the imdb.parser.http.IMDbHTTPAccessSystem class.

I suggest to open an issue requesting the feature.

Upvotes: 1

Related Questions