This commit is contained in:
parent
559d8c2169
commit
a344db3ad1
1 changed files with 42 additions and 0 deletions
42
survey.py
Normal file
42
survey.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
import discord
|
||||
import asyncio
|
||||
import time
|
||||
import datetime
|
||||
import random
|
||||
import os
|
||||
from os import system
|
||||
from os import environ
|
||||
from discord.ext import commands
|
||||
from discord.commands import Option
|
||||
from discord.commands import permissions
|
||||
from discord.ui import InputText, Modal
|
||||
|
||||
def left(s, amount):
|
||||
return s[:amount]
|
||||
|
||||
def right(s, amount):
|
||||
return s[-amount:]
|
||||
|
||||
def mid(s, offset, amount):
|
||||
return s[offset:offset+amount]
|
||||
|
||||
token = os.environ['TOKEN']
|
||||
survey_channel = os.environ['SURVEY_CHANNEL']
|
||||
mention_id = os.environ['MENTION_ID']
|
||||
guild_id = os.environ['GUILD_ID']
|
||||
runtime = 48
|
||||
|
||||
bot = discord.Bot(description=None)
|
||||
|
||||
@bot.event
|
||||
async def on_ready():
|
||||
print("Bot ready on Version %s..." % discord.__version__)
|
||||
# build survey
|
||||
po = discord.Poll(question="Wie habt ihr nächste Woche Zeit?", answers=[discord.PollAnswer(text="Montag", emoji="1\u20E3"), discord.PollAnswer(text="Dienstag", emoji="2\u20E3"), discord.PollAnswer(text="Mittwoch", emoji="3\u20E3"), discord.PollAnswer(text="Donnerstag", emoji="4\u20E3"), discord.PollAnswer(text="Freitag", emoji="5\u20E3"), discord.PollAnswer(text="Samstag", emoji="6\u20E3"), discord.PollAnswer(text="Sonntag", emoji="7\u20E3"), discord.PollAnswer(text="keine Zeit", emoji="❌")], duration=runtime, allow_multiselect=True)
|
||||
# send message
|
||||
msg = await bot.get_channel(survey_channel).send(content="||%s||"% bot.get_guild(guild_id).get_role(mention_id).mention ,poll=po)
|
||||
await msg.create_thread(name="Diskussion")
|
||||
# close connection
|
||||
await bot.close()
|
||||
|
||||
bot.run(token)
|
Loading…
Reference in a new issue