Generates and shows a web page with your favourite movies
- video.py - contains data structure for creation web page elements by fresh_tomatoes
- fresh_tomatoes.py - web page generator fresh_tomatoes at github
- favourites_video - contains instances of movie class and command for running web page
Startup file is favourites_video.py ,run it via python console
Just add instance of class movie in favourites_video.py and add it in movies_list array
the_fith_element = video.movie('The Fith Element',
126,
"https://upload.wikimedia.org/wikipedia/en/6/65/Fifth_element_poster_%281997%29.jpg",
"https://www.youtube.com/watch?v=fQ9RqgcR24g")
movies_list = [four_rooms, skool_of_rock,the_fith_element]
Igor Kovalev