Browse Source

Umstellung Typer

gc-server3 1 year ago
parent
commit
5fdbe541e5
5 changed files with 98 additions and 60 deletions
  1. 4 0
      excel/__init__.py
  2. 18 12
      excel/excel.py
  3. 6 11
      excel/refresh.py
  4. 34 37
      excel/split.py
  5. 36 0
      xls.py

+ 4 - 0
excel/__init__.py

@@ -0,0 +1,4 @@
+from excel.convert import convert_folder
+from excel.excel import convert
+from excel.refresh import refresh
+from excel.split import split

+ 18 - 12
excel/excel.py

@@ -1,15 +1,21 @@
 import os
 import win32com.client
 
-excel = win32com.client.Dispatch('Excel.Application')
-excel.DisplayAlerts = False
-
-path = os.getcwd() + '\\Excel'
-
-# def convert(path):
-for file in filter(lambda x: x.endswith('.xls'), os.listdir(path)):
-    print(file)
-    fullname = path + '\\' + file
-    excel.Workbooks.Open(fullname)
-    excel.ActiveWorkbook.SaveAs(Filename=fullname + 'x', ConflictResolution=True)
-    excel.ActiveWorkbook.Close(True)
+
+def convert(path: str):
+    excel_com = win32com.client.Dispatch("Excel.Application")
+    excel_com.DisplayAlerts = False
+
+    for file in filter(lambda x: x.endswith(".xls"), os.listdir(path)):
+        print(file)
+        fullname = path + "\\" + file
+        excel_com.Workbooks.Open(fullname)
+        excel_com.ActiveWorkbook.SaveAs(
+            Filename=fullname + "x", ConflictResolution=True
+        )
+        excel_com.ActiveWorkbook.Close(True)
+
+
+if __name__ == "__main__":
+    path = os.getcwd() + "\\Excel"
+    convert(path)

+ 6 - 11
excel/refresh.py

@@ -1,11 +1,10 @@
-import plac
 import win32com.client
 from pathlib import Path
 
 
-@plac.pos('filename', '', type=Path)
-def refresh(filename):
-    excel = win32com.client.Dispatch('Excel.Application')
+def refresh(filename_str: str):
+    filename = Path(filename_str)
+    excel = win32com.client.Dispatch("Excel.Application")
     excel.DisplayAlerts = False
 
     print(f"Refresh '{filename.resolve()}'")
@@ -13,19 +12,15 @@ def refresh(filename):
 
     try:
         for source in wb.LinkSources(1):
-            print(' --> ' + source)
+            print(" --> " + source)
             if Path(source).exists():
                 excel.Workbooks.Open(source)
             else:
-                print('     !! does not exist !!')
+                print("     !! does not exist !!")
     except TypeError:
-        print(' --> ' + 'no LinkSources')
+        print(" --> " + "no LinkSources")
 
     wb.RefreshAll()
     wb.Save()
     wb.Close(True)
     excel.Application.Quit()
-
-
-if __name__ == '__main__':
-    plac.call(refresh)

+ 34 - 37
excel/split.py

@@ -2,40 +2,37 @@ import win32com.client
 from pathlib import Path
 
 
-class excel_macro:
-    excel_format = {'.csv': 6, '.xls': 56, '.xlsx': 51}
-
-    def __init__(self):
-        self.excel = win32com.client.Dispatch('Excel.Application')
-        self.excel.DisplayAlerts = False
-        # excel.Visible = True
-
-    def split(self, file, format=None):
-        filename = Path(file)
-        path = str(filename.parent.resolve())
-        print(filename.resolve())
-
-        if format is None:
-            ext = filename.suffix
-        else:
-            ext = '.' + format
-
-        wb = self.excel.Workbooks.Open(filename.resolve())
-
-        for sh in wb.Sheets:
-            tab_filename = f'{filename.stem}_{sh.Name}{ext}'
-            print(' --> ' + tab_filename)
-            wb2 = self.excel.Workbooks.Add()
-            wb.Worksheets(sh.Name).Activate()
-            ws = self.excel.ActiveSheet
-            ws.Copy(Before=wb2.sheets(1))
-            wb2.sheets(2).Delete()
-            wb2.UpdateLinks = 2
-            wb2.SaveAs(Filename=path + '\\' + tab_filename, FileFormat=self.excel_format[ext])
-            wb2.Close(True)
-
-        wb.Close(True)
-
-
-if __name__ == '__main__':
-    excel_macro().split('Excel\\Mappe1.xlsx', 'csv')
+excel_format = {".csv": 6, ".xls": 56, ".xlsx": 51}
+
+
+def split(file, format=None):
+    excel_com = win32com.client.Dispatch("Excel.Application")
+
+    excel_com.DisplayAlerts = False
+    # excel_com.Visible = True
+
+    filename = Path(file)
+    path = str(filename.parent.resolve())
+    print(filename.resolve())
+
+    ext = filename.suffix if format is None else format
+
+    wb = excel_com.Workbooks.Open(filename.resolve())
+
+    for sh in wb.Sheets:
+        tab_filename = f"{filename.stem}_{sh.Name}{ext}"
+        print(" --> " + tab_filename)
+        wb2 = excel_com.Workbooks.Add()
+        wb.Worksheets(sh.Name).Activate()
+        ws = excel_com.ActiveSheet
+        ws.Copy(Before=wb2.sheets(1))
+        wb2.sheets(2).Delete()
+        wb2.UpdateLinks = 2
+        wb2.SaveAs(Filename=path + "\\" + tab_filename, FileFormat=excel_format[ext])
+        wb2.Close(True)
+
+    wb.Close(True)
+
+
+if __name__ == "__main__":
+    split("Excel\\Mappe1.xlsx", "csv")

+ 36 - 0
xls.py

@@ -0,0 +1,36 @@
+import config
+import excel
+import typer
+
+
+app = typer.Typer()
+# cfg = config.Config()
+
+
+@app.command()
+def convert(folder: str):
+    excel.convert(folder)
+
+
+@app.command()
+def csv_export(folder: str):
+    excel.convert_folder(folder)
+
+
+@app.command()
+def dimension(filename: str):
+    print(filename)
+
+
+@app.command()
+def refresh(filename: str):
+    excel.refresh(filename)
+
+
+@app.command()
+def split(filename: str):
+    excel.split(filename)
+
+
+if __name__ == "__main__":
+    app()