=======
wxc_sdk
=======
A simple SDK to work with `Webex APIs <https://developer.webex.com>`_, 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.
.. code-block:: Python
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**
.. code-block:: bash
$ pip install wxc-sdk
**Upgrade to the latest version**
.. code-block:: bash
$ pip install wxc-sdk --upgrade
Documentation
-------------
Documentation is available at:
http://wxc-sdk.readthedocs.io
Examples
--------
Sample scripts are available in the examples_ folder.
.. _examples: https://github.com/jeokrohn/wxc_sdk/tree/master/examples
Raw data
{
"_id": null,
"home_page": "https://github.com/jeokrohn/wxc_sdk",
"name": "wxc_sdk",
"maintainer": "Johannes Krohn",
"docs_url": null,
"requires_python": "<4.0,>=3.9",
"maintainer_email": "jkrohn@cisco.com",
"keywords": "Webex, Webex Calling, Webex Teams, Webex Meetings, Webex Devices, Webex Control Hub, Webex Admin, Webex Site Admin, Webex Site, Webex Site Devices, Python, API, SDK",
"author": "Johannes Krohn",
"author_email": "jkrohn@cisco.com",
"download_url": "https://files.pythonhosted.org/packages/ed/11/7d3c886dc4bc8d75720f5bbb1e2cead0b6d14aaa69c6a7fba850c36ffa3c/wxc_sdk-1.23.0.tar.gz",
"platform": null,
"description": "=======\nwxc_sdk\n=======\n\nA simple SDK to work with `Webex APIs <https://developer.webex.com>`_, special focus on Webex Calling specific API\nendpoints.\n\n----------------------------------------------\n\nThis is how easy it is to use the SDK. The example code list all calling enabled users within the org.\n\n.. code-block:: Python\n\n from wxc_sdk import WebexSimpleApi\n\n api = WebexSimpleApi()\n\n # if a user is enabled for calling, then the location_id attribute is set\n calling_users = [user for user in api.people.list(calling_data=True)\n if user.location_id]\n print(f'{len(calling_users)} users:')\n print('\\n'.join(user.display_name for user in calling_users))\n\n\nInstallation\n------------\n\nInstalling and upgrading wxc_sdk is easy:\n\n**Install via PIP**\n\n.. code-block:: bash\n\n $ pip install wxc-sdk\n\n**Upgrade to the latest version**\n\n.. code-block:: bash\n\n $ pip install wxc-sdk --upgrade\n\nDocumentation\n-------------\n\nDocumentation is available at:\nhttp://wxc-sdk.readthedocs.io\n\nExamples\n--------\n\nSample scripts are available in the examples_ folder.\n\n.. _examples: https://github.com/jeokrohn/wxc_sdk/tree/master/examples\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "SDK for Webex APIs with special focus on Webex Calling specific endpoints",
"version": "1.23.0",
"project_urls": {
"Documentation": "https://wxc-sdk.readthedocs.io",
"Homepage": "https://github.com/jeokrohn/wxc_sdk"
},
"split_keywords": [
"webex",
" webex calling",
" webex teams",
" webex meetings",
" webex devices",
" webex control hub",
" webex admin",
" webex site admin",
" webex site",
" webex site devices",
" python",
" api",
" sdk"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ac8e236c0d68ee18f0a11209415f641ea35ad2e2a7d35b65f5617ff271a5e677",
"md5": "a25b6aae5c699779a1d2411d71c542d6",
"sha256": "e53d1f2f57c9b140433a098d0c3ed01b723ced74faa16bff40fc53e1d09abe5c"
},
"downloads": -1,
"filename": "wxc_sdk-1.23.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a25b6aae5c699779a1d2411d71c542d6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.9",
"size": 590897,
"upload_time": "2024-11-25T15:08:16",
"upload_time_iso_8601": "2024-11-25T15:08:16.029463Z",
"url": "https://files.pythonhosted.org/packages/ac/8e/236c0d68ee18f0a11209415f641ea35ad2e2a7d35b65f5617ff271a5e677/wxc_sdk-1.23.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed117d3c886dc4bc8d75720f5bbb1e2cead0b6d14aaa69c6a7fba850c36ffa3c",
"md5": "c583db338deb437d98da688739a2b4ad",
"sha256": "ac5bd9b025584bd9fab6f909e75898dac0aa61cc909a76f166c17f9b59ec4a87"
},
"downloads": -1,
"filename": "wxc_sdk-1.23.0.tar.gz",
"has_sig": false,
"md5_digest": "c583db338deb437d98da688739a2b4ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.9",
"size": 491253,
"upload_time": "2024-11-25T15:08:17",
"upload_time_iso_8601": "2024-11-25T15:08:17.451855Z",
"url": "https://files.pythonhosted.org/packages/ed/11/7d3c886dc4bc8d75720f5bbb1e2cead0b6d14aaa69c6a7fba850c36ffa3c/wxc_sdk-1.23.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-25 15:08:17",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jeokrohn",
"github_project": "wxc_sdk",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "wxc_sdk"
}