Metadata-Version: 2.1
Name: ofxstatement-revolut
Version: 1.3.1
Summary: Bank statement parser for Revolut
Home-page: https://github.com/mlaitinen/ofxstatement-revolut
Author: Miku Laitinen
Author-email: miku@avoin.systems
License: GPLv3
Description: # ofxstatement-revolut
        
        [![Build Status](https://travis-ci.com/mlaitinen/ofxstatement-revolut.svg?branch=master)](https://travis-ci.com/mlaitinen/ofxstatement-revolut)
        
        This is a plugin for use with [ofxstatement](https://github.com/kedder/ofxstatement) package. It implements
        a parser for the Revolut CSV-formatted bank statement.
        
        The CSV isn't very machine readable, so we need to do some ugly string
        parsing to figure out the different field values.
        
        Issue reports and pull requests welcome.
        
        This module is based on the Osuuspankki ofxstatement parser found at
        https://github.com/koodaamo/banking.statements.osuuspankki
        
        ## Installation
        
        ### From PyPI repositories
        ```
        pip3 install ofxstatement-revolut
        ```
        
        ### From source
        ```
        git clone https://github.com/mlaitinen/ofxstatement-revolut.git
        python3 setup.py install
        ```
        
        ## Configuration options
        
        | Option        | Description                                                                                                                                    |
        |---------------|------------------------------------------------------------------------------------------------------------------------------------------------|
        | `account`     | Define the account of this bank statement                                                                                                      |
        | `currency`    | The base currency of the account                                                                                                               |
        | `date_format` | The date format in the bank statement. Note that you have to use double `%`-marks in the settings file like this: `date_format = %%b %%d, %%Y` |
        
        
        1.3.0
        -----
        
        - Date format is now configurable in the settings
        - "Payment from " is now also counted as a deposit
        
        1.2.0
        -----
        
        - Support May 2018 CSV format
        
        1.1.0
        -----
        
        - Support April 2018 CSV format
        
        1.0.0
        -----
        
        - First release
        
Keywords: ofx,ofxstatement,banking,statement,revolut
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: Topic :: Office/Business :: Financial :: Accounting
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
Provides-Extra: test
