webex-bot 0.4.8__tar.gz → 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {webex_bot-0.4.8 → webex_bot-0.5.0}/PKG-INFO +5 -7
- {webex_bot-0.4.8 → webex_bot-0.5.0}/README.md +4 -6
- {webex_bot-0.4.8 → webex_bot-0.5.0}/setup.cfg +1 -1
- {webex_bot-0.4.8 → webex_bot-0.5.0}/setup.py +1 -1
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/__init__.py +1 -1
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot.egg-info/PKG-INFO +5 -7
- {webex_bot-0.4.8 → webex_bot-0.5.0}/CONTRIBUTING.rst +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/LICENSE +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/MANIFEST.in +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/Makefile +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/conf.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/contributing.rst +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/index.rst +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/installation.rst +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/make.bat +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/docs/usage.rst +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/tests/__init__.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/tests/test_webex_bot.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/cards/__init__.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/commands/__init__.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/commands/echo.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/commands/help.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/exceptions.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/formatting.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/models/__init__.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/models/command.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/models/response.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/webex_bot.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/websockets/__init__.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot/websockets/webex_websocket_client.py +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot.egg-info/SOURCES.txt +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot.egg-info/dependency_links.txt +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot.egg-info/not-zip-safe +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot.egg-info/requires.txt +0 -0
- {webex_bot-0.4.8 → webex_bot-0.5.0}/webex_bot.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webex_bot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Python package for a Webex Bot based on websockets.
|
|
5
5
|
Home-page: https://github.com/fbradyirl/webex_bot
|
|
6
6
|
Author: Finbarr Brady
|
|
@@ -349,19 +349,17 @@ and off you go!
|
|
|
349
349
|
|
|
350
350
|
### 0.4.6 (2024-Apr-24)
|
|
351
351
|
|
|
352
|
+
* ❌ Bad release. Please do not use this one as there is a startup issue with it.
|
|
353
|
+
|
|
354
|
+
### 0.5.0 (2024-Apr-25)
|
|
355
|
+
|
|
352
356
|
* Add max backoff time (#55)
|
|
353
357
|
* Attached files. Help, threading and log level overrides. (#54)
|
|
354
358
|
* add stop() call to gracefully exit the bot (#42)
|
|
355
359
|
* feat(20231212): add help image size parameter (#46)
|
|
356
360
|
* update websockets to 11.0.3 (#43)
|
|
357
|
-
|
|
358
|
-
### 0.4.7 (2024-Apr-24)
|
|
359
|
-
|
|
360
361
|
* Fix for help_command syntax issue
|
|
361
362
|
|
|
362
|
-
### 0.4.8 (2024-Apr-25)
|
|
363
|
-
|
|
364
|
-
* Fix for help_command missing commands.
|
|
365
363
|
|
|
366
364
|
[1]: https://github.com/aaugustin/websockets
|
|
367
365
|
|
|
@@ -329,19 +329,17 @@ and off you go!
|
|
|
329
329
|
|
|
330
330
|
### 0.4.6 (2024-Apr-24)
|
|
331
331
|
|
|
332
|
+
* ❌ Bad release. Please do not use this one as there is a startup issue with it.
|
|
333
|
+
|
|
334
|
+
### 0.5.0 (2024-Apr-25)
|
|
335
|
+
|
|
332
336
|
* Add max backoff time (#55)
|
|
333
337
|
* Attached files. Help, threading and log level overrides. (#54)
|
|
334
338
|
* add stop() call to gracefully exit the bot (#42)
|
|
335
339
|
* feat(20231212): add help image size parameter (#46)
|
|
336
340
|
* update websockets to 11.0.3 (#43)
|
|
337
|
-
|
|
338
|
-
### 0.4.7 (2024-Apr-24)
|
|
339
|
-
|
|
340
341
|
* Fix for help_command syntax issue
|
|
341
342
|
|
|
342
|
-
### 0.4.8 (2024-Apr-25)
|
|
343
|
-
|
|
344
|
-
* Fix for help_command missing commands.
|
|
345
343
|
|
|
346
344
|
[1]: https://github.com/aaugustin/websockets
|
|
347
345
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webex-bot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Python package for a Webex Bot based on websockets.
|
|
5
5
|
Home-page: https://github.com/fbradyirl/webex_bot
|
|
6
6
|
Author: Finbarr Brady
|
|
@@ -349,19 +349,17 @@ and off you go!
|
|
|
349
349
|
|
|
350
350
|
### 0.4.6 (2024-Apr-24)
|
|
351
351
|
|
|
352
|
+
* ❌ Bad release. Please do not use this one as there is a startup issue with it.
|
|
353
|
+
|
|
354
|
+
### 0.5.0 (2024-Apr-25)
|
|
355
|
+
|
|
352
356
|
* Add max backoff time (#55)
|
|
353
357
|
* Attached files. Help, threading and log level overrides. (#54)
|
|
354
358
|
* add stop() call to gracefully exit the bot (#42)
|
|
355
359
|
* feat(20231212): add help image size parameter (#46)
|
|
356
360
|
* update websockets to 11.0.3 (#43)
|
|
357
|
-
|
|
358
|
-
### 0.4.7 (2024-Apr-24)
|
|
359
|
-
|
|
360
361
|
* Fix for help_command syntax issue
|
|
361
362
|
|
|
362
|
-
### 0.4.8 (2024-Apr-25)
|
|
363
|
-
|
|
364
|
-
* Fix for help_command missing commands.
|
|
365
363
|
|
|
366
364
|
[1]: https://github.com/aaugustin/websockets
|
|
367
365
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|