A Python 3 Library for Webex Calling Administrators
Project description
wxcadm
Python Library for Webex Calling Administration
Purpose
wxcadm is a Python 3 library to simplify the API calls to Webex in order to manage and report on users of Webex Calling. Although the primary focus is Webex Calling, many of the other Webex admin functions are included. This library is not meant to be an interface to the Meetings and Messaging capabilities of Webex....there are plenty of other modules that provide that.
Installation
wxcadm is available as a PIP Package
$ python -m pip install wxcadm
Quickstart
By creating a Webex instance with a valid API Access Token, the module will pull the Webex Organization information as
well as all the People within the Organization. The Org instance will contain all People, whether they have the
Webex Calling service or not. An Org method get_webex_people()
makes it easy to get only the People that have
Webex Calling.
You can obtain a 12-hour access token by logging into https://developer.webex.com and visiting the Getting Started page.
Once you have the access token, the following will initialize the API connection and pull data
import wxcadm
access_token = "Your API Access Token"
webex = wxcadm.Webex(access_token)
Since most administrators only have access to a single Webex Organization, you can access that Organization with the org attribute. If the administrator has access to more than one Organization, they can be accessed using the orgs attribute, which is a list of the organizations that can be managed. See the "Regarding Multiple Organizations" section below for further information.
You can see all the attributes with
vars(webex.org)
Note that, by default, all the People are pulled when the Org is initialized. For large organizations, this may take a while, but then all the People are stored as Person objects.
To iterate over the list of people, simply loop through the people attribute of the Org. For example:
for person in webex.org.people:
# Print all of the attributes of the Person
print(vars(person))
# Or access the attributes directly
email = person.email
Documentation
wxcadm documentation is housed at Read The Docs.
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
Built Distribution
File details
Details for the file wxcadm-4.3.10.tar.gz
.
File metadata
- Download URL: wxcadm-4.3.10.tar.gz
- Upload date:
- Size: 149.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a04ecf1362f4e024d4a2a4b1051e99c3600041dd8433e4b56d6db873472f8dfd |
|
MD5 | 1aa8c9bd4f9ba40f101f8188cdf5d37b |
|
BLAKE2b-256 | 4c6e4d674bd4f4d2e170d22c9cde867e63768d4168e202054b31b4c02665327c |
File details
Details for the file wxcadm-4.3.10-py3-none-any.whl
.
File metadata
- Download URL: wxcadm-4.3.10-py3-none-any.whl
- Upload date:
- Size: 165.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e52ebc948c54eaa3263e1f68dae9722c56684328122fdb9262c216a4051380a |
|
MD5 | f68733d4173e23f08f8f292104a963d5 |
|
BLAKE2b-256 | 738b4c4a64be840428ae35e14c8728222ac88523029b6fa04c5275bfb441f06c |