Coverage for pylucid_admin.py : 92%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
#!/usr/bin/python3
PyLucid Admin Shell ~~~~~~~~~~~~~~~~~~~
:created: 2018 by Jens Diemer :copyleft: 2018 by the PyLucid team, see AUTHORS for more details. :license: GNU GPL v3 or above, see LICENSE for more details. """
# Bootstrap-Env
# print("SELF_FILE_PATH: %s" % SELF_FILE_PATH) # print("BOOT_FILE_PATH: %s" % BOOT_FILE_PATH) # print("PACKAGE_PATH: %s" % PACKAGE_PATH) # print("OWN_FILE_NAME: %s" % OWN_FILE_NAME)
# Installed in "normal" mode (as Package from PyPi) ShellClass = PyLucidNormalShell else: # Installed in "developer" mode (as editable from source) # Import here, because developer_shell imports packages that # only installed in "developer" mode ;)
requirements=requirements, self_filename=OWN_FILE_NAME, package_path = PACKAGE_PATH, ).cmdloop()
if __name__ == '__main__': main() |