Comment on page
Get transactions
Tags: #qonto #bank #transactions #naas_drivers #finance #snippet #dataframe
Last update: 2023-04-12 (Created: 2022-02-16)
Description: Qonto's notebook allows you to easily access and manage your transactions.
from naas_drivers import qonto
QONTO_USER_ID = "YOUR_USER_ID"
QONTO_SECRET_KEY = "YOUR_SECRET_KEY"
# Date to start extraction, format: "AAAA-MM-JJ", example: "2021-01-01"
date_from = None
# Date to end extraction, format: "AAAA-MM-JJ", example: "2021-01-01", default = now
date_to = None
df_transactions = qonto.connect(QONTO_USER_ID, QONTO_SECRET_KEY).transactions.get(
date_from=date_from, date_to=date_to
)
df_transactions
Last modified 3mo ago