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?
- http://www.imdb.com/title/tt0780504/ratings?demo=aged_under_18
- http://www.imdb.com/title/tt0780504/ratings?demo=males_aged_under_18
- http://www.imdb.com/title/tt0780504/ratings?demo=females_aged_under_18
etc etc...