【Python】pymsteams を 使って Microsoft Teams に投稿する

DEVELOP, Microsoft Teams, Python

目次

テキストを投稿する

import pymsteams
 
message = pymsteams.connectorcard(<Incoming Webhook URL>)
message.text("text")
message.send()

タイトルとテキストを投稿する

import pymsteams
 
message = pymsteams.connectorcard(<Incoming Webhook URL>)
 
message.title("title")
message.text("text")
message.send()

リンクを追加する

import pymsteams
 
message = pymsteams.connectorcard(<Incoming Webhook URL>)
 
message.title("リンクの追加")
message.text("[KAZUPON研究室](https://kazupon.org)")
message.send()

リンクボタンを追加する

import pymsteams
 
message = pymsteams.connectorcard(<Incoming Webhook URL>)
 
message.text("リンクボタンの追加")
message.addLinkButton("KAZUPON研究室へ.", "https://kazupon.org")
message.send()

セクションを追加する

import pymsteams
 
message = pymsteams.connectorcard(<Incoming Webhook URL>)
 
message.text("セクションの追加")
 
Section1 = pymsteams.cardsection()
Section1.text("セクション1")
message .addSection(Section1)
 
Section2 = pymsteams.cardsection()
Section2.text("セクション2")
message .addSection(Section2)
message.send()

※先頭にsummary や text が無いと Summary or Text is required. エラーが出ます。

Posted by kazupon