Skip to content

Releases: JordanWelsman/openjson

openjson 0.1.0

02 Mar 04:37
f7ff77d
Compare
Choose a tag to compare

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

openjson 0.0.0 (Initial release)

02 Mar 03:41
d64df74
Compare
Choose a tag to compare

Description

This is the planning release of openjson. This project was previously called modular-json but the hyphen caused issues with PyPI.