Metadata-Version: 1.1
Name: beancount-dkb
Version: 0.1.0
Summary: Beancount Importer for DKB CSV exports
Home-page: https://github.com/siddhantgoel/beancount-dkb
Author: Siddhant Goel
Author-email: siddhantgoel@gmail.com
License: MIT
Description: Beancount DKB Importer
        ======================
        
        .. image:: https://badge.fury.io/py/beancount-dkb.svg
            :target: https://pypi.python.org/pypi/beancount-dkb
        
        .. image:: https://travis-ci.org/siddhantgoel/beancount-dkb.svg?branch=master
            :target: https://travis-ci.org/siddhantgoel/beancount-dkb
        
        :code:`beancount-dkb` provides an Importer for converting CSV exports of
        DKB_ (Deutsche Kredit Bank) account summaries to the Beancount_ format.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install beancount-dkb
        
        Usage
        -----
        
        .. code-block:: python
        
            from beancount_dkb import ECImporter
        
            CONFIG = [
                ECImporter(
                    IBAN_NUMBER, 'Assets:DKB:EC', currency='EUR',
                    ignore_tagessaldo=True, numeric_locale='de_DE.UTF-8',
                    file_encoding='utf-8'
                )
            ]
        
        .. _Beancount: http://furius.ca/beancount/
        .. _DKB: https://www.dkb.de/
        
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
