A local Windows GUI that watches Jobalots for user-defined search terms every six hours and notifies when new matching auction listings appear.
Create a local Windows GUI that watches Jobalots for user-defined search terms every six hours and notifies when new matching auction listings appear.
A working Python/Tkinter desktop application was built and verified against live Jobalots data.
The first HTML-parsing approach was rejected because Jobalots renders product data client-side. The watcher instead calls the same JSON backend the site itself uses:
This avoids running a heavyweight embedded browser and keeps the app lightweight enough for everyday local use.
jobalots_watcher.py — the application itselfrun_jobalots_watcher.bat — one-click launcherREADME_Jobalots_Watcher.md — usage documentationThe desktop application has to stay running for its internal six-hour schedule to execute — there's no background service yet.