A library to generate Swiss QR-bill payment slips
Project description
Python library to generate Swiss QR-bills
From 2020, Swiss payment slips will progressively be converted to the QR-bill format. Specifications can be found on https://www.paymentstandards.ch/
This library is aimed to produce properly-formatted QR-bills as SVG files either from command line input or by using the QRBill class.
Installation
You can easily install this library with:
$ pip install qrbill
Command line usage example
Minimal:
$ qrbill --account "CH5800791123000889012" --creditor-name "John Doe" --creditor-postalcode 2501 --creditor-city "Biel"
More complete:
$ qrbill --account "CH44 3199 9123 0008 8901 2" --reference-number "210000000003139471430009017" --creditor-name "Robert Schneider AG" --creditor-street "Rue du Lac 1268" --creditor-postalcode "2501" --creditor-city "Biel" --extra-infos "Bill No. 3139 for garden work and disposal of cuttings." --debtor-name "Pia Rutschmann" --debtor-street "Marktgasse 28" --debtor-postalcode "9400" --debtor-city "Rorschach" --due-date "2019-10-31" --language "de"
For usage:
$ qrbill -h
If no –output SVG file path is specified, the SVG file will be named after the account and the current date/time and written in the current directory.
Python usage example
>>> from qrbill.bill import QRBill
>>> my_bill = QRBill(
account='CH5800791123000889012',
creditor={
'name': 'Jane', 'pcode': '1000', 'city': 'Lausanne', 'country': 'CH',
},
amount='22.45',
)
>>> bill.as_svg('/tmp/my_bill.svg')
Outputting as PDF
If you want to produce a PDF version of the resulting bill, we suggest using the svglib <https://pypi.org/project/svglib/> library. It can be used on the command line with the svg2pdf script, or directly from Python:
>>> import tempfile
>>> from qrbill.bill import QRBill
>>> from svglib.svglib import svg2rlg
>>> from reportlab.graphics import renderPDF
>>> my_bill = QRBill(
account='CH5800791123000889012',
creditor={
'name': 'Jane', 'pcode': '1000', 'city': 'Lausanne', 'country': 'CH',
},
amount='22.45',
)
>>> with tempfile.NamedTemporaryFile(mode='w') as temp:
>>> my_bill.as_svg(temp)
>>> temp.seek(0)
>>> drawing = svg2rlg(temp.name)
>>> renderPDF.drawToFile(drawing, "file.pdf")
Running tests
You can run tests either by executing:
$ python tests/test_qrbill.py
or:
$ python setup.py test
ChangeLog
0.5.3 (2021-01-25)
Enforced black as swiss cross background color.
Allowed output with extension other than .svg (warning instead of error).
Split long address lines to fit in available space (#48).
0.5.2 (2020-11-17)
Final creditor is only for future use, it was removed from command line parameters.
Capitalized Helvetica font name in code (#43).
The top line was printed a bit lower to be more visible (#42).
0.5.1 (2020-08-19)
Fix for missing country field in QR code when using CombinedAddress (#31).
Added support for printing bill to full A4 format, using the full_page parameter of QRBill.as_svg() or the CLI argument --full-page.
The vertical separation line between receipt and main part can be omitted through the --no-payment-line CLI argument.
A new --text command line parameter allows for a raw text output.
Support for Alternate procedures lines was added (--alt-procs argument, #40).
0.5 (2020-06-24)
QRBill.as_svg() accepts now file-like objects.
Added support for combined address format.
A top separation line is now printed by default. It can be deactivated through the top_line boolean parameter of QRBill.__init__().
The error correction level of the QR code conforms now to the spec (M).
0.4 (2020-02-24)
Changes were not logged until version 0.4. Development stage was still alpha.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file qrbill-0.5.3.tar.gz.
File metadata
- Download URL: qrbill-0.5.3.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.5.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c39a89d283e7c2ff19952d8f34084ae8b9bfa8fa36a4125497ba167cda814556
|
|
| MD5 |
eaa327d18ad6170edbb959cdad2ec660
|
|
| BLAKE2b-256 |
9cfea45e1fac7d0f5ca48f086925e232c4ab6cd93c7dc033292514e85586f73b
|