- Python with httpx for HTTP requests
- PIL for local image analysis
python -m venv .venv
source .venv/bin/activatepip install -r requirements.txtCreate a .env file (it is gitignored) based on .env.example:
cp .env.example .envThen set:
PORTAL_USERNAMEandPORTAL_PASSWORD- your portal credentialsAPI_URL- the backend API URL (already defaults to the challenge portal)
python main.pysecrets/is gitignored.