Fix: Analytics Worker berechnet jetzt alle Tabellen pro Tag
Some checks failed
Deployment / deploy-docker (push) Has been cancelled

This commit is contained in:
Melchior Reimers
2026-01-29 16:12:20 +01:00
parent a21e036bb4
commit f325941e24
12 changed files with 457 additions and 0 deletions

5
read.py Normal file
View File

@@ -0,0 +1,5 @@
import gzip
import json
with gzip.open("DGAT-posttrade-2026-01-29T14_07.json.gz", mode="rt") as f:
data = [json.loads(line) for line in f]
print (str(data))