6 lines
165 B
Python
6 lines
165 B
Python
|
|
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))
|