Utility Functions for JSON Document
Project description
python-json-doc
Utility functions for JSON Document
It can handle get/set/pop/has operations on nodes
Extended set
functions for lists:
- append: appends to the list
- extend: extends the list
- replace:
search
and replace in the list - replace_re:
search
and replace in the list using regular expression
No external dependencies. Tests requires unittest2
module
Compatible with Python 2.6+ and 3.3+
Examples
doc = {
'a': {
'deep': {
'nested': {
'list': [1, 2, 3, {'dict': 'OK'}],
'string': 'string',
'hex': 0x010101
}
},
},
'list': [1, 2, 3]
}
# get
print json_doc_get(doc, '/a/deep/nested/list/3/dict')
>> OK
# set
print json_doc_set(doc, '/a/deep/nested/string', 'new string')['a']['deep']['nested']['string']
>> new string
# pop: target exist
print json_doc_pop(doc, '/a/deep/nested/list/2')
>> True
# pop: target doesn't exist
print json_doc_pop(doc, '/a/deep/nested/list/5')
>> False
# has item
print json_doc_has(doc, '/a/deep/nested/list/3/dict')
>> True
# has item with value
print json_doc_has(doc, '/a/deep/nested/list/3/dict', 'OK')
>> True
## List only functions
# append
print json_doc_append(doc, '/list', 4)['list']
[1, 2, 3, 4]
# extend
print json_doc_extend(doc, '/list', [5, 6, 7])['list']
[1, 2, 3, 4, 5, 6, 7]
# replace: value -> new value, search -> old value
print json_doc_replace(doc, '/list', 44, 4)['list']
[1, 2, 3, 44, 5, 6, 7]
# replace_re: -> new value, search -> regex
[111, 2, 3, 44, 5, 6, 7]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
json-doc-0.1.3.tar.gz
(5.6 kB
view details)
Built Distribution
json_doc-0.1.3-py2-none-any.whl
(10.0 kB
view details)
File details
Details for the file json-doc-0.1.3.tar.gz
.
File metadata
- Download URL: json-doc-0.1.3.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc633d86a17a1f807469a59ff4488d1b163cbc40b709bc17013eaf9c72ca0cd1 |
|
MD5 | befc74b9e08903a7c1f94987379c810d |
|
BLAKE2b-256 | 56798a5524c8494127da5833442aaaff2bc17f8dc8065c1886f42d27b33e1ce9 |
File details
Details for the file json_doc-0.1.3-py2-none-any.whl
.
File metadata
- Download URL: json_doc-0.1.3-py2-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54ea7ff3b5da381482e8ee7d6bd53a4604b16103856d24659518992b81daef92 |
|
MD5 | 720f7c5fed82c97c843f492859e3b913 |
|
BLAKE2b-256 | 7e54b53b7308c93331a0367b22cdb9e301ed090daa9937d0aced4d18d3ddc728 |