Welcome to the Second Annual Cybersecurity Institute Hackathon 2024. We will be using this repository to contain our RescueBox "tool-suite".
Begin by forking this repository to your GitHub account.
Under the directory tool-suite
, create a directory for your project. For example, this could be tool-suite/deep-fake-classification
.
See the development section for more help on project setup.
When you're done, submit a PR back to this repository, so we can have everyone's tools ready to go!
python -m venv env
This uses venv
to create a new virtual environment for you.
For MacOS:
source env/bin/activate
For Windows:
.\env\Scripts\Activate.ps1
Create a requirements.txt
under your tool. For example, tool-suite/audio-transcription/requirements.txt
Then, run
pip install -e ".[dev]"
followed by
pip install -r tool-suite/audio-transcription/requirements.txt
Read the README in the tool-suite/audio-transcription directory for instructions on how to run the sample task.
This repository already contains a copy of the Python library FlaskML. Check out the website for more examples and usage documentation: https://umass-rescue.github.io/Flask-ML/