Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 909 Bytes

README.md

File metadata and controls

49 lines (41 loc) · 909 Bytes

Visualix

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.

Prerequisites

  • Python 3.6 or later
  • Pip package manager
  • Git

Setup

  • 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 of set in the above commands