Creating a tool which ask user to upload resume file and this will generate audio file from that resume and also the transcript
Note
this project was build during in-person hackathon by peerlist on 21 Dec 2024 at Scaler school of technology, Bengaluru
This was generated initially from bolt.new and using supabase
- Install python v 3.11 and higher
- Install virtual environment package
venvand other useful package
pip install venv pipreqs vulture python3 -m venv ~/some/path/to/.venvsource ~/some/path/to/.venv/bin/activateNote: to verify the activation of virtual environment, check does folder name (.venv) displayed ahead of terminal prompt.
pipreqs . --force --ignore .venvthis will create requirements.txt file
python3 -m pip install -r requirements.txtNote: to check all installed package, run python3 -m pip list
streamlit run app.pyNote: to change the port; create .streamlit/config.toml file inside scripts folder and write below
[server]
port = 8085Note: to deactivate virtual environment type source deactivate
below are the APi which will be used
resume/listresume/upload