Simple app to send Discord messages via webhook
Go to file
2024-01-02 21:55:49 -05:00
.gitignore feat: initial commit 2024-01-02 21:39:21 -05:00
ico.ico feat: initial commit 2024-01-02 21:39:21 -05:00
icon.png feat: initial commit 2024-01-02 21:39:21 -05:00
poetry.lock refactor: add discord-webhook 2024-01-02 21:40:44 -05:00
pyproject.toml refactor: add discord-webhook 2024-01-02 21:40:44 -05:00
README.md feat: add readme 2024-01-02 21:55:49 -05:00
send_discord_msg.py feat: initial commit 2024-01-02 21:39:21 -05:00

Usage

usage: send_discord_msg.py [-h] [-i] webhook_url message

Send messages to Discord webhooks.

positional arguments:
  webhook_url          Discord webhook URL
  message              Message to send

options:
  -h, --help           show this help message and exit
  -i, --ignore-errors  Ignore errors and exit with success

Use as executable

Requires pyinstaller, can build with the below command

pyinstaller --onefile --icon\ico.ico .\send_discord_msg.py