mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-24 03:26:06 +02:00
362a6e2ceb
Former-commit-id: 8ed321f2ba
11 lines
270 B
Python
11 lines
270 B
Python
from services.cctv_pipeline import init_db, TFLJamCamIngestor, LTASingaporeIngestor
|
|
|
|
init_db()
|
|
print("Initialized DB")
|
|
|
|
tfl = TFLJamCamIngestor()
|
|
print(f"TFL Cameras: {len(tfl.fetch_data())}")
|
|
|
|
nyc = LTASingaporeIngestor()
|
|
print(f"SGP Cameras: {len(nyc.fetch_data())}")
|