Skip to main content

Swiss ESR account statement record parser

Project description

Parser library for Swiss ESR (“Einzahlungsschein mit Referenznummer”) account statement records.

Features

  • Support for type 3 and 4 records (automatically detected)

  • Implements various integrity checks according to record description manual

  • Converts values to int, Decimal, etc.

Getting started

Read data from a ESR file (usually ending with *.v11):

from esr import ESR

with open('esr_file.v11', 'r') as f:
    data = f.read()

statement = ESR.parse(data)

for record in statement.records:
    print(record.amount)
print(statement.total_record.amount)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-esr-0.2.tar.gz (17.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page