add post-text.py script
This commit is contained in:
parent
b07175f583
commit
c4a67ae2f4
1 changed files with 17 additions and 0 deletions
17
post-text.py
Normal file
17
post-text.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
from os import environ
|
||||
import argparse
|
||||
import discord
|
||||
|
||||
ap = argparse.ArgumentParser()
|
||||
ap.add_argument('channel', help='the discord id of the channel to post to')
|
||||
ap.add_argument('text', help='the text to post')
|
||||
|
||||
a = ap.parse_args()
|
||||
|
||||
if 'TOKEN' not in environ:
|
||||
print('please set an environment variable TOKEN with the bot token')
|
||||
exit(1)
|
||||
|
||||
token = environ['TOKEN']
|
||||
|
||||
discord.post(discord.session(token), f'/channels/{a.channel}/messages', {'content': a.text})
|
Loading…
Add table
Reference in a new issue