##How to setup
- Download the repository source code
- Download the file title.basics.tsv.gz using this link: https://datasets.imdbws.com/ and put this file into the same repository as the main.py.
- Download the file title.ratings.tsv.gz using the previous link.
- Below are the instructions for having the current database on your own PostgreSQL.
##PostgreSQL Setup
- Make sure you have PostgreSQL downloaded and installed.
- Save this attached file "movie_db.dump" to any folder on your computer
- Make sure you save the bin folder path (inside your PostgreSQL folder) to system path environment variables
- Create a database called movie_db in PostgreSQL.
- Create a role called movie_user as well that can be able to connect to movie_db.
- Then in your terminal run this command : PS C:\path\to\where\movie_db.dump\is> pg_restore -U movie_user -h your.server.ip -d movie_db movie_db.dump
- You should have the database saved on your PostgreSQL now and you can view it in the pgAdmin4 app, which is in the PostgreSQL folder.