### Install Formaloo SDK Source: https://github.com/formaloo/formaloo-python/blob/master/README.md Install the formaloo-cdp package using pip. ```bash pip install formaloo-cdp ``` -------------------------------- ### Get Form Statistics Source: https://github.com/formaloo/formaloo-python/blob/master/README.md Import the Form class, create an instance, and call the get_stats method to retrieve statistics for a specific form using its slug. ```python from formaloo.forms import Form form = Form() form.get_stats( url_params=['9mpTfdpR'] ) ``` -------------------------------- ### Export Authentication Keys Source: https://github.com/formaloo/formaloo-python/blob/master/README.md Export your Formaloo client key and secret key as environment variables. Obtain these keys from your Formaloo dashboard. ```bash export FORMALOO_CLIENT_KEY = 'YOUR_FORMALOO_CLIENT_KEY' export FORMALOO_CLIENT_SECRET = 'YOUR_FORMALOO_CLIENT_SECRET' ``` -------------------------------- ### List Available Actions for a Form Source: https://github.com/formaloo/formaloo-python/blob/master/README.md Access the actions_list property of a Form instance to see all available actions for the Form class. ```python print(form.actions_list) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.