Slides link: https://docs.google.com/presentation/d/1YcWyoGd5nbPc7CjwYfzuHfpE24dzsBE0sF-fc27WybE/edit?usp=sharing
Packages used:
- Flask ( Web framework in Python )
- Flask-PyMongo ( Extension to simplifies using MongoDB )
- Pymongo
- Core library for interacting with MongoDB databases
- Execute queries,insert/update/delete documents
- Handle more complex MongoDB operations
- Ensure Python and selected code interpreter installed, in this case VSCode
- Install MongoDB
- Create a virtual environment using "python -m venv myenv" and connect to the venv Python interpreter
- Install the below packages using "pip install -r requirements.txt", or manually install each:
- Install flask
- Install flask-pymongo
- Create connection and connect MongoDB database through VSCode's extension (or other method of connection, e.g. MongoDBCompass)
- Run "python app.py"