Discordgo - Job announcer bot. WIP
This repo can now save scraped jobs to Neon using DATABASE_URL.
Your local .env is already gitignored. Add:
DATABASE_URL=postgresql://<user>:<password>@<host>/<database>?sslmode=requireFrom the project root:
source .venv/bin/activate
pip install pandas python-jobspy "psycopg[binary]"cd Python-Jobspy
python JoblessYu.pyThe script creates a jobs table automatically and upserts records by (site, job_url).
Example SQL:
SELECT site, title, company, location, fetched_at
FROM jobs
ORDER BY fetched_at DESC
LIMIT 20;