Browse Source

cet ohne walrus-operator

gc-server6 1 year ago
parent
commit
18310a1abf
5 changed files with 89 additions and 34 deletions
  1. 4 0
      database/cet.bat
  2. 4 1
      database/cet.py
  3. 37 33
      database/cet.spec
  4. BIN
      database/dist/cet.exe
  5. 44 0
      database/pyinstaller.spec

+ 4 - 0
database/cet.bat

@@ -0,0 +1,4 @@
+cd /d %~dp0
+
+"C:\Users\GAPS\AppData\Local\Programs\Python\Python311-32\Scripts\pyinstaller.exe" -F --path %~dp0 cet.py
+pause

+ 4 - 1
database/cet.py

@@ -56,7 +56,10 @@ def queryout(dsn, query, csv_file, codepage, errorlog):
         print(e.args[1])
 
     with open(csv_file, "w", encoding=codepage) as fwh:
-        while row := cursor.fetchone():
+        while True:
+            row = cursor.fetchone()
+            if row is None:
+                break
             try:
                 fwh.write(("\t".join(map(convert_data, row)) + "\n"))
             except pyodbc.DataError as e:

+ 37 - 33
database/cet.spec

@@ -4,37 +4,41 @@
 block_cipher = None
 
 
-a = Analysis(['cet.py'],
-             pathex=[],
-             binaries=[],
-             datas=[],
-             hiddenimports=[],
-             hookspath=[],
-             hooksconfig={},
-             runtime_hooks=[],
-             excludes=[],
-             win_no_prefer_redirects=False,
-             win_private_assemblies=False,
-             cipher=block_cipher,
-             noarchive=False)
-pyz = PYZ(a.pure, a.zipped_data,
-             cipher=block_cipher)
+a = Analysis(
+    ['cet.py'],
+    pathex=['C:\\Projekte\\tools\\database\\'],
+    binaries=[],
+    datas=[],
+    hiddenimports=[],
+    hookspath=[],
+    hooksconfig={},
+    runtime_hooks=[],
+    excludes=[],
+    win_no_prefer_redirects=False,
+    win_private_assemblies=False,
+    cipher=block_cipher,
+    noarchive=False,
+)
+pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
 
-exe = EXE(pyz,
-          a.scripts,
-          a.binaries,
-          a.zipfiles,
-          a.datas,  
-          [],
-          name='cet',
-          debug=False,
-          bootloader_ignore_signals=False,
-          strip=False,
-          upx=True,
-          upx_exclude=[],
-          runtime_tmpdir=None,
-          console=True,
-          disable_windowed_traceback=False,
-          target_arch=None,
-          codesign_identity=None,
-          entitlements_file=None )
+exe = EXE(
+    pyz,
+    a.scripts,
+    a.binaries,
+    a.zipfiles,
+    a.datas,
+    [],
+    name='cet',
+    debug=False,
+    bootloader_ignore_signals=False,
+    strip=False,
+    upx=True,
+    upx_exclude=[],
+    runtime_tmpdir=None,
+    console=True,
+    disable_windowed_traceback=False,
+    argv_emulation=False,
+    target_arch=None,
+    codesign_identity=None,
+    entitlements_file=None,
+)

BIN
database/dist/cet.exe


+ 44 - 0
database/pyinstaller.spec

@@ -0,0 +1,44 @@
+# -*- mode: python ; coding: utf-8 -*-
+
+
+block_cipher = None
+
+
+a = Analysis(
+    ['\\pyinstaller.exe'],
+    pathex=['C:\\Projekte\\tools\\database" cet.py'],
+    binaries=[],
+    datas=[],
+    hiddenimports=[],
+    hookspath=[],
+    hooksconfig={},
+    runtime_hooks=[],
+    excludes=[],
+    win_no_prefer_redirects=False,
+    win_private_assemblies=False,
+    cipher=block_cipher,
+    noarchive=False,
+)
+pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
+
+exe = EXE(
+    pyz,
+    a.scripts,
+    a.binaries,
+    a.zipfiles,
+    a.datas,
+    [],
+    name='pyinstaller',
+    debug=False,
+    bootloader_ignore_signals=False,
+    strip=False,
+    upx=True,
+    upx_exclude=[],
+    runtime_tmpdir=None,
+    console=True,
+    disable_windowed_traceback=False,
+    argv_emulation=False,
+    target_arch=None,
+    codesign_identity=None,
+    entitlements_file=None,
+)