0
如何將由pyplot創建的圖像發送到Slack頻道?在本地保存它,然後嘗試將本地文件傳遞爲image_url
不起作用發佈pyplot圖片到Slack
import matplotlib.pyplot as pyplot
from slacker import Slacker
slack = Slacker("supersecretkey")
fig, ax = pyplot.subplots(figsize=(8,6))
ax.plot([1,2], [4,2])
fig.savefig("C:\file.png")
attachments = [{"title": "test",
"image_url": "C:\file.png"}]
slack.chat.post_message("@mathias", "TEXT_TEST", "TEST", attachments=attachments)
難道不幸的是沒有工作。
我還試圖上載文件
slack.files.upload("C:\file.png")
並在attachment
使用的permalink_public
(從上述命令的執行結果),但沒有成功:
我怎樣才能解決這沒有太多的麻煩(例如上傳到外部圖像主機)?