Aestate
__init__.py
Go to the documentation of this file.
1 import sys
2 from aestate.work.commad import Commands
3 
4 DEBUG = False
5 DEBUG_ARGS = ('aestate', '-create', 'example.tables.demoModels', '_demo')
6 
7 
8 def start():
9  print('暂不可用')
10  avg = sys.argv
11  if DEBUG:
12  avg = DEBUG_ARGS
13  _ = Commands(*avg)
14  if len(avg) == 1:
15  _.c[''][0]()
16  else:
17  _.c[avg[1]][0]()
18 
19 
20 def parse_sys():
21  pass
22 
23 
24 if __name__ == '__main__':
25  start()
aestate.work.commad
Definition: commad.py:1
aestate.parse_sys
def parse_sys()
Definition: __init__.py:20
aestate.start
def start()
Definition: __init__.py:8
aestate.work.commad.Commands
Definition: commad.py:41