Skip to content

openjson 0.1.0

Latest
Compare
Choose a tag to compare
@JordanWelsman JordanWelsman released this 02 Mar 04:37
· 3 commits to main since this release
f7ff77d

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