From b8995dce4aef5378cae61a3bc0459703ea36ffae Mon Sep 17 00:00:00 2001 From: jlw4049 Date: Tue, 2 Jan 2024 21:55:49 -0500 Subject: [PATCH] feat: add readme --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..74e451c --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# 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 +```