Skip to content
Abdullah Ahmad Zarir edited this page Aug 21, 2017 · 1 revision

Welcome to the tkinter-json-editor wiki!

Get Started:

To get the editor up and running execute the following code after putting the JsonEditor.py script in the same directory.

import tkinter as tk
from JsonEditor import JsonEditor

if __name__ == '__main__':
    root = tk.Tk()
    editor = JsonEditor(root)
    editor.set_title('JSON Editor')
    root.mainloop()

Clone this wiki locally