Source code for a Movie Trailer website.
By Manuinder Sekhon
It displays trailers for different movies upon clicking on their poster images. You can also add new movies to the website. See below for instructions.
- Signup for free TMdb API KEY
- An active internet connection
$ sudo apt-get update
$ sudo apt-get install python3
- Download python install package here and install it.
If on Linux:
- Open terminal. Execute the following commands.
$ unzip Movie-Trailer-Website.zip
$ cd Movie-Trailer-Website
$ export API_KEY=your_api_key
$ python3 entertainment_center.py
If on Windows:
- Delete the following lines in
media.py
if not os.environ.get("API_KEY"):
raise RuntimeError("API_KEY not set")
API_KEY = os.environ.get("API_KEY")
- Replace them with
API_KEY = "your_api_key"
- Run
entertainment_center.py
in python.
Search for movie you want to add in project on TMDb website. Extract id from its url and add the movie in entertainment_center.py
.
https://www.themoviedb.org/movie/399035-the-commuter
Movie id = 399035