feat: 🎉 Rating Orama!

This commit is contained in:
2023-04-09 06:45:27 +02:00
commit b2f4b573f3
61 changed files with 8130 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
class Movie:
def __init__(self, tt_movie_id, title, year, avg_rating, votes, popularity, runtime):
self.tt_movie_id = tt_movie_id
self.title = title
self.year = year
self.avg_rating = avg_rating
self.votes = votes
self.popularity = popularity
self.runtime = runtime