Metadata-Version: 1.0
Name: python-esr
Version: 0.2
Summary: Swiss ESR account statement record parser
Home-page: https://bitbucket.org/loss/python-esr
Author: Leuchter Open Source Solutions AG
Author-email: tryton@leuchterag.ch
License: GPL-3
Description: ESR Parser
        ==========
        
        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)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Accounting
Classifier: Topic :: Software Development :: Libraries :: Python Modules
