Transform JSON Objects to human readable strings
Project description
Human JSON
human_json
is a simple python library, that can take a JSON Object, and create a pretty string for that object.
JSON is easy to transport, and quite easy to read, but requires some form of prior training to properly understand it. This library allows one to transform JSON Objects into an easier to read format
Example
The following Python dictionary (which can represent a JSON Object):
{
'className': 'ComputerScience',
'classId': 2020,
'assignments': {
'assignment1': {
'average_grade': 5.5,
'description': 'Complete Assignment 1',
'grades': [5, 5, 5, 7]
},
'assignment2': {
'average_grade': None,
'description': 'Complete Assignment 2',
'grades': ()
}
},
'students': ('student1', 'student2', 'studentabc', 2019, None, 10.5),
}
turns into the following pretty string:
className: ComputerScience
classId: 2020
assignments:
assignment1:
average_grade: 5.5
description: Complete Assignment 1
grades:
5
5
5
7
assignment2:
average_grade: None
description: Complete Assignment 2
grades:
-
students:
student1
student2
studentabc
2019
None
10.5
Custom Prefixes
You can also specify an optional prefix, that will be prefixed to each line. A possible prefix is "* ". Using this prefix, will return a markdown list. This can be directly copy-pasted into a markdown file, for example:
* className: ComputerScience
* classId: 2020
* assignments:
* assignment1:
* average_grade: 5.5
* description: Complete Assignment 1
* grades:
* 5
* 5
* 5
* 7
* assignment2:
* average_grade: None
* description: Complete Assignment 2
* grades:
* -
* students:
* student1
* student2
* studentabc
* 2019
* None
* 10.5
Custom Indentations
You can also specify a custom indentation. The default is "\t"
, but you can specify " "
or even a number of spaces.
Below is an example using 2
:
className: ComputerScience
classId: 2020
assignments:
assignment1:
average_grade: 5.5
description: Complete Assignment 1
grades:
5
5
5
7
assignment2:
average_grade: None
description: Complete Assignment 2
grades:
-
students:
student1
student2
studentabc
2019
None
10.5
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 human-json-0.3.0.tar.gz
.
File metadata
- Download URL: human-json-0.3.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.6.3 Linux/4.4.0-101-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d68a4f5a4797bf3eababf6057b1704249fff282d0b70f7fbed88726a4a7163e |
|
MD5 | d74535ccf22b13dba1124367c6e09cca |
|
BLAKE2b-256 | 7c4f82bf84cc9f377d0051761112f8847f398fc25868909c28d9c50b6faec101 |
File details
Details for the file human_json-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: human_json-0.3.0-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.6.3 Linux/4.4.0-101-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8751da13d0401ab9cd76c53ad7c1d9956b6f072981601ef9d884fff098cbae4 |
|
MD5 | b12057c953c0afd146c7d096d342b67c |
|
BLAKE2b-256 | 5fac19718ece3e092dca5299e8da7353becf199714cdfb04b19b03d74ee223db |