15
16
17
18
19
20
21
22
23
24
25
26
27
28
| #
# jsoncfg = {}
# pluginconf.gui.window(jsoncfg, {}, ["plugins/*.py"])
#
# Very crude, and not as many widgets as the Gtk/St2 implementation.
# Supports type: str, bool, select, int, dict, text config: options.
#
import PySimpleGUI as sg
import pluginconf
import glob, json, os, re, textwrap
|
>
>
| 15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| #
# jsoncfg = {}
# pluginconf.gui.window(jsoncfg, {}, ["plugins/*.py"])
#
# Very crude, and not as many widgets as the Gtk/St2 implementation.
# Supports type: str, bool, select, int, dict, text config: options.
#
""" PySimpleGUI window to populate config dict via plugin options """
import PySimpleGUI as sg
import pluginconf
import glob, json, os, re, textwrap
|