- Python 3
- SQLite 3
- Apache Spark
Python packages: Requirements
Creating a virtual environment:
python3 -m venv myvenv
Entering the virtual environment:
source myvenv/bin/activate
or
. myvenv/bin/activate
Installing all required packages:
pip3 install -r requirements.txt
Start project:
python3 main.py
URL: http://localhost:5000/login
URL: http://localhost:5000/register
URL pattern: http://localhost:5000/c/<string:category_name>
URL (Example): http://localhost:5000/c/entertainment
URL pattern: http://localhost:5000/search?q=<string:q>
URL (Example): http://localhost:5000/search?q=Gadget
URL: http://localhost:5000/favorite
URL: http://localhost:5000/recommendation
URL: http://localhost:5000/admin/login
URL: http://localhost:5000/admin/dashboard