Translates Django ORM query system to json objects
Project description
JSON Enhanced
JSON Enhanced implements fast and pythonic queries and mutations for JSON objects.
Installation
You can install json-enhanced with pip:
pip install json-enhanced
Quickstart
import jsonutils as js
from datetime import datetime
# We create a new JSONObject either directly or from a local file/URL:
json_data = js.JSONObject(
{
"data": [
{
"name": "Dan",
"birthday": "1991-01-02 09:00:00",
"publications": 15
},
{
"name": "Mar",
"birthday": "1991-03-02 12:30:00",
"publications": 13
},
{
"name": "Carl",
"birthday": "1950-06-02 16:00:00",
"publications": 36
},
{
"name": "Vic",
"birthday": "1986-07-02 16:00:00",
"publications": None
},
]
}
)
# Now we can navegate through this object by attribute accesion:
json_data.data._1.name
# 'Mar'
# Or we can make queries. The syntax is very similar to Django's querysets:
result = json_data.query(birthday__lt=datetime(1985,1,1))
result
# <QuerySet ['1950-06-02 16:00:00']>
result.first().parent
# {'name': 'Carl', 'birthday': '1950-06-02 16:00:00', 'publications': 36}
# We can also retrieve the path of a node:
result.first().jsonpath
# data/2/
Documentation
Detailed documentation is available at json-enhanced.readthedocs.io.
Contributing
Contributions are welcome! Please take a look at our contributors guide.
Code of Conduct
Please read CODE_OF_CONDUCT.md for details on our code of conduct.
License
This project is licensed under the GPL-3.0 License. For details, please read our LICENSE FILE.
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file json-enhanced-0.1.45.tar.gz.
File metadata
- Download URL: json-enhanced-0.1.45.tar.gz
- Upload date:
- Size: 38.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69e9c1d9b039fc86406dfe0bc814d3de84cf79e28f15c44e70a5d68be50c58a7
|
|
| MD5 |
56eba89b254316c3f28b76cddf2f32e1
|
|
| BLAKE2b-256 |
d09979129a909e363513e82ce7ee07ff14310d5c962fc1f50fe7b0ad66b8412d
|
File details
Details for the file json_enhanced-0.1.45-py3-none-any.whl.
File metadata
- Download URL: json_enhanced-0.1.45-py3-none-any.whl
- Upload date:
- Size: 39.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
122a1c89807ffbf30a558a19b0b18af7db4ecb42ad8c37d86b6b72534b8e9b9e
|
|
| MD5 |
9a7104e52e8d82350de6151de27a59bc
|
|
| BLAKE2b-256 |
25bc391e10b026f74e25944ba9ee35566b4582779b22234e28987f3a4a7e6c23
|