Zvolv-Python-SDK documentation

Auth0 SDK for Python Release Downloads License
πŸ“š Documentation - πŸš€ Getting started - πŸ’» API reference - πŸ’¬ Feedback

Learn how to automate with Zvolv using Python.

Documentation

  • Docs site - explore our docs site and learn more about Zvolv.

Getting started

Installation

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

pip install zvolv_sdk

Requires Python 3.7 or higher.

Usage

The Zvolv Hyper automation platform offers several APIs to build apps. Each Zvolv API delivers part of the capabilities from the platform, so that you can pick just those that fit for your needs. This SDK offers a corresponding package for each of Zvolv’s APIs.

Sending an email from Zvolv

One of the most simple use-cases is sending an email from Zvolv. In our examples, we specify the channel name, however it is recommended to use the channel_id where possible. Also, if your app’s bot user is not in a channel yet, invite the bot user before running the code snippet (or add chat:write.public to Bot Token Scopes for posting in any public channels).

import os
from zvolv_sdk import WebClient
from zvolv_sdk.errors import ZvolvApiError

client = WebClient(token=os.environ['ZVOLV_BOT_TOKEN'])

try:
    response = client.chat_postMessage(channel='#random', text="Hello world!")
    assert response["message"]["text"] == "Hello world!"
except SlackApiError as e:
    # You will get a ZvolvApiError if "ok" is False
    assert e.response["ok"] is False
    assert e.response["error"]  # str like 'invalid_auth', 'channel_not_found'
    print(f"Got an error: {e.response['error']}")

Here we also ensure that the response back from Zvolv is a successful one and that the message is the one we sent by using the assert statement.

Authentication Endpoints

  • Database ( authentication.Database )

  • Delegated ( authentication.Delegated )

  • Enterprise ( authentication.Enterprise )

  • API Authorization - Get Token ( authentication.GetToken)

  • Passwordless ( authentication.Passwordless )

  • RevokeToken ( authentication.RevokeToken )

  • Social ( authentication.Social )

  • Users ( authentication.Users )

Management Endpoints

  • Actions() (Zvolv().action)

  • AttackProtection() (Zvolv().attack_protection)

  • Blacklists() ( Zvolv().blacklists )

  • Branding() ( Zvolv().branding )

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 Slack Developer Kit for Python or just generally bond with your fellow Zvolv developers.