-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentertainment.py
21 lines (15 loc) · 985 Bytes
/
entertainment.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Movie
import fresh_tomatoes
# Initializing the list of my favourite movies
superman = Movie.Movie("Superman", "Man of Steel",
"https://images-na.ssl-images-amazon.com/images/M/MV5BMjI5OTYzNjI0Ml5BMl5BanBnXkFtZTcwMzM1NDA1OQ@@._V1_.jpg",
"https://www.youtube.com/watch?v=EBatxZ90wag")
Wolverine = Movie.Movie("LOGAN", "LOGAN",
"https://images-na.ssl-images-amazon.com/images/M/MV5BMTUwNjU5NjgxOF5BMl5BanBnXkFtZTgwMDM5NjY5MDI@._V1_.jpg",
"https://www.youtube.com/watch?v=XaE_9pfybL4")
Batman = Movie.Movie("Dark Knight", "Dark Knight",
"https://images-na.ssl-images-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_SY1000_CR0,0,675,1000_AL_.jpg",
"https://www.youtube.com/watch?v=EXeTwQWrcwY")
movies = [Wolverine, superman, Batman]
fresh_tomatoes.open_Movies_page(movies)
__author__ = 'style'