Metadata-Version: 1.1
Name: mt-940
Version: 1.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/django-statsd/master/landscape.png
           :target: https://landscape.io/github/WoLpH/django-statsd/master
           :alt: Code Health
        
        .. image:: https://requires.io/github/WoLpH/mt940/requirements.png?branch=master
           :target: https://requires.io/github/WoLpH/mt940/requirements/?branch=master
           :alt: Requirements Status
        
        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
            with open('your_mt940_file.sta') as fh:
                transactions = mt940.parse(fh)
                for transaction in transactions:
                    print 'transaction', transaction
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
