Skip to content

Releases: ctomkow/jsonparse

v0.15.1

12 Oct 03:34
9b5ee4b
Compare
Choose a tag to compare
  • Official python 3.13 support. Updated docs and CI.

v0.15.0

09 Sep 03:57
Compare
Choose a tag to compare
  • 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

19 Jul 16:54
Compare
Choose a tag to compare
  • Fixed bug where the find_value function import was missing from __init__, causing a from jsonparse import find_value to fail.

v0.14.0

31 May 22:01
23c18cb
Compare
Choose a tag to compare

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

10 Apr 23:13
Compare
Choose a tag to compare

Offical python 3.12 support. Updated docs and tests.

v0.13.0

02 Oct 02:13
89bb838
Compare
Choose a tag to compare
  • 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

15 Dec 06:25
d2ad2cf
Compare
Choose a tag to compare
  • Fixed install issue which incorrectly marked directories tests and docs as packages

v0.12.0

11 Dec 07:42
Compare
Choose a tag to compare
  • python 3.6, 3.11 support
  • cli interface added. Now use jsonparse as a cli tool for JSON manipulation

v0.12.0.dev2

11 Dec 07:33
Compare
Choose a tag to compare
v0.12.0.dev2 Pre-release
Pre-release
  • Final pre-release of cli tool update

v0.12.0.dev1

12 Nov 05:34
689a8b4
Compare
Choose a tag to compare
v0.12.0.dev1 Pre-release
Pre-release
  • Pre-release for the cli interface