Tools to work with JSON data easily and quickly.
Project description
The t4json module was created to make working with JSON data in python easier. It provides a bunch of tools to seamlessly open, edit and save JSON data. The tools provided by t4json have tons of features so that you can do really specific things... if you only want to read a few values from some flat simple json data, then you might as well use the standard json module.
This module should work on any installation of python 3.6 or later on any OS right out of the box.
Check out the docs here.
Outline:
- Open up json data from a file, URL/Endpoint, or string with the T4Json class.
- Use methods to make some changes.
- Save changes.
- That's it. Your done..
Features
- Use paths to navigate the json data just like in the file system. Also includes relative/absolute path navigating.
- Easily make changes like changing the name of a key, changing a value, adding new items, moving/copying items to new locations, deleting items, flattening, and more. All with easy to use and intuitive methods.
- Easily open up json data - simply pass a File Path, URL, or Json String when creating the T4Json object, and it will automatically figure out what is what and give you the data you need to work with.
- And more.
T4json is designed to simply and easily work with json data without any hassle. It can be used to make simple quick changes, more complex changes, or to just retrieve data. All with only a few lines of code that are easy to understand and read.
Installation
Using pip:
pip install t4json
Or just download the code from GitHub and use as a local module within your project… which may be more useful if you want to make changes to it.
Try to keep this package up to date... this project is under active development and with every update there can be much more improvement on the previous version.
Examples
Loading the Data
To load json data simply pass the data in when initializing the t4json object.
Loading a File:
data = T4Json('example.json')
Loading from a URL/Endpoint:
data = T4Json('https://api.github.com/users?since=100')
Loading from a string:
json_data = """{
"name": "John"
"age": 67
"wealth": "above average"
"family": null
}"""
data = T4Json(json_data)
Loading from a dict/list:
dictionary = {'new_data': 512}
data = T4Json(dictionary)
If you want to load new data into the same T4Json instance after you have already loaded data - data.load("new_example.json")
.
If you want to start with a clean slate and create json data from scratch then:
data = T4Json()
# start adding items here
Using Paths to Navigate the Data
Note - ( This section assumes familiarity with absolute/relative paths within the file system. )
Once the data is loaded you can navigate it using paths - similar to a file/directory path. If you are working in some nested part of the data then you can set that as the current working level to make it easier to read/edit the data in there. For example:
Here is the json data in a file we will call settings.json
:
{
"internet": {
"airplane mode": false,
"wifi": [true, {"known": ["home", "office"]}],
"wifi calling": false,
"mobile hotspot": false,
"mobile data": false
},
"bluetooth": [true, {"paired": ["headphones", "laptop"]}],
"sound": {
"volume": 65, "vibration": true,
"ringtone": "guitar", "notification": "ping"
},
"display": {
"brightness": {"auto": true, "level": 80},
"wallpaper": "trees",
"navigation bar": "gesture",
"font": 70,
"timeout time": 30
}
}
Note - ( The default path separator is '\' - two back slashes - make sure that the fist backslash is not escaped by the second backslash. This can be done by prefixing the string with an 'r' or by using '\\' as the seperator. You can change the path separator properties using the set_path_separator_properties()
method. )
Here is some code being run in the terminal using paths to navigate the data. It shows the difference between absolute vs relative paths.
Absolute:
>>> data = T4Json('hero_file.json')
>>> data.read(r'display\\brightness\\auto')
True
>>> data.read(r'internet\\wifi\\1\\known')
['home', 'office']
>>> data.read(r'display\\brightness\\level')
80
>>> data.read('sound')
{'volume': 65, 'vibration': True, 'ringtone': 'guitar', 'notification': 'ping'}
Relative:
>>> data.set_working_level(r'internet\\wifi\\1')
>>> data.read(r'.\\known\\0')
home
>>> data.read(r'.\\known')
['home', 'office']
>>> data.read(r'..\\0')
True
>>> data.read(r'..\\..\\..\\bluetooth\\1\\paired')
['headphones', 'laptop']
>>> data.read(r'..\\..\\..\\sound\\volume')
65
>>> data.read(r'..\\..\\..\\display\\brightness')
{'auto': True, 'level': 80}
Note - (There can be a separator at the beginning of the path if you want it. Sometimes it may be necessary to do that if there is a key that is an empty string "". This is because an empty string "" is used to access the base level. So both \\formed
and formed
would be the same thing.)
Using these relative paths we not only can read but can do all sorts of edits easily and without the hassle of always having to walk down the path of nested data.
Searching the Data
You can search the data for a specific key if the keys value is not a pair container. We will use this URL as an example:
>>> data = T4Json('https://mdn.github.io/learning-area/javascript/oojs/json/superheroes.json')
>>> data.search('powers')
Look at the json data from the URL and see how it looks compared to the searched data below.
[
"Radiation resistance",
"Turning tiny",
"Radiation blast",
"Million tonne punch",
"Damage resistance",
"Superhuman reflexes",
"Immortality",
"Heat Immunity",
"Inferno",
"Teleportation",
"Interdimensional travel"
]
Flattening Nested Data
Flattening nested data is turning something like this [[1, 2, 3, [4, 5]], 6, 7, 8]
into this [1, 2, 3, 4, 5, 6, 7, 8]
. Nested data can be flattened using the T4Json.flatten()
method.
There are basically, two different ways that T4Json data can be flattened:
- Grounding: All the kay/value pairs (that do not contain containers as values) are moved to the base level. Any key/value pairs that have the same keys get their values combined or replaced.
- Chaining: All the keys get chained togather. The values (that are not containers) remain the same.
Grounding:
We will be using the data from this URL as example data.
>>> data = T4Json('https://mdn.github.io/learning-area/javascript/oojs/json/superheroes.json')
>>> data.flatten()
>>> data
Look at the original json data from the URL and compare it with the flattened data below.
{
"squadName": "Super Hero Squad",
"homeTown": "Metro City",
"formed": 2016,
"secretBase": "Super tower",
"active": true,
"name": [
"Molecule Man",
"Madame Uppercut",
"Eternal Flame"
],
"age": [
29,
39,
1000000
],
"secretIdentity": [
"Dan Jukes",
"Jane Wilson",
"Unknown"
],
"powers": [
"Radiation resistance",
"Turning tiny",
"Radiation blast",
"Million tonne punch",
"Damage resistance",
"Superhuman reflexes",
"Immortality",
"Heat Immunity",
"Inferno",
"Teleportation",
"Interdimensional travel"
]
}
Chaining:
We will be using this data as an example:
{
"internet": {
"airplane mode": false,
"wifi": [true, {"known": ["home", "office"]}],
"wifi calling": false,
"mobile hotspot": false
},
"bluetooth": [true, {"paired": ["headphones", "laptop"]}],
"sound": {
"volume": 65, "vibration": true,
"ringtone": "guitar", "notification": "ping"
},
"display": {
"brightness": {"auto": true, "level": 80},
"wallpaper": "trees",
"navigation bar": "gesture",
"font": 70,
"timeout time": 30
}
}
We will then run the fallowing code to flatten the data:
>>> data = T4Json('example.json')
>>> data.flatten(chain_keys=True)
>>> data
And here is the result:
{
"bluetooth": [true],
"internet_airplane mode": false,
"internet_wifi": [true],
"internet_wifi calling": false,
"internet_mobile hotspot": false,
"sound_volume": 65,
"sound_vibration": true,
"sound_ringtone": "guitar",
"sound_notification": "ping",
"display_wallpaper": "trees",
"display_navigation bar": "gesture",
"display_font": 70,
"display_timeout time": 30,
"bluetooth_paired": ["headphones", "laptop"],
"internet_wifi_known": ["home", "office"],
"display_brightness_auto": true,
"display_brightness_level": 80
}
Note - when there is only one item in a list such as {"bluetooth": [true]}
from above, you can set the parameter convert_singular_lists
of the flatten()
method to True
and the output will be {"bluetooth": true}
instead of {"bluetooth": [true]}
.
Dependencies
The only third party dependency is the "request" module.
Change Log - Latest Fixes & Improvements
v1.4.3
- Added
multi_iter()
method to T4Json instance so that multiple variables can be looped through the data at the same time. - Also added
multi_iter()
as a global function. - Cleaned up code and made it just a bit faster.
- The dunder methods of the T4Json class were improved.
- Improved docs.
v1.4.2
- Added
types()
method to T4Json instance. - Added
convert_singular_lists()
method. - Added convert_singular_lists parameter to
flatten()
method. - The
flatten()
method should generally be up to 15% faster. - The chain_key_include_index of the
flatten()
method was fixed/improved. - Cleaned up code in internal methods.
v1.4.0
- Slicing Operations now supported on T4Json instances.
- Support for adding and subtracting items or pairs to/from T4Json instances.
- Support for iterating through a T4Json instance.
- Support for getting the length of a T4Json instance - (number of all the pairs/items on the first level).
- Support for checking equality (of data) between two T4Json instances.
- Support for checking in-equality (number of all the pairs/items on the first level) between two T4Json instances.
- Default support for printing a T4Json instance.
- Adding a pretty print method.
- Cleaned up code.
v1.3.3
- Greatly improved the error messages.
- Fixed t4json.
save()
method. - Improved t4json.
load()
&load_file()
&load_from_url()
&load_from_string()
- Added t4json.
load_object()
for loading python objects. - Added new parameters to t4json.
load_from_url()
for makingPOST
(and others) requests. Also added support for headers and body. - Improved walking up levels in nested data using paths.
- Improved support for key paths to work with non-string objects that are keys.
- Cleaned up code in general.
Roadmap
- Build better search algorithms.
- Improve Documentation & move it to a better/more-organized website.
- Make even more improvements on error messages.
- Improve the docstrings
License
MIT Copyright (c) 2022 Isaac Wolford
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Contact
Email: cybergeek.1943@gmail.com
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
File details
Details for the file t4json-1.4.3.tar.gz
.
File metadata
- Download URL: t4json-1.4.3.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62b60c01dec366b14643fd0fa127479a9790aaac6767c3ef4d4eb29259d04202 |
|
MD5 | 198f4b452ed8ab8c9667502dc08265d8 |
|
BLAKE2b-256 | 400c85ef23795dbe6448c0c1fb70a59cdecd1dd0e8c8912923d6a133be9226b4 |