Search code examples
pythonimdbimdbpy

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...


Solution

  • 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.