Releases: ctomkow/jsonparse
Releases · ctomkow/jsonparse
v0.11.3
- Fix index.html redirect bug
- Added documentation to swagger ui
v0.11.2
- Swagger web api documentation bug hotfix
- Docker build bug fix
v0.11.1
- Fixed bug causing swagger web api documentation not to show
v0.11.0.dev3
- Push container image to gcr for public web API
v0.11.0.dev2
- Testing CI for docker build and push. Added latest tag.
v0.11.0.dev1
- Test CI docker build and push to dockerhub.
v0.10.1
- Added keyword parameter group to find_keys(). Default group=True. Add group=False(case insensitive) to return a one dimensional list as opposed to the default two dimensional list grouping.
v0.10.0
- Introduced the
find_keys()
method. Supply a list of keys and return a two dimensional list of values. The order of the keys does not matter. The found values will be returned in the same order as the original data.
- Improved documentation.
v0.9.1
- Added support for type None as a value in find_key_value(). JSON accepts null which translates to None with json.loads().