python message from teams

Solutions on MaxInterview for python message from teams by the best coders in the world

showing results for - "python message from teams"
Nolhan
22 Aug 2016
1import pymsteams
2myTeamsMessage = pymsteams.connectorcard("<Microsoft Webhook URL>")
3myTeamsMessage.text("this is my text")
4myTeamsMessage.send()
5