17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| # 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 os
import re
#import json
import glob
import textwrap
|
>
|
>
>
>
| 17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| # 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 os
import re
#import json
import glob
import textwrap
|