mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-27 21:16:14 +02:00
6281085045
Former-commit-id: 3b8912a8f67efd51c08cc6f4c77d43266b8fdc1b
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())}")
|