PGŽ Sport Platform — Round 1+2 baseline (sport2.html + API)

This commit is contained in:
Damir Radulić
2026-05-04 23:39:08 +02:00
commit a7ec0a86be
1820 changed files with 694455 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# Master loop — PGŽ sport intensive learning every 15min
while true; do
echo "[$(date)] === LOOP START ==="
python3 /opt/pgz-sport/scrapers/klub_oib_enricher.py 2>&1 | tail -3
python3 /opt/pgz-sport/scrapers/clan_oib_enricher.py 2>&1 | tail -3
python3 /opt/pgz-sport/scrapers/sport_to_knowledge.py 2>&1 | tail -5
python3 /opt/pgz-sport/scrapers/qa_from_sport_facts.py 2>&1 | tail -3
echo "[$(date)] === LOOP END, sleep 900s ==="
sleep 900
done