# IBAN-Tool für Windows

## Voraussetzungen
- Python 3.x für Windows (https://www.python.org/downloads/)

## Installation & Kompilierung zur .exe
1. Öffne die Eingabeaufforderung (cmd)
2. Navigiere in den Ordner, wo diese Datei liegt
3. Führe aus:

   ```
   pip install pyinstaller schwifty
   pyinstaller --onefile --noconsole --name iban_tool.exe iban.py
   ```

4. Die fertige .exe befindet sich dann im Ordner `dist/`

## Alternativ: Als .exe ohne Kompilierung
   ```
   pip install schwifty
   python iban.py --konto 123456789 --blz 10020520 --json
   ```

## Nutzung der .exe (nach Kompilierung)
   ```
   iban_tool.exe --konto 123456789 --blz 10020520 --json
   ```
