py-ce-forms-api


Namepy-ce-forms-api JSON
Version 0.1.10 PyPI version JSON
download
home_pageNone
SummaryA Python library for the CeForms API.
upload_time2025-02-13 10:41:02
maintainerNone
docs_urlNone
authorcodeffekt
requires_pythonNone
licenseNone
keywords python ceforms api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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:

```bash
pip install py-ce-forms-api
```

### Usage

Once installed, you can start using the module in your Python code:

```python
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

See *[CeForms SDK for Python](https://py-ce-forms-api.readthedocs.io/en/latest/index.html)*

## Development

 > pip install -e .

### package building

 > python3 setup.py sdist bdist_wheel

### package publishing

 > python3 -m twine upload --repository <repository> dist/*



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "py-ce-forms-api",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "python, ceforms, api",
    "author": "codeffekt",
    "author_email": "contact@codeffekt.com",
    "download_url": "https://files.pythonhosted.org/packages/c5/4c/313d2d7b2b395cfc9390a9ecc5ebcc805f83427bfd7253da5c85088f7d67/py_ce_forms_api-0.1.10.tar.gz",
    "platform": null,
    "description": "# Py Ce Forms Api\n\n## Quickstart\n\n### Introduction\n\nThe `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:\n\n- **CE_FORMS_BASE_URL**: The base URL for the CeForms API.\n- **CE_FORMS_TOKEN**: Your authentication token for accessing the CeForms API.\n \n### Installation\n\nYou can install `py-ce-forms-api` via pip:\n\n```bash\npip install py-ce-forms-api\n```\n\n### Usage\n\nOnce installed, you can start using the module in your Python code:\n\n```python\nfrom py_ce_forms_api import CeFormsClient\n\n# Initialize the client\nce_forms_client = CeFormsClient(base_url=<CE_FORMS_BASE_URL>, token=<CE_FORMS_TOKEN>)\n\n# Example: Retrieve a list of forms\nforms = ce_forms_client.query().with_sub_forms(False).with_limit(10).call()\nfor form in forms:\n    print(form)\n```\n\nReplace <CE_FORMS_BASE_URL> and <CE_FORMS_TOKEN> with your actual base URL and authentication token, respectively.\n\n## SDK Documentation\n\nSee *[CeForms SDK for Python](https://py-ce-forms-api.readthedocs.io/en/latest/index.html)*\n\n## Development\n\n > pip install -e .\n\n### package building\n\n > python3 setup.py sdist bdist_wheel\n\n### package publishing\n\n > python3 -m twine upload --repository <repository> dist/*\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python library for the CeForms API.",
    "version": "0.1.10",
    "project_urls": null,
    "split_keywords": [
        "python",
        " ceforms",
        " api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c54c313d2d7b2b395cfc9390a9ecc5ebcc805f83427bfd7253da5c85088f7d67",
                "md5": "0299b1d7b6815e37b027d2fac4071267",
                "sha256": "e95534261f73573216069ed66c03f064d4249d361b794a371d54929655b6a294"
            },
            "downloads": -1,
            "filename": "py_ce_forms_api-0.1.10.tar.gz",
            "has_sig": false,
            "md5_digest": "0299b1d7b6815e37b027d2fac4071267",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18435,
            "upload_time": "2025-02-13T10:41:02",
            "upload_time_iso_8601": "2025-02-13T10:41:02.502470Z",
            "url": "https://files.pythonhosted.org/packages/c5/4c/313d2d7b2b395cfc9390a9ecc5ebcc805f83427bfd7253da5c85088f7d67/py_ce_forms_api-0.1.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-13 10:41:02",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "py-ce-forms-api"
}
        
Elapsed time: 0.78116s