Description
This is the initial functional version of openjson. It comes equipped with a JSON stringifier that converts a hierarchical Python data structure into a valid JSON object string. The stringifier can be called with the following:
from openjson import stringify
json_string = stringify(dictionary)
This stringifier can support the regular data types:
- Dictionaries
- Lists
- Integers
- Floats
- Booleans
- NoneType