Welcome Py Ce Forms Api documentation! ====================================== The `py-ce-forms-api` module allows you to interact with the CeForms API for form management. Before getting started, ensure you have obtained the necessary credentials: - **CE_FORMS_BASE_URL**: The base URL for the CeForms API. - **CE_FORMS_TOKEN**: Your authentication token for accessing the CeForms API. Installation ------------ You can install `py-ce-forms-api` via pip:: pip install py-ce-forms-api Usage ----- Once installed, you can start using the module in your Python code: .. code-block:: python from py_ce_forms_api import CeFormsClient # Initialize the client ce_forms_client = CeFormsClient(base_url=, token=) # Example: Retrieve a list of forms forms = ce_forms_client.query().with_sub_forms(False).with_limit(10).call() for form in forms: print(form) Replace and with your actual base URL and authentication token, respectively. .. toctree:: :hidden: :maxdepth: 2 client api query accounts projects forms assets processing processing_client