Releases: ctomkow/jsonparse
Releases · ctomkow/jsonparse
v0.15.1
- Official python 3.13 support. Updated docs and CI.
v0.15.0
- Python 2.7 compatibility 😲 What can I say, I like compatibility. That's one thing about perl(5) I like.
- v2/3 type hint convention.
- OrderedDict should be used if ordering is important as 2.7 dictionary's don't guarantee order.
v0.14.1
- Fixed bug where the
find_value
function import was missing from __init__
, causing a from jsonparse
import find_value
to fail.
v0.14.0
Added a new find_value
function. This will return all keys with the associated value.
A good example for this is to find all keys that have a null value, ie in the library, simply find_value(data, False)
See the README here:
v0.13.1
Offical python 3.12 support. Updated docs and tests.
v0.13.0
- Added functions so no need to create a Parser object, simply import. However, the Parser object still works fine.
from jsonparse import find_key, find_keys, find_key_chain, find_key_value
v0.12.1
- Fixed install issue which incorrectly marked directories tests and docs as packages
v0.12.0
- python 3.6, 3.11 support
- cli interface added. Now use jsonparse as a cli tool for JSON manipulation
v0.12.0.dev2
- Final pre-release of cli tool update
v0.12.0.dev1
- Pre-release for the cli interface