Get statement
Tags: #qonto #bank #statement #naas_drivers #finance #snippet #dataframe
Last update: 2023-04-12 (Created: 2022-02-16)
Description: This notebook provides a convenient way to access and view your Qonto account statements.
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 = "2022-01-01"
# Date to end extraction, format: "AAAA-MM-JJ", example: "2021-01-01", default = now
date_to = None
df_statement = qonto.connect(QONTO_USER_ID, QONTO_SECRET_KEY).statements.get(
date_from=date_from, date_to=date_to
)
df_statement
Last modified 1mo ago