db.py 519 B

123456789101112131415161718192021222324
  1. import bcp_log
  2. import db_create
  3. import db_run
  4. import plac
  5. class DBTools:
  6. commands = ['create', 'logs', 'run']
  7. @plac.pos('config_file', '', type=str)
  8. def create(self, config_file='dbtools/OPTIMA.json'):
  9. db_create.create(config_file)
  10. @plac.pos('system', '', type=str)
  11. def logs(self, system):
  12. bcp_log.check_directory(system)
  13. @plac.pos('system', '', type=str)
  14. def run(self, system):
  15. db_run.run(system)
  16. if __name__ == '__main__':
  17. plac.Interpreter.call(DBTools)