Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.3 KB

readme.md

File metadata and controls

34 lines (21 loc) · 1.3 KB

Movie Website

This project contains a server-side code to store a list of movies, including box art imagery and a movie trailer URL. This data is served as a web page allowing visitors to review their movies and watch the trailers.

here are the dependencies, you need python 2.7 version to run this code

To run the Movie Website project

Open the entertainment_center.py using Python's IDLE and hit run.

This command will use the file fresh_tomatoes.py that contains the open_movies_page() function that will take in the list of movies and generate an HTML file including that content, producing a website to showcasing selected movies.

fresh_tomatoes.py file

The file fresh_tomatoes.py contains the open_movies_page() function that will take in the list of movies and generate an HTML file including that content, producing a website to showcasing selected movies.

media.py file

This file includes a data structure (i.e. a Python Class) to store the selected movies, including movie title, box art URL (or poster URL) and a YouTube link to the movie trailer.

entertainment_center.py file

The file entertainment_center.py contains instances of that Python Class to represent selected movies; and groups all the instances together in a list.

Authors