DealTape SDK for Python
Project description
# Recurrent.ai DealTape SDK for Python
概述
DealTape数据推送SDK
安装方式
使用PIP进行安装(以Linux系统为例)
$pip install dealtape
也可以直接安装解压后的安装包
sudo python setup.py install
快速使用
# -*- coding: utf-8 -*-
from dealtape import CallLog, DealTapeClient
from datetime import datetime
business = 'YOUR_BUSINESS_KEY' # 企业的唯一标识,即在企业DealTape系统中的二级域名
client = DealTapeClient(business=business)
item = CallLog(
url="CALLLOG_AUDIO_URL", # 电话录音的url
id="CALLLOG_UNIQUE_IDENTIFIER", # 电话在客户内部系统中的唯一标示
staff_id="STAFF_ID", # 该电话坐席的唯一标示
customer_id="CUSTOMER_ID", # 客户的唯一标示
deal_closed=True/False, # 该电话是否成单
timestamp=TIMESTAMP # 电话的拨打时间(datetime.datetime类型, 或是int类型的unix时间戳)
)
resp = client.push_calllog(item)
if not resp.ok:
print(resp.text)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dealtape-python-sdk-0.0.1.tar.gz
.
File metadata
- Download URL: dealtape-python-sdk-0.0.1.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7259609e87e00e78c12b480eb4a2a5f9dba376e246ebbaa8db7eaf4b49535d18 |
|
MD5 | d5a79f1e5d0600161dbd784116d661d7 |
|
BLAKE2b-256 | 62c22bf3357d07a55219e80e74d69295baf6e9356da7be5e13de32efa2a23ce8 |