Socket
Socket
Sign inDemoInstall

py-ce-forms-api

Package Overview
Dependencies
3
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    py-ce-forms-api

A Python library for the CeForms API.


Maintainers
1

Readme

Py Ce Forms Api

Development

pip install -e .

package building

python3 setup.py sdist bdist_wheel

package publishing

python3 -m twine upload --repository dist/*

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.

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc