db.py 555 B

12345678910111213141516171819202122232425
  1. import config
  2. import database
  3. import plac
  4. class DatabaseTools:
  5. commands = ["create", "run", "schema"]
  6. def __init__(self):
  7. self.cfg = config.Config()
  8. def create(self, config_file: str):
  9. config_file = self.cfg.system_dir + f"\\SQL\\config\\{config_file}.json"
  10. database.create(config_file)
  11. def run(self):
  12. batch_dir = self.cfg.system_dir + "\\SQL\\batch"
  13. database.run(batch_dir)
  14. def schema(self):
  15. database.schema()
  16. if __name__ == "__main__":
  17. plac.Interpreter.call(DatabaseTools)