A Python package to interact with Nordigen API for bank account management.
Project description
Nordigen Account
A Python package to interact with the Nordigen Bank Account API, allowing users to retrieve and manage bank account details and balances.
Features
- Secure connection to the Nordigen API using
secret_idandsecret_key. - Retrieve bank account details such as name, status, and currency.
- Fetch account balances, including multiple balance types and currencies.
- Manage multiple linked accounts via the
BankAccountManagerclass. - Automatic retrieval of new refresh token when expired.
- Unified error handling using a custom
NordigenAPIErrorexception.
Installation
Ensure Python 3.7+ is installed. To install the package, use:
pip install nordigen
Generating Credentials
To use this package, you need to obtain credentials from Nordigen, which include:
secret_idsecret_keyrefresh_tokenrequisition_id
Follow these steps to generate the credentials:
- Go to the Nordigen Bank Account Data API portal:
https://developer.gocardless.com/bank-account-data/overview - Sign up for an account and log in.
- Navigate to the API Keys section to generate your
secret_idandsecret_key. - Follow the API documentation steps to create a requisition and obtain a
requisition_id.
Therefresh_tokenis retrieved when you generate an access token via the API.
Once you have obtained these credentials, you can use them to connect to the API and fetch your bank account details.
The refresh_token will expire every 30 days and the requisition_id every 90 days and must be refreshed.
Usage
1. Instantiate the Nordigen Client
Use the create_nordigen_client function to instantiate the Nordigen client with the required credentials.
You can pass an optional refresh token, but if not provided, the function will attempt to generate a new one using the
provided secret_id and secret_key.
from nordigen_account import create_nordigen_client
# Replace with your actual credentials
secret_id = "your-secret-id"
secret_key = "your-secret-key"
refresh_token = "your-refresh-token" # Optional
client, new_refresh_token = create_nordigen_client(secret_id, secret_key, refresh_token)
If your refresh token has expired, the function will automatically generate a new one.
The function will return a tuple containing the client instance and a new refresh_token if generated, or None if
the existing token is still valid.
Handling refresh tokens:
If a new refresh_token is generated, make sure to update your stored credentials for subsequent API requests.
client, new_refresh_token = create_nordigen_client(secret_id, secret_key, refresh_token)
if new_refresh_token:
print("New refresh token generated:", new_refresh_token)
# Store the new token securely for future API requests
2. Manage Multiple Accounts
The BankAccountManager class manages multiple bank accounts linked to a requisition ID.
When you instantiate BankAccountManager, it automatically initializes instances of the BankAccount class for each
linked account.
from nordigen_account import BankAccountManager
requisition_id = "your-requisition-id"
# Instantiate account manager
manager = BankAccountManager(client, requisition_id, fetch_data=True)
# Access account details
for account in manager.accounts:
print("Account ID:", account._account_id)
print("Balances:", account.balances)
By default BankAccount data is not collected when you initialize BankAccountManager. To optionally collect account
data, set the fetch_data flag to True.
3. Data Properties
Two data sets are currently supported:
- Account details
- currency
- status
- name
- Account balances data
- balanceType
- currency
- amount
To access / refresh each data set use the following commands:
for account in manager.accounts:
account.update_account_data()
account.update_balance_data()
4. Error handling
All errors related to the Nordigen API or account management are raised as a NordigenAPIError. This exception provides:
- A descriptive error message.
- The HTTP status code (if available).
- The API response body for debugging.
Example:
from nordigen_account import NordigenAPIError
try:
account.update_balance_data()
except NordigenAPIError as e:
print(f"Error: {e.message}")
if e.status_code:
print(f"HTTP Status Code: {e.status_code}")
if e.response_body:
print(f"Response Body: {e.response_body}")
This unified error handling makes it easier to debug issues and ensures consistent error reporting throughout the library.
Project Structure
nordigen_account/
|-- nordigen_account/
| |-- __init__.py # Core functionality and class definitions
|-- setup.py # Package configuration for distribution
|-- requirements.txt # Dependencies
|-- LICENSE # License information
|-- README.md # Project documentation
|-- MANIFEST.in # Package manifest
Dependencies
The package requires the following dependency:
nordigen– Python client for Nordigen API.
The dependency is listed in the requirements.txt file.
Setup for Development
To set up the project locally:
-
Clone the repository:
git clone https://github.com/rahulpdev/nordigen_account.git cd nordigen_account
-
Install dependencies:
pip install -r requirements.txt
-
Run tests or explore the package functionality.
Contributing
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new feature branch.
- Commit your changes.
- Push the branch and open a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Author
Rahul Parmar
GitHub Profile
For more details on the Nordigen API, visit their official documentation.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nordigen_account-0.3.0.tar.gz.
File metadata
- Download URL: nordigen_account-0.3.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baf26ede0e651dd3a6af75b33a90b47aab3e06d85556801a0088b8c23ca41d60
|
|
| MD5 |
70904dfe8cfacd547758896a51755fd6
|
|
| BLAKE2b-256 |
c8c602b7f4992fa6aa7dbd645a44ac75739e02e0087eaca39e96b175e3cb1aa1
|
File details
Details for the file nordigen_account-0.3.0-py3-none-any.whl.
File metadata
- Download URL: nordigen_account-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c32d8840092847ca2ac6219e00e218c6746d5757407f17cd5abdf98ce53faa0
|
|
| MD5 |
627b04528e07619f717c3f97af5b7ab7
|
|
| BLAKE2b-256 |
ac6599e359ec2eb2db8be508dd29a75bc7911b1ba1aaf395868d0aca0d3a244c
|