Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

finbox-in/bank-connect-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FinBox BankConnect Python Library

NOTE: This package is no longer maintained

Installation

To use the package install using pip / pip3:

pip3 install finbox_bankconnect

Quick Start

Sample code to upload a statement pdf and extract transactions from it

import finbox_bankconnect as fbc

# set API Key
fbc.api_key = "YOUR_API_KEY"

# create an entity object
entity = fbc.Entity.create()

# upload a statement pdf
entity.upload_statement('path_to_file.pdf')

# fetch transactions for the entity
transactions = entity.get_transactions()

# printing the transaction objects by iterating using the transaction iterator
for transaction in transactions:
  print(transaction)

Requirements

Python 3.4+

License

Licensed under the MIT license, see LICENSE