updating some scripts - fixes, mostly. conf_minify works WAY better now.

This commit is contained in:
brent s
2018-10-18 14:13:34 -04:00
parent d84a98520a
commit 6f450ab68f
8 changed files with 140 additions and 41 deletions

View File

@@ -26,7 +26,7 @@ ref: https://www.python.org/dev/peps/pep-0008/#imports
###############################################################################
To programmatically install modules via pip if they aren't installed:
To programmatically install modules via pip if they aren't installed (BROKEN IN RECENT PIP VERSIONS; pip._internal.main() i think):
____
import importlib
@@ -108,4 +108,13 @@ log = logger.log(name = 'project.name')
###############################################################################
# TODO #
https://stackoverflow.com/questions/10265193/python-can-a-class-act-like-a-module
https://stackoverflow.com/questions/10265193/python-can-a-class-act-like-a-module
###############################################################################
To issue an equivalent of "reset" command in linux, assuming console is ANSI-compat,
print('\x1bc', end = '')
###############################################################################