WebexPythonSDK icon indicating copy to clipboard operation
WebexPythonSDK copied to clipboard

Work with the Webex APIs in native Python!

Results 63 WebexPythonSDK issues
Sort by recently updated
recently updated
newest added

We can run this code rightly with fixing this bugs of choices. ``` choices_list= [ { "title": "Red", "value": "Red" }, { "title": "Blue", "value": "Blue" }, { "title": "Green",...

Hello, do you have an example to send json text with syntax highlighting ? I tried with : ` text = "```json\n{"key": "value"}\n```" ` or ` markdown "```json\n{"key": "value"}\n```" `...

https://github.com/CiscoDevNet/webexteamssdk/blob/49a0a0d07d8d7c11abdf599396c814455261cc76/webexteamssdk/api/messages.py#L264 attachments -> attachment, AdaptiveCard expects AdaptiveCard, not a List[AdaptiveCard]

bug

I am having two separate but possibly related issues when getting messages. The first issue I'm having is that `api.messages.list(roomId=room.id)` does not download the default of 50 messages, it downloads...

Hi! Thanks for creating this, it helped me out a lot so far. However, I am experiencing an issue when trying to iterate through direct messages between me and another...

I'm not sure this qualifies as a bug but I thought it worth mentioning... A good example of this is the License API where attributes like `siteUrl`, `subscriptionId` may or...

```python spaces = api.rooms.list(sortBy='lastactivity') for space in spaces: do_something(space) ``` While code like the above has previously worked without issue against my account, it now loops endlessly; repeating through spaces...

related to #133 and for debugging\troubleshooting in general, would be nice to include support for passing `verify=False` through to `requests` to make working with a self-signing SSL sniffer (Fiddler or...

enhancement

https://github.com/CiscoDevNet/webexteamssdk/blob/49a0a0d07d8d7c11abdf599396c814455261cc76/webexteamssdk/api/messages.py#L244 https://github.com/CiscoDevNet/webexteamssdk/blob/49a0a0d07d8d7c11abdf599396c814455261cc76/webexteamssdk/api/messages.py#L259-L265 In the attachments processing code, an extra s was added on to attachments on line 264. This checks whether the attachment list is an instance of an AdaptiveCard,...

A project that works fine with pytest starts throwing DeprecationWarnings the moment I add `from webexteamssdk import WebexTeamsAPI` ``` venv/lib/python3.8/site-packages/future-0.18.2-py3.8.egg/future/standard_library/__init__.py:65 /Users/frvge/myproject/venv/lib/python3.8/site-packages/future-0.18.2-py3.8.egg/future/standard_library/__init__.py:65: DeprecationWarning: the imp module is deprecated in favour of...