“Discordpy” Kod odpowiedzi

Discordpy

import discord

class MyClient(discord.Client):
    async def on_ready(self):
        print('Logged on as {0}!'.format(self.user))

    async def on_message(self, message):
        print('Message from {0.author}: {0.content}'.format(message))

client = MyClient()
client.run(TOKEN)
# https://discord.com/developers/applications
Kaung Pyae Htet

Python Discord

import discord

class MyClient(discord.Client):
    async def on_ready(self):
        print('Logged on as', self.user)

    async def on_message(self, message):
        # don't respond to ourselves
        if message.author == self.user:
            return

        if message.content == 'ping':
            await message.channel.send('pong')

client = MyClient()
client.run('token')
Dralion

Odpowiedzi podobne do “Discordpy”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu