1

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

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
dmil
  • 119
  • 1
  • 9

1 Answers1

1

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.

Davide Alberani
  • 1,061
  • 1
  • 18
  • 28