webex-bot 0.4.7__tar.gz → 0.4.8__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.
Files changed (35) hide show
  1. {webex_bot-0.4.7 → webex_bot-0.4.8}/PKG-INFO +5 -1
  2. {webex_bot-0.4.7 → webex_bot-0.4.8}/README.md +4 -0
  3. {webex_bot-0.4.7 → webex_bot-0.4.8}/setup.cfg +1 -1
  4. {webex_bot-0.4.7 → webex_bot-0.4.8}/setup.py +1 -1
  5. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/__init__.py +1 -1
  6. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/webex_bot.py +2 -0
  7. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot.egg-info/PKG-INFO +5 -1
  8. {webex_bot-0.4.7 → webex_bot-0.4.8}/CONTRIBUTING.rst +0 -0
  9. {webex_bot-0.4.7 → webex_bot-0.4.8}/LICENSE +0 -0
  10. {webex_bot-0.4.7 → webex_bot-0.4.8}/MANIFEST.in +0 -0
  11. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/Makefile +0 -0
  12. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/conf.py +0 -0
  13. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/contributing.rst +0 -0
  14. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/index.rst +0 -0
  15. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/installation.rst +0 -0
  16. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/make.bat +0 -0
  17. {webex_bot-0.4.7 → webex_bot-0.4.8}/docs/usage.rst +0 -0
  18. {webex_bot-0.4.7 → webex_bot-0.4.8}/tests/__init__.py +0 -0
  19. {webex_bot-0.4.7 → webex_bot-0.4.8}/tests/test_webex_bot.py +0 -0
  20. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/cards/__init__.py +0 -0
  21. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/commands/__init__.py +0 -0
  22. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/commands/echo.py +0 -0
  23. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/commands/help.py +0 -0
  24. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/exceptions.py +0 -0
  25. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/formatting.py +0 -0
  26. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/models/__init__.py +0 -0
  27. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/models/command.py +0 -0
  28. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/models/response.py +0 -0
  29. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/websockets/__init__.py +0 -0
  30. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot/websockets/webex_websocket_client.py +0 -0
  31. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot.egg-info/SOURCES.txt +0 -0
  32. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot.egg-info/dependency_links.txt +0 -0
  33. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot.egg-info/not-zip-safe +0 -0
  34. {webex_bot-0.4.7 → webex_bot-0.4.8}/webex_bot.egg-info/requires.txt +0 -0
  35. {webex_bot-0.4.7 → webex_bot-0.4.8}/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.4.7
3
+ Version: 0.4.8
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
@@ -359,6 +359,10 @@ and off you go!
359
359
 
360
360
  * Fix for help_command syntax issue
361
361
 
362
+ ### 0.4.8 (2024-Apr-25)
363
+
364
+ * Fix for help_command missing commands.
365
+
362
366
  [1]: https://github.com/aaugustin/websockets
363
367
 
364
368
  [2]: https://github.com/CiscoDevNet/webexteamssdk
@@ -339,6 +339,10 @@ and off you go!
339
339
 
340
340
  * Fix for help_command syntax issue
341
341
 
342
+ ### 0.4.8 (2024-Apr-25)
343
+
344
+ * Fix for help_command missing commands.
345
+
342
346
  [1]: https://github.com/aaugustin/websockets
343
347
 
344
348
  [2]: https://github.com/CiscoDevNet/webexteamssdk
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.4.7
2
+ current_version = 0.4.8
3
3
  commit = True
4
4
  tag = True
5
5
 
@@ -38,6 +38,6 @@ setup(
38
38
  test_suite='tests',
39
39
  tests_require=test_requirements,
40
40
  url='https://github.com/fbradyirl/webex_bot',
41
- version='0.4.7',
41
+ version='0.4.8',
42
42
  zip_safe=False,
43
43
  )
@@ -1,4 +1,4 @@
1
1
  """Top-level package for Webex Bot."""
2
2
 
3
3
  __author__ = """Finbarr Brady"""
4
- __version__ = '0.4.7'
4
+ __version__ = '0.4.8'
@@ -79,6 +79,8 @@ class WebexBot(WebexWebsocketClient):
79
79
  if include_demo_commands:
80
80
  self.add_command(EchoCommand())
81
81
 
82
+ self.help_command.commands = self.commands
83
+
82
84
  self.card_callback_commands = {}
83
85
  self.approved_users = approved_users
84
86
  self.approved_domains = approved_domains
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webex-bot
3
- Version: 0.4.7
3
+ Version: 0.4.8
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
@@ -359,6 +359,10 @@ and off you go!
359
359
 
360
360
  * Fix for help_command syntax issue
361
361
 
362
+ ### 0.4.8 (2024-Apr-25)
363
+
364
+ * Fix for help_command missing commands.
365
+
362
366
  [1]: https://github.com/aaugustin/websockets
363
367
 
364
368
  [2]: https://github.com/CiscoDevNet/webexteamssdk
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