jsonfile - incrementally write files in JSON format.
Project description
jsonfile - incrementally generate JSON
pip install jsonfile - PyPI link
Incrementally means that, in most places, you can either send in a complete Python object, or build it a piece at a time. For example, let’s build the JSON structure [3, {"cool": true, "awesome": [1,2,3,4,5]}]:
>>> import jsonfile >>> jp = jsonfile.JsonProto() >>> jp.start_list() '[' >>> jp.list_item(3) '3' >>> jp.start_dict() ',{' >>> jp.dict_item('cool', True) '"cool":true' >>> jp.dict_key('awesome') ',"awesome"' >>> jp.dict_value([1,2,3,4,5]) ':[1, 2, 3, 4, 5]' >>> jp.finish_all() '}]'
That used the JsonProto object, a sans-io version that just returns the text that you should write to your output. If you are writing to a file in a normal synchronous context, you could also use the JsonWriter object, it will be slightly more convenient:
>>> import io >>> dest = io.StringIO() >>> import jsonfile >>> jw = jsonfile.JsonWriter(dest) >>> jw.start_list() >>> jw.list_item(3) >>> jw.list_item({'things': 'stuff'}) >>> jw.start_dict() >>> jw.dict_item('cool', True) >>> jw.dict_key('awesome') >>> jw.dict_value([1,2,3,4,5]) >>> jw.finish_all() >>> dest.getvalue() '[3,{"things": "stuff"},{"cool":true,"awesome":[1, 2, 3, 4, 5]}]'
Because the underlying JsonProto doesn’t do IO, it should be easy to make a version of JsonWriter that works well in an async context.
Many kinds of errors are caught: having more than one object at the root level of a file, using a list item in a dictionary, etc.
TODO:
Allow specifying your own JSONEncoder to use on complete objects.
Do indentation.
Implement an AsyncJsonWriter
Better tests for preventing illegal JSON from being generated (e.g. lists as keys).
Python 2 support?
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file jsonfile-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: jsonfile-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3049873d312d9bda145ec5cb75c946a954ff57bdbaa01c0a18f13e7d1171815a |
|
MD5 | 8d9904f86cc7252fb3a192653ddc3830 |
|
BLAKE2b-256 | 064672ce5521395db030727ea32d3f9a5a3019ad4622b3e1f3469b59cdb3ab7a |