Comment on page
Get statement summary by operation type
Tags: #qonto #bank #statement #naas_drivers #finance #snippet #dataframe
Last update: 2023-04-12 (Created: 2022-02-16)
Description: This notebook provides a summary of financial operations by type for Qonto users.
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_summary = qonto.connect(QONTO_USER_ID, QONTO_SECRET_KEY).statements.summary(
summary_type="OPERATION_TYPE", date_from=date_from, date_to=date_to
)
df_summary
Last modified 3mo ago