24 lines
445 B
Python
24 lines
445 B
Python
"""WizardKit: Embedded Python helper.
|
|
|
|
This saves the keystrokes needed to fix the path and import wk. To use:
|
|
python.exe -i embedded_python_env.py
|
|
"""
|
|
# vim: sts=2 sw=2 ts=2
|
|
|
|
import pickle
|
|
import wk
|
|
|
|
|
|
# Functions
|
|
def load_state():
|
|
with open('debug/state.pickle', 'rb') as f:
|
|
return pickle.load(f)
|
|
|
|
|
|
# Main
|
|
wk.ui.cli.print_colored(
|
|
(wk.cfg.main.KIT_NAME_FULL, ': ', 'Debug Console'),
|
|
('GREEN', None, 'YELLOW'),
|
|
sep='',
|
|
)
|
|
print('')
|