json-py/README.md
2022-06-09 19:34:12 +02:00

340 B

json-py

Simple JSON-parser written in python.

Inspired by Phil Eaton's article.

Example usage

import json_py
print(json_py.from_json('{"hello": ["world", "!", 69], 3: 9.1}'))
# {'hello': ['world', '!', 69], 3: 9.1}

Todo

Implement json_py.to_json()