A Python library for the CeForms API.
Project description
Py Ce Forms Api
Quickstart
Introduction
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:
from py_ce_forms_api import CeFormsClient
# Initialize the client
ce_forms_client = CeFormsClient(base_url=<CE_FORMS_BASE_URL>, token=<CE_FORMS_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 <CE_FORMS_BASE_URL> and <CE_FORMS_TOKEN> with your actual base URL and authentication token, respectively.
SDK Documentation
Development
pip install -e .
package building
python3 setup.py sdist bdist_wheel
package publishing
python3 -m twine upload --repository dist/*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py_ce_forms_api-0.1.17.tar.gz
(22.4 kB
view details)
File details
Details for the file py_ce_forms_api-0.1.17.tar.gz.
File metadata
- Download URL: py_ce_forms_api-0.1.17.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eb4d26b71234e58c41b5091810d635dabbe3d79ce89325a260e7bb900e49aaa
|
|
| MD5 |
df47ea540801a52b8b7fe9ac660f07b9
|
|
| BLAKE2b-256 |
3c39defa73794fa2267ab1ebb626e2928dece3bc4ba5021e47eb8d33b7ac1382
|