10 lines
326 B
Python
10 lines
326 B
Python
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
|