JSONTas is a tool for generating dynamic JSON structures.
Project description
JSONTas is a tool for generating dynamic JSON data.
Description
JSONTas adds conditionals and logic to JSON files in order to create dynamic JSON data depending on which dataset you supply.
It opens up the possibility to create generic tools where most of the operations are done by executing JSONTas on the data.
Documentation: https://jsontas.readthedocs.io/en/latest
Features
Simple yet powerful syntax.
HTTP requests on parse
Separation of environments by providing different datasets.
Installation
Install the project by running:
pip install jsontas
Examples
First we create two datasets. One for our ‘dev’ environment and one for our ‘prod’ environment.
Dataset ‘dev.json’
{
"mode": "dev",
"database": "dev_db"
}
Dataset ‘prod.json’
{
"mode": "prod",
"database": "prod_db"
}
JSONTas JSON file
Next up, let’s create our JSONTas file.
{
"database": {
"host": "myawesomedb.example.com",
"database": "$database"
},
"message": {
"$condition": {
"if": {
"key": "$mode",
"operator": "$eq",
"value": "dev"
},
"then": "This is the DEV server.",
"else": "This is the PROD server."
}
}
}
JSONTas execute with ‘dev’ dataset
jsontas -d dev.json data.json
{
"database": {
"host": "myawesomedb.example.com",
"database": "dev_db"
},
"message": "This is the DEV server."
}
JSONTas execute with ‘prod’ dataset
jsontas -d prod.json data.json
{
"database": {
"host": "myawesomedb.example.com",
"database": "prod_db"
},
"message": "This is the PROD server."
}
These examples only show the bare minimum. For more examples look at our documentation at: https://jsontas.readthedocs.io/en/latest
Contribute
Issue Tracker: https://github.com/AxisCommunications/jsontas/issues
Source Code: https://github.com/AxisCommunications/jsontas
Support
If you are having issues, please let us know. Email tobias.persson@axis.com or just write an issue.
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
Built Distribution
File details
Details for the file jsontas-1.1.0.tar.gz
.
File metadata
- Download URL: jsontas-1.1.0.tar.gz
- Upload date:
- Size: 30.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 155719dc02073ca063136d5eded20e195d239433713db117758400d09cb9074d |
|
MD5 | f3896b657763c135ac81a0800e0c0592 |
|
BLAKE2b-256 | a47128e03ae26b11709fc7f05fee532938178c6a6278ea301810e93ae9ccd718 |
File details
Details for the file jsontas-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: jsontas-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcd60749994940d70da77bdeb86be37af3bf532f41a7996ea813c9a28f0bac12 |
|
MD5 | c4cf98b09b9125b136128e4491960aa2 |
|
BLAKE2b-256 | 06feb8b6b91c2ab292dc0c4a18bb91b1958f4a7456ad2f393c9d056bdbaa95eb |