discord.py bot change status code example
Example 1: discord py bot status
await client.change_presence(status=discord.Status.online)
await client.change_presence(status=discord.Status.idle)
await client.change_presence(status=discord.Status.dnd)
Example 2: discord.py change status
await bot.change_presence(activity=discord.Game(name='Minecraft'))
await bot.change_presence(activity=discord.Streaming(name="Chess", url=twitch_url))
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="Harry Potter"))
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.competing, name="the House Cup"))
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="!help"))