c11.py 769 B

1234567891011121314151617181920212223242526272829303132333435
  1. import plac
  2. from cognos11.c11_export import c11_export
  3. from cognos11.c11_create import c11_create
  4. from config.config import Config
  5. from enum import Enum
  6. class ExportFormat(Enum):
  7. PDF = "PDF"
  8. XML = "XML"
  9. class C11:
  10. commands = ['export', 'reportoutput', 'errors', 'create']
  11. def export(self, folder='', format='XML'):
  12. cfg = Config()
  13. exp = c11_export(cfg)
  14. exp.export_folder(folder, format)
  15. def reportoutput(self, folder=''):
  16. self.export(folder, 'PDF')
  17. def errors(self):
  18. cfg = Config()
  19. exp = c11_export(cfg)
  20. exp.export_errors()
  21. def create(self, path: str):
  22. cfg = Config()
  23. c11_create(cfg).create_path(path)
  24. if __name__ == '__main__':
  25. plac.Interpreter.call(C11)