Skip to content

higoramp/python-financier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


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!!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages