0.01
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Converts simple bank csv to ynab csv
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.7.0
~> 3.0
 Project Readme

Simple-Ynab

A simple ruby script to convert the csv provided by simple.com to something that ynab can understand

Supported Os's

  • Mac OSX
  • Linux

Installation

$ gem install simple-ynab

Usage

Convert entire CSV file

$ simple-ynab ~/Downloads/foo.csv

Convert and save only last 30 days of transactions

$ simple-ynab -d 30 ~/Downloads/foo.csv

View detailed debugging information

$ simple-ynab -v ~/Downloads/foo.csv

Include pending transactions

$ simple-ynab -p ~/Downloads/foo.csv

Convert and use YNAB date format (See known issues below)

$ simple-ynab -y ~/Downloads/foo.csv

or for more options:

$ simple-ynab --help

A csv file will then be created in the same directory with the following name

~/Downloads/foo.simple.csv

Export CSV from Simple.com


Import into YNAB

Known issues

Duplicate Transactions when using-y or --ynab_date

YNAB has a bug where if you previously import transactions containing the date in one syntax, and then import a csv with a different date syntax, YNAB will consider them as different transactions. (Even if they are identical in every other way)

Workaround:

Open the CSV file and change the dates to match the format that your bank normally uses (e.g YYYY/MM/DD), or don't use the -y option