# IBAN-Tool für Windows

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

## Installation
    pip install schwifty

## Kommandozeilen-Nutzung
    python iban.py --konto 123456789 --blz 10020520 --json

## Webserver-Nutzung (API)
    python server.py
    Startet einen Server auf http://0.0.0.0:8000

### API-Endpunkt
    GET /api?konto=123456789&blz=10020520
    Gibt eine IBAN als JSON zurück.

### Beispiel-Anfrage
    curl http://localhost:8000/api?konto=123456789&blz=10020520
