Skip to content

rBrenick/json-editor

Repository files navigation

json-editor

Visual JSON Editor written in PySide2.

tool header image

Update

2022-09-24 - Rewrote from scratch

New features:

  • Can be run in a standalone python interpreter
    • compiled .exe can be found in releases
  • Separated out the data_tree widget to its own thing
  • Better handling of different data structures
  • Remember indentation when saving file

Install

1. Download this package and unzip it in a good location 
    1.B (or git clone it directly if you have git installed)
2. Run installer.bat (will walk you through some options for install)
3. Restart the DCC

Start the tool

Run this script in a python tab in maya

import json_editor
json_editor.main()

As a developer you can run this to reload the tool without restarting

import json_editor
json_editor.reload_modules()
json_editor.main(refresh=True)