Skip to content

Releases: Paul-weqe/python_webex_bot

0.901

07 Nov 08:06
Compare
Choose a tag to compare

Fix the new Webex URL

intro-markdown

02 Aug 15:41
Compare
Choose a tag to compare
  • Add feature for markdowns

Enable auth_token in Bot intializer

14 Jun 14:12
3a6e131
Compare
Choose a tag to compare
Pre-release

Previously
Users were forced to enter the auth_token environment variable so as to enable the authentication of the Bot in use.

Currently
The users of the library can add the auth_token in the Bot initializer: Bot(auth_token='auth-token-123')

Release 0.81 - Message Information

25 May 20:18
4442937
Compare
Choose a tag to compare

With this release we allow users to get more information about the particular message they receive. We can do this by:

@bot.on_hears("hi")
def respond_to_hi(room_id=None, message_info=None):
    print(message_info)
    return bot.send_message(room_id=room_id, text="Hi there too budy")

NOTE The message_info=None parameter is not required in normal calls but is mandatory if we are to collect metadata about the message.

Brought about by the following issue #9

Version 8.1

0.75 - Multiple Cards

22 Apr 21:47
Compare
Choose a tag to compare

Release 0.75 of the python_webex_bot deals with allowing multiple cards to be sent in a single webex message via a bot.

Release 0.71

27 Feb 08:22
Compare
Choose a tag to compare

This release mainly deals with introducing the Cards and Buttons Feature. It allows for the bots created to send messages that are attached with a card (which can have a form) and also await for the response.

Release after previous before 0.5 being tests

05 Apr 04:12
226e167
Compare
Choose a tag to compare

This release gives a denominator for future releases. It contains the essential elements in Cisco Webex, which are: Rooms, Messages, People and Webhooks.