Releases: Paul-weqe/python_webex_bot
0.901
intro-markdown
- Add feature for markdowns
Enable auth_token in Bot intializer
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
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
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
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
This release gives a denominator for future releases. It contains the essential elements in Cisco Webex, which are: Rooms, Messages, People and Webhooks.