Initial commit: PDF zu ICS Konverter

This commit is contained in:
2026-02-23 10:45:26 +01:00
commit 910e5c522d
8 changed files with 963 additions and 0 deletions

19
start.cmd Normal file
View File

@@ -0,0 +1,19 @@
@echo off
REM PDF zu ICS Konverter - Windows Startskript
setlocal enabledelayedexpansion
REM Wechsel ins Skriptverzeichnis
cd /d "%~dp0"
REM Überprüfe, ob venv existiert
if not exist ".venv" (
echo Python-Umgebung wird eingerichtet...
python3 -m venv .venv
call .venv\Scripts\pip.exe install -q pdfplumber icalendar pypdf2 pytz
)
REM Starte das Menü
call .venv\Scripts\python.exe menu.py
pause