A Python application that uses the Google Gemini API to rate resumes and provide feedback.
git clone https://github.com/larrylaa/PyRater.git- Get the
.envfile from the project owner, or create your own with your Supabase and Gemini API keys. - Place the
.envfile in the root of the cloned project directory. - Ensure it is named as .env (has to have a . in front to work)
If you don’t already have virtualenv installed:
pip install virtualenvWindows:
python -m venv env
env\Scripts\activateMac/Linux:
python3 -m venv env
source env/bin/activateAfter activating the virtual environment, install requirements using the below command.
pip install -r requirements.txtMake sure your virtual environment is still activated, then run:
python app.py- Python
- Tkinter
- Google Gemini API
- Supabase API
- Virtualenv