2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PythonのDiscord Webhookで超お手軽にローカル画像を投稿する

Posted at

要点

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" コマンドの実行結果

image.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?