client.is playing discord.py code example

Example 1: discordpy base code

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('Logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content.startswith('$hello'):
        await message.channel.send('Hello!')

client.run('your token here')

Example 2: discord py server.channels

# Returns a list of all channels from all guilds( as channel IDs )

bot.get_all_channels()