Ver código fonte

Bessere Nutzung von Packages

Global Cube 2 anos atrás
pai
commit
3f6fb212c8
3 arquivos alterados com 12 adições e 9 exclusões
  1. 9 9
      c11.py
  2. 2 0
      cognos11/__init__.py
  3. 1 0
      config/__init__.py

+ 9 - 9
c11.py

@@ -1,7 +1,6 @@
+import config
+import cognos11
 import plac
-from cognos11.c11_export import c11_export
-from cognos11.c11_create import c11_create
-from config.config import Config
 from enum import Enum
 
 
@@ -14,21 +13,22 @@ class C11:
     commands = ['export', 'reportoutput', 'errors', 'create']
 
     def export(self, folder='', format='XML'):
-        cfg = Config()
-        exp = c11_export(cfg)
+        cfg = config.Config()
+        exp = cognos11.c11_export(cfg)
         exp.export_folder(folder, format)
 
     def reportoutput(self, folder=''):
         self.export(folder, 'PDF')
+        
 
     def errors(self):
-        cfg = Config()
-        exp = c11_export(cfg)
+        cfg = config.Config()
+        exp = cognos11.c11_export(cfg)
         exp.export_errors()
 
     def create(self, path: str):
-        cfg = Config()
-        c11_create(cfg).create_path(path)
+        cfg = config.Config()
+        cognos11.c11_create(cfg).create_path(path)
 
 
 if __name__ == '__main__':

+ 2 - 0
cognos11/__init__.py

@@ -0,0 +1,2 @@
+from cognos11.c11_export import c11_export
+from cognos11.c11_create import c11_create

+ 1 - 0
config/__init__.py

@@ -0,0 +1 @@
+from config.config import Config