1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Belgian KBC Bank plugin for ofxstatement
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This project provides an `ofxstatement`_ plugin for converting the Belgian KBC
bank's CSV format statements to OFX.
`ofxstatement`_ is a tool to convert proprietary bank statement to OFX format,
suitable for importing to GnuCash. Plugins for ofxstatement parse a
particular proprietary bank statement format and produces common data
structure, that is then formatted into an OFX file.
Users of ofxstatement have developed several plugins for their banks. They are
listed on main `ofxstatement`_ site. If your bank is missing, you can develop
your own plugin.
.. _ofxstatement: https://github.com/kedder/ofxstatement
Installation
============
Either:
#. Download from `pypi <https://pypi.org/project/ofxstatement-be-kbc>`_ and run
:code:`$ python setup.py install`
#. Install using pip: :code:`$ pip install ofxstatement-be-kbc`
#. Arch linux users can install `AUR package ofxstatement-be-kbc
<https://aur.archlinux.org/packages/ofxstatement-be-kbc/>`_
Usage
=====
Basically: :code:`$ ofxstatement convert -t kbcbe input.csv output.ofx`
General usage of ofxstatement:
.. code-block::
$ ofxstatement --help
usage: ofxstatement [-h] [--version] [-d]
{convert,list-plugins,edit-config} ...
Tool to convert proprietary bank statement to OFX format.
optional arguments:
-h, --help show this help message and exit
--version show current version
-d, --debug show debugging information
action:
{convert,list-plugins,edit-config}
convert convert to OFX
list-plugins list available plugins
edit-config open configuration file in default editor
Usage of the convert command:
.. code-block::
$ ofxstatement convert --help
usage: ofxstatement convert [-h] -t TYPE input output
positional arguments:
input input file to process
output output (OFX) file to produce
optional arguments:
-h, --help show this help message and exit
-t TYPE, --type TYPE input file type. This is a section in config file, or
plugin name if you have no config file.
|