Skip to main content

The Zvolv API Platform SDK for Python

Project description

ZvolvClient SDK

Learn how to automate with Zvolv using Python.

Documentation

  • Docs site - explore our docs site and learn more about Zvolv.
  • Examples - explore our examples docs and learn more about using sdk.

Getting started

Installation

You can install the Zvolv Python SDK using the following command.

pip install zvolv-sdk

Requires Python 3.0 or higher.

Usage

Initialize ZvolvClient

Once the package is installed, you can import the library using import or require approach.

Initializes the ZvolvClient with the base url of the Zvolv server:

from zvolv_sdk import ZvolvClient

client = ZvolvClient(BASE_URL)

BASE_URL is the host address on which your Zvolv workspace is deployed, unless you have isolated custom deployment use 'https://app.zvolv.com'.

Initialize Workspace

Before performing any operation, SDK needs your workspace context. Use below method to initialize your workspace

try:
    workspace = client.workspace.init(DOMAIN)
except Error:
    print(Error)

DOMAIN is your unique workspace identifier

Perform Authentication

Zvolv modules are access contolled, you need valid user crendentials to invoke any module methods. Use below method for authentication.

try:
    login = client.auth.login(EMAIL, PASSWORD)
except Error:
    print(Error)

You can use any valid zvolv user's EMAIL & PASSWORD from your workspace

API references

Zvolv comprises various modules to achieve respective business operations. Use below modules & methods to interact with Zvolv APIs.

Forms

Create a Form

from zvolv_sdk.models.form import Form

form = Form(...)
response = client.forms.post(form)

Use Form model with required attributes

Update a Form

from zvolv_sdk.models.form import Form

form = Form(...)
response = client.forms.put(form)

Use Form model with id or uuid & other required attributes

Get a Form

from zvolv_sdk.models.form import Form

response: Form = client.forms.get(ID)

ID is unique form identifier

Submissions

Create a Submission

from zvolv_sdk.models.submission import Submission

submission = Submission(...)
response = client.submissions.post(submission)

Use Submission model with elements to be created

Update a Submission

from zvolv_sdk.models.submission import Submission

submission = Submission(...)
response = client.submissions.put(submission)

Use Submission model with id & elements to be updated

Get a Submission

from zvolv_sdk.models.submission import Submission

response: Submission = client.submissions.get(ID)

ID is unique submission identifier

Search Submissions

from elasticsearch_dsl import Q, Search

search_obj = Search()
bool_query = Q('bool', must=[Q(...)])
search_obj = search_obj.query(bool_query)

response = client.submissions.search(FORM_ID, search_obj)

search method support elastic queries. Generate your query with help of elasticsearch_dsl

Tasks

Create a Task

from zvolv_sdk.models.task import Task

task = Task(...)
response = client.tasks.post(task)

Use Task model with required attributes

Update a Task

from zvolv_sdk.models.task import Task

task = Task(...)
response = client.tasks.put(task)

Use Task model with id & required attributes to be updated

Get a Task

from zvolv_sdk.models.task import Task

response: Task = client.tasks.get(ID)

ID is unique task identifier

Search Tasks

from elasticsearch_dsl import Q, Search

search_obj = Search()
bool_query = Q('bool', must=[Q(...)])
search_obj = search_obj.query(bool_query)

response = client.tasks.search(search_obj)

search method support elastic queries. Generate your query with help of elasticsearch_dsl

Feedback


If you get stuck, we’re here to help. The following are the best ways to get assistance working through your issue:

Use our GitHub Issue Tracker for reporting bugs or requesting features. Visit the Zvolv Community for getting help using Zvolv Developer Kit for Python or just generally bond with your fellow Zvolv developers.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zvolv_sdk-0.0.50.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zvolv_sdk-0.0.50-py3-none-any.whl (28.8 kB view details)

Uploaded Python 3

File details

Details for the file zvolv_sdk-0.0.50.tar.gz.

File metadata

  • Download URL: zvolv_sdk-0.0.50.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for zvolv_sdk-0.0.50.tar.gz
Algorithm Hash digest
SHA256 d6f2efca1bd4768fd6d0ae24db9d36ad99f0b5223b860d0e71b4475272564e0f
MD5 bd7eba0105d236ba07ddfb7e63f41977
BLAKE2b-256 2f4a38fdd8bbb389c5ff843589ba60e1c6c07e06be78ee9549f11e3ca37edde2

See more details on using hashes here.

File details

Details for the file zvolv_sdk-0.0.50-py3-none-any.whl.

File metadata

  • Download URL: zvolv_sdk-0.0.50-py3-none-any.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for zvolv_sdk-0.0.50-py3-none-any.whl
Algorithm Hash digest
SHA256 3fd1f348b47d42956a0bba41fb02a3c0bd4424b6a4c453f20850cbe406ce4872
MD5 49e12572bff2e78fbd610219f4bcb7d3
BLAKE2b-256 d49135e15643aebac11e00ea4f429b2c88e0a34717e150fc28351a9e8a236c60

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page