Building a simple web API that carries out all CRUD operations on a specific data set queried from the large data.csv file.
- Python
- Flask
- Swagger
- MongoDb
- Virtual environment
Use the following command to generate the requirements.txt file that includes all the external dependencies used in the project
pip freeze >requirements.txt
Use the command below to build a perfect replica of the virtual environment(Downloads all the dependencies in the requirements file):
pip install -r requirements.txt
python app.py runserver
localhost:5000
Kisekka David