-
Notifications
You must be signed in to change notification settings - Fork 6
Home
Abdullah Ahmad Zarir edited this page Aug 21, 2017
·
1 revision
Welcome to the tkinter-json-editor wiki!
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()