Visualix is a Flask app that visualizes your Netflix viewing activity. It shows all your watched tv shows and movies in different graphs and formats to provide various insights.
- Python 3.6 or later
- Pip package manager
- Git
-
Open the terminal
-
Clone the repository
git clone https://github.com/Laughing-Kid/Visualix_Python.git
-
Change the current working directory
cd Visualix_Python
-
Execute the below commands
pip3 install pipenv
pipenv install
pipenv shell
-
Install the requirements
pip install -r requirements.txt
-
Execute the following commands
set FLASK_APP=main_app.py
set FLASK_ENV=development
flask run
-
If you are using Linux or Mac, use
export
instead ofset
in the above commands