Answers for "how to code my discord bot with python"

0

how to make a discord bot dm someone python

@bot.command(pass_context = True)
async def dm(ctx, member : discord.Member, *, content: str):
    await bot.send_message(member, content)
Posted by: Guest on May-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language