Skip to content

Releases: xatavian/easyjsonparser

Feature: instances can be assigned to instances of the same type

16 Jun 17:59
688e698
Compare
Choose a tag to compare
Merge pull request #4 from xatavian/development

Feature: instances can now be assigned to instances of the same type

Bug fix: numbers were incorrectly printed as JSON values

16 Jun 07:23
5873460
Compare
Choose a tag to compare
Merge pull request #3 from xatavian/development

Bug fix: Fix numbers where incorrectly printed as JSON values

Post-release: bug fix for `ObjectInstance.to_json()`

16 Jun 07:00
8954c32
Compare
Choose a tag to compare
Merge pull request #2 from xatavian/development

Bug fix:  `to_json()` was not working for objects

v1.1.0: Improved version with bug fixes

15 Jun 21:38
2b9ab81
Compare
Choose a tag to compare

The v1.1.0 fixes a lot of use cases (both common and edge cases), provide a cleaner usage for users: it behaves more like we would expect JavaScript objects, arrays and primitives to behave.

Test cases automatically tested through Travis CI make the library more robust.

Also added _ValueInstance.find() and _ValueInstance.find_all() but no documentation for now.

First release

15 Jun 07:24
Compare
Choose a tag to compare
First release Pre-release
Pre-release

EasyJSONParser allows one to serialize/deserialize JSON data from/to Python data structures.

Declare a data structure, fill it with data and easily use the to_json() to obtain a valid JSON string !

Or use a JSON string from any provenance and parse it into the data structure.