zasa 0.1.2

Simple JSON parser with no dependencies
Documentation
1
2
3
4
5
6
import json

with open("random_data.json", "r") as f:
    data = json.load(f)

print(data[0])