A Simple SDK for Joker's Voice API.
Project description
JokerSDK
JokerSDK is a flexible and user-friendly Python library wrapping around Joker's Voice API.
Key Features
- Creating outbound voice calls.
- Playing audio/text into live calls.
- Gathering DTMF with audio/text from live calls.
- Transferring recipients from Leg A to Leg B.
- Sending DTMF into a live call.
Requirements
- Python >= 3.10
Guide - How to install JokerSDK
JokerSDK via PyPi:
$ pip install JokerSDK
Or, if you wish to download it directly from this repository:
$ python setup.py install
JokerSDK - Usage
Create an outbound call
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "API_KEY", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
Object attributes
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "API_KEY", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
callSid = call.sid # Access the SID of the call.
retrieved = call.__retrieve__ # Boolean to check if the call has been retrieved or not.
staticStatus = call._sid # A static status indicating if the call has been terminated. This is inferred and does not reflect the actual state of the call.
Play audio into a call.
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "API_KEY", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
call.play_audio(
audioUrl = "https://my.cdnserver.xyz/JokerSDK/audio.wav" # A web server which holds the audio file to play.
)
Play text into a call.
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "API_KEY", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
call.play_text(
text = "This is an example phrase of in what will be presented into a live call/channel", # A phrase which JokerAPI will synthesise.
voice = "ai3-en-US-Madison" # The voice name of in which JokerAPI will synthesise with.
)
Gathering DTMF whilst playing Audio
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "<API_KEY>", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
call.gather_dtmf_with_audio(
audioUrl = "https://my.cdnserver.xyz/JokerSDK/audio.wav", # A web server which holds the audio file to play.
maxDigits = 5 # The amount of digits which will be captured before calling back.
)
Gathering DTMF whilst playing Text
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "<API_KEY>", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
call.gather_dtmf_with_text(
text = "This is an example phrase of in what will be presented into a live call/channel", # A phrase which JokerAPI will synthesise.
voice = "ai3-en-US-Madison", # The voice name of in which JokerAPI will synthesise with.
maxDigits = 5 # The amount of digits which will be captured before calling back.
)
Send DTMF tones
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "<API_KEY>", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
call.send_dtmf(
input_ = "1234" # Digits to Send DTMF tones to Leg B(to) from.
)
Finally, hang up the call.
import JokerAPI
call = JokerAPI.client.create_outbound_call(
apiKey = "<API_KEY>", # Your API Key, this can be found on site.
to = "1234567890", # The number to call.
from_ = "1987654321", # The number to call `to` from.
callbackUrl = "https://my.callbackserver.xyz/JokerSDK/callbacks" # A web server to send all callbacks to.
)
Contributing
- Feel free to contribute by opening issues or sending pull requests.
License
This project is licensed under the GPL-3.0 license - see the LICENSE file for details.
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
JokerSDK-0.0.39.tar.gz
(5.1 kB
view hashes)
Built Distribution
Close
Hashes for JokerSDK-0.0.39-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b96178f8d2530e4a258175c4fa7643b3c349c4048a1104fc1ab81a661838b3ec |
|
MD5 | 03bbfffc4c5c877618e2dc6cd3721b5c |
|
BLAKE2b-256 | 64bae3098ce50d6c7f5efdcd5d8b0c88fd84146540bdb6facdbc4b995980de39 |