SDK for Webex APIs with special focus on Webex Calling specific endpoints
Project description
A simple SDK to work with Webex APIs, special focus on Webex Calling specific API endpoints.
This is how easy it is to use the SDK. The example code list all calling enabled users within the org.
from wxc_sdk import WebexSimpleApi
api = WebexSimpleApi()
# if a user is enabled for calling, then the location_id attribute is set
calling_users = [user for user in api.people.list(calling_data=True)
if user.location_id]
print(f'{len(calling_users)} users:')
print('\n'.join(user.display_name for user in calling_users))
Installation
Installing and upgrading wxc_sdk is easy:
Install via PIP
$ pip install wxc-sdk
Upgrade to the latest version
$ pip install wxc-sdk --upgrade
Documentation
Documentation is available at: http://wxc-sdk.readthedocs.io
Examples
Sample scripts are available in the examples folder.
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
wxc_sdk-1.22.1.tar.gz
(469.0 kB
view hashes)
Built Distribution
wxc_sdk-1.22.1-py3-none-any.whl
(564.1 kB
view hashes)