Erste Version

This commit is contained in:
Akamaru
2025-07-29 21:03:24 +02:00
commit f6f65696c6
9 changed files with 962 additions and 0 deletions

15
build.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
echo Installing required packages...
pip install -r requirements.txt
pip install pyinstaller
echo Building executable...
python build.py
echo Done!
if exist "dist\Serien-Checker.exe" (
echo Executable created successfully at dist\Serien-Checker.exe
) else (
echo Error: Build failed!
)
pause