23 lines
487 B
Markdown
23 lines
487 B
Markdown
# Helios QR Bank Transfer (EPC/GiroCode)
|
|
|
|
Generates SEPA QR codes (EPC069-12) for mobile banking apps.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
python3 generate_epc_qr.py \
|
|
--name "Max Mustermann" \
|
|
--iban "DE89370400440532013000" \
|
|
--amount 25.00 \
|
|
--reason "Abendessen" \
|
|
--output /tmp/qr.png
|
|
```
|
|
|
|
## Requirements
|
|
|
|
- `segno` (Python library for QR codes)
|
|
- `Pillow` (optional, for image handling)
|
|
|
|
## Security
|
|
|
|
Generated QR codes contain sensitive payment data. Delete them immediately after use.
|