DaoVoice Open API Python Sdk
Project description
Installation
pip install daovoice-sdk
Basic Usage
from daovoice.client import Client
daovoice_client = Client(token="Your Token Here")
Note that you can find your token in http://dashboard.daovoice.io/app/{app_id}/apps/settings/open-api
Resources
Resources this API supports:
https://api.daovoice.io/v1/conversations
Examples
Conversations
# Get Conversation by id
conversation = daovoice_client.conversations.get(id="conversation_id")
print conversation.conversation_parts
print conversation.conversation_message
# Reply
daovoice_client.conversations.reply(id="conversation_id",admin_id="***",body="reply msg")
Admins
# list admins
admins = daovoice_client.admins.all()
for ad in admins:
print ad.name
User
# create user
user = daovoice_client.user.create(user_id="123456",name="example", email="example@daovoice.io")
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
daovoice-sdk-0.0.8.tar.gz
(5.1 kB
view details)
File details
Details for the file daovoice-sdk-0.0.8.tar.gz
.
File metadata
- Download URL: daovoice-sdk-0.0.8.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e36a8e9ebc8201d592a8ff100a2ff280d2b41d8ba2f841846791e21eff816985 |
|
MD5 | b9f2c06dec77368c787888156f55b8f2 |
|
BLAKE2b-256 | f63326232aafdd2766ad9d2b829c683930005074455b5457cb90c05597511ae0 |