A template that includes MongoDB, Groq, and flask to create a tool that takes your notes and creates questions for you to answer so that you can study more efficiently.
Run these commands to get the environment set up when you are in the code directory
python -m venv .venv # Downloads the virtual environment
Set-ExecutionPolicy RemoteSigned -Scope Process # No idea what this does
.venv\Scripts\activate # Activates the venv
to run the code do
python app.py
to download a package run
python -m pip install <pkg name>
Download the following packages
- flask
- markdown
- google-generativeai
- pymongo
- bcrypt