要点
discordwebhook使って file={ "attachment": f }
で指定するのがミソ
事前準備
・pip install discordwebhook
しとく
・Discordのサーバー設定→IntegrationsでWebhookを作っておく
コード
postLocalImageToDiscord.py
# ! /usr/bin/env python
# coding: UTF-8
from discordwebhook import Discord
import sys
if __name__ == '__main__':
#第一引数に画像パスを指定する
args = sys.argv
if 2 <= len(args):
image_path = args[1]
discord_webhook_url = "ここにWebHookのURL"
discord = Discord(url=discord_webhook_url)
with open(image_path, 'rb') as f:
discord.post(content="画像投稿テスト", file={ "attachment": f })
else:
print('引数が不足しています 第一引数に画像パスを指定してください')
実行結果
python postLocalImageToDiscord.py "C:/Users/username/Downloads/floweroflife.gif"
コマンドの実行結果