Metadata-Version: 1.1
Name: mt-940
Version: 2.0
Summary: 
Library to use MT940 files

Home-page: https://github.com/WoLpH/mt940/
Author: Rick van Hattem
Author-email: Wolph@Wol.ph
License: BSD
Description: MT940 library for Python
        ==============================================================================
        
        Introduction
        ------------------------------------------------------------------------------
        
        .. image:: https://travis-ci.org/WoLpH/mt940.png?branch=master
            :alt: Test Status
            :target: https://travis-ci.org/WoLpH/mt940
        
        .. image:: https://landscape.io/github/WoLpH/mt940/master/landscape.png
           :target: https://landscape.io/github/WoLpH/mt940/master
           :alt: Code Health
        
        A library to parse MT940 files and returns smart Python collections for
        statistics and manipulation.
        
        Install
        ------------------------------------------------------------------------------
        
        To install simply run:
        
        ::
               
            pip install mt-940
        
        Example usage
        ------------------------------------------------------------------------------
        
        ::
        
            import mt940
            import pprint
        
            transactions = mt940.parse('tests/jejik/abnamro.sta')
        
            print 'Transactions:'
            print transactions
            pprint.pprint(transactions.data)
        
            print
            for transaction in transactions:
                print 'Transaction: ', transaction
                pprint.pprint(transaction.data)
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
