Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kilemonn/modelvisualiser
A visualiser tool that is able to visualise complex JSON, YAML and XML model objects from a provided data file.
https://github.com/kilemonn/modelvisualiser
graphviz json python3 visualization xml yaml
Last synced: about 4 hours ago
JSON representation
A visualiser tool that is able to visualise complex JSON, YAML and XML model objects from a provided data file.
- Host: GitHub
- URL: https://github.com/kilemonn/modelvisualiser
- Owner: Kilemonn
- License: apache-2.0
- Created: 2023-10-21T03:04:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-17T03:26:04.000Z (4 months ago)
- Last Synced: 2024-07-17T06:12:03.047Z (4 months ago)
- Topics: graphviz, json, python3, visualization, xml, yaml
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ModelVisualiser
A visualiser tool that is able to visualise complex JSON, YAML and XML model objects.# Getting Started
## Install Pipenv
Install pipenv:
> pip install pipenvCall pipenv to install required dependencies:
> pipenv installInstall new dependency:
> pipenv install \## Locking and Updating pipe
`pipenv lock` — records the new requirements to the Pipfile.lock file.
`pipenv update` — records the new requirements to the Pipfile.lock file and installs the missing dependencies on the Python interpreter.
# Usage
The program can be run using the `python3` interpreter. The application is expecting a single commandline argument which is the path to the input file that you wish to visualise.
> python3 main.py path/to/file.json
The output is always a `.png` file for now.