static folder contains all the CSS and images
template folder contains all the HTML pages
api.py file contains all the route to HTML pages and python scripts
Note: if you want don't know much about FLASK and webapp, go through : https://medium.com/@pemagrg/build-a-web-app-using-pythons-flask-for-beginners-f28315256893
summary.py
is our current algorithm implementation
- install requirements first:
pip install -r /path/to/requirements.txt
(wherepath/to/
is the absolute path for your downloaded project) - run
api.py
(in Pycharm for instance) - open the url that it gives you after you run the code
Or:
After installing all requirements, open the terminal run
cd <path/to/your/project>
where path/to/
is the absolute path for your downloaded project
Then run python api.py
Example:
cd /Users/charleszhang/Desktop/NLP-Flask-Website