Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.01 KB

README.md

File metadata and controls

47 lines (29 loc) · 1.01 KB

Python Module for managing financier

DISCLAIMER: not a official API from financier

That module allows you insert transactions and payee on financier.

Install

$ pip install python-financier

USAGE

from pythonfinancier.financier import Financier

f = Financier('https://app.financier.io/db/', EMAIL, PASSWORD)

f.connect_budget('Personal')

f.save_transaction('nubank', '1031b19e-a165-4aea-afd1-gggg4b2a00000', 400, '2017-10-10', 'Carrefour', 'teste memo') #acount, id, value, date, payee, memo

Notes:

  • If payee doesn't exists, it will create a new one.
  • That script will use the suggest_category on payee, so will automatically import transactions using the previously category set for thath payee

FINDING ALL BUDGETS AVAILABLE

from pythonfinancier.financier import Financier

f = Financier('https://app.financier.io/db/', EMAIL, PASSWORD)

print(f.get_all_budgets())

ENJOY!!