celiao / tmdbsimple

A wrapper for The Movie Database API v3.
GNU General Public License v3.0
582 stars 121 forks source link

Discover.py returning same results #68

Closed d762 closed 4 years ago

d762 commented 4 years ago

When i run discover.py in this command:

genres=878, votecount=800, averagescore=5.5, fromdate='1970-01-01'

discover = tmdb.Discover()
kwargs = {'vote_count.gte': votecount, 'vote_average.gte': averagescore, 'release_date.gte': fromdate, 'with_genres': genres}
response = discover.movie(**kwargs)

it returns this list over and over again: 299534 429617 27205 299536 454626 284054 181812 62688 63247 99861 419704 338762 157336 570670 11 87101 24428 131631 443791 19995 299537 290859

Leading to a problem that discover.py is really not useful as a suggestion engine which it is supposed to be. Is there anything i am missing that is causing this issue?