Files
RustPython/benches/benchmarks/json_loads.py
2026-01-14 14:44:34 +09:00

8 lines
124 B
Python

import json
with open('benches/_data/pypi_org__simple__psutil.json') as f:
data = f.read()
loaded = json.loads(data)