mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
8 lines
124 B
Python
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)
|