Initial beta version

This commit is contained in:
allegroai
2019-06-10 20:00:28 +03:00
parent 3cb9de58c3
commit f595afe6c8
121 changed files with 34975 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import sys
from .util import get_command_output
def pip_freeze():
try:
return get_command_output([sys.executable, "-m", "pip", "freeze"]).splitlines()
except Exception as ex:
print('Failed calling "pip freeze": {}'.format(str(ex)))
return []