WebexPythonSDK
WebexPythonSDK copied to clipboard
Work with the Webex APIs in native Python!
This will be one of the changes that will eventually allow Python v3 devs to do a simple refactor (replacing the names and bumping the version) to get and use...
This is legacy code and should be removed.
Hello, first, I hope you don't mind I included your component for [Home Assistant Gentoo Overlay](https://github.com/onkelbeh/HomeAssistantRepository). It uses a dependency on 'dev-python/future', and I now have received a deprecation notice....
When trying to import WebexTeamsAPI from webexteamssdk in python3.11 it raises an exception: ``` from webexteamssdk import WebexTeamsAPI File "/venv/lib/python3.11/site-packages/webexteamssdk/__init__.py", line 40, in from .api import WebexTeamsAPI File "/venv/lib/python3.11/site-packages/webexteamssdk/api/__init__.py", line...
versioneer.py attempts to use `configparser.SafeConfigParser` which has been [deprecated for a long time, and now removed in Python 3.12](https://github.com/python/cpython/blob/v3.11.1/Lib/configparser.py#L1242-L1252), causing build to fail. Upgrading versioneer to a newer version would...
Removal of future library in response to issue : dependency on deprecated 'future' #201
Guest creation via the Guest Issuer application type is now deprecated and will be removed in the future. Use [Service App Guest Management](https://developer.webex.com/docs/sa-guest-management) instead The current implementation of guest issuer...
In recent versions of WebEx teams, there is an [option](https://help.webex.com/en-us/article/njzs6wl/Webex-App-%7C-Let-people-know-you're-busy) for a user to set a "busy" status, which does not mute notifications but does show "busy" as the presence...
----------------------------------- ----------------------------------- ----------------------------------- ``` def respond_to_message(CARD_CONTENT_LIST): """Respond to a message to our bot""" for CARD_CONTENT in CARD_CONTENT_LIST: api.messages.create( target_room_id, text="Change Validation Card", attachments=[{ "contentType": "application/vnd.microsoft.card.adaptive", "content": CARD_CONTENT }], ) return...
I started to work with SDK and read docs on https://webexteamssdk.readthedocs.io/en/latest/user/quickstart.html In Quickstart menu there are many links, first one ([sign-up for one here](https://webexteamssdk.readthedocs.io/en/latest/user/WebexTeams_)) is broken (404) I got all...