discord py @info code example
Example 1: discord.py
Docs = "https://discordpy.readthedocs.io/en/latest/"
PyPI = "pip install -U discord.py"
import discord
from discord.ext import commands
client = commands.Bot(comand_prefix='bot prefix here')
@client.event()
async def on_ready():
print(f"Bot online and logged in as {client.user}")
@client.command(aliases=["ms", "aliases!"])
async def ping(ctx, a_variable):
await ctx.send(f"Pong! {round(client.latency * 1000)}ms. Your input was {a_variable}")
client.run('your token here')
Example 2: discord.py fetch channel
await client.fetch_channel(channelId)