Makes any JSON compatible with D3's hierarchy or tree chart formats (see https://d3js.org)
Project description
json4tree
Makes any JSON compatible with D3's hierarchy or tree chart formats.
Installation
Since this tool is exclusively Python3
, you'll need pip3
to install:
pip3 install json4tree
You can also download and install the package directly from PyPi.
Usage
If your Python3
library is included in your path, try running json4tree
directly from the command line:
# if you have your Python3 scripts added to your path, use this one:
json4tree input.json output.json
# otherwise, use this one:
python3 json4tree input.json output.json
If you need to import it as a module in your Python3
script, do it like so:
# import the necessary modules
import json
import json4tree
# import your JSON data
infile = open("input.json", "r")
json_file = json.load(infile)
infile.close()
# create a new handler
converter = json4tree.handler(json_file)
# You can either print your results...
converter.results
# Or you can save your results
outfile = open("output.json", "w")
outfile.write(converter.results)
outfile.close()
Examples
Here is an example input file from Merriam-Webster's Dictionary API and the resulting output file.
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
json4tree-1.0.0.tar.gz
(3.8 kB
view hashes)
Built Distribution
Close
Hashes for json4tree-1.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | af17cfa1b9f23c4193f6bcb224c2ffceba8a813517132845760113cb3e9b0576 |
|
MD5 | 00c48702f6a9fd6b2d603f32e297e429 |
|
BLAKE2b-256 | 88a2fdd59cb56c2963416945bc705a569d4832c2ba9c998f108b46f05c4c691c |