Initial commit - SANEF Patch Manager v2

This commit is contained in:
Pierre & Lumière 2026-04-16 15:03:37 +02:00
commit 637798b2b9
4 changed files with 7848 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
build/
dist/
__pycache__/
*.pyc
*.pyo
*.pyd
*.spec.bak
*.log
.venv/
venv/
.env
*.db
*.sqlite
.idea/
.vscode/

4232
patch_manager_v2.py Normal file

File diff suppressed because it is too large Load Diff

39
patch_manager_v2.spec Normal file
View File

@ -0,0 +1,39 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['patch_manager_v2.py'],
pathex=['C:\\Users\\netadmin\\sanef_patch_manager_v2'],
binaries=[],
datas=[],
hiddenimports=[
'paramiko',
'openpyxl',
'pyVim',
'pyVim.connect',
'pyVmomi',
'sqlite3',
'ttkbootstrap',
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['unittest', 'test'],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='SANEF_Patch_Manager',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=False,
console=False,
icon=None,
)

File diff suppressed because it is too large Load Diff