Download OFX files from bank, parse them and import them to YNAB
Go to file
Gabriel Augendre 0fa878e88c Remove license marker from pyproject.toml as the classifier should be enough 2022-01-01 22:45:29 +01:00
.github/workflows Test against python 3.8->3.10 2021-11-18 18:36:07 +01:00
ofx_processor Implement sending reconciled balance via sms (free mobile) 2021-12-04 16:42:59 +01:00
tests Add LCL automatic file download 2021-11-20 15:00:43 +01:00
.gitignore Ignore vs code folder 2021-12-04 17:12:06 +01:00
.pre-commit-config.yaml Add development goodies 2021-11-18 19:04:43 +01:00
Dockerfile Add dockerfile 2021-11-20 16:59:12 +01:00
LICENSE Update 'LICENSE' 2022-01-01 22:27:50 +01:00
README.md Improve readme for development 2021-12-04 11:38:09 +01:00
poetry.lock Implement sending reconciled amount 2021-12-04 11:35:26 +01:00
pyproject.toml Remove license marker from pyproject.toml as the classifier should be enough 2022-01-01 22:45:29 +01:00
sonar-project.properties Improve sonar cloud feedback speed 2020-02-29 13:54:51 +01:00
tasks.py Add git tag task 2021-11-20 17:08:46 +01:00

README.md

ofx-processor

PyPI - Python Version PyPI - Format PyPI - Status

Install

python -m pip install ofx-processor

https://pypi.org/project/ofx-processor/

Usage

Usage: ynab [OPTIONS] COMMAND [ARGS]...

  Import your data to YNAB with the processors listed below or manage your
  config.

Options:
  --version   Show the version and exit.
  -h, --help  Show this message and exit.

Commands:
  config   Manage configuration.
  bpvf     Import BPVF bank statement (OFX file).
  ce       Import CE bank statement (OFX file).
  lcl      Import LCL bank statement (OFX file).
  revolut  Import Revolut bank statement (CSV file).

All transactions will be pushed to YNAB. If this is your first time using the script, it will open a generated config file for you to fill up.

The account and budget UUID are found in the YNAB url when using the web app.

The file passed in parameter will be deleted unless specified (--keep option on each import command)

Versions

This project follows Semantic Versioning.

Development

Release

inv full-test
poetry version <major/minor/patch>
git add .
git commit
inv tag <version>
inv publish publish-docker