Metadata-Version: 1.2
Name: beancount-ing-diba
Version: 0.1.2
Summary: Beancount Importer for ING-DiBa CSV exports
Home-page: https://github.com/siddhantgoel/beancount-ing-diba
Author: Siddhant Goel
Author-email: me@sgoel.org
License: MIT
Description: Beancount ING-DiBa Importer
        ===========================
        
        .. image:: https://img.shields.io/pypi/v/beancount-ing-diba.svg
            :target: https://pypi.python.org/pypi/beancount-ing-diba
        
        .. image:: https://travis-ci.org/siddhantgoel/beancount-ing-diba.svg?branch=stable
            :target: https://travis-ci.org/siddhantgoel/beancount-ing-diba
        
        :code:`beancount-ing-diba` provides an Importer for converting CSV exports of
        `ING-DiBa`_ account summaries to the Beancount_ format.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install beancount-ing-diba
        
        In case you prefer installing from the Github repository, please note that
        :code:`master` is the development branch so :code:`stable` is what you should be
        installing from.
        
        Usage
        -----
        
        .. code-block:: python
        
            from beancount_ing_diba import ECImporter
        
            CONFIG = [
                # ...
        
                ECImporter(
                    IBAN_NUMBER, 'Assets:INGDiBa:EC', 'Max Mustermann',
                    numeric_locale='de_DE.UTF-8', file_encoding='ISO-8859-1'
                ),
        
                # ...
            ]
        
        .. _ING-DiBa: https://www.ing-diba.de/
        .. _Beancount: http://furius.ca/beancount/
        
Keywords: beancount,cli-accounting,finance
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.5.0
