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
.env
file from the project owner, or create your own with your Supabase and Gemini API keys. - Place the
.env
file 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 virtualenv
Windows:
python -m venv env
env\Scripts\activate
Mac/Linux:
python3 -m venv env
source env/bin/activate
After activating the virtual environment, install requirements using the below command.
pip install -r requirements.txt
Make sure your virtual environment is still activated, then run:
python app.py
- Python
- Tkinter
- Google Gemini API
- Supabase API
- Virtualenv