Best discord.py customized library. With easier usage less time to spend on reading docs and mobile status built in.
- Install lift.bot library
pip install lift.bot - Create
main.py
import liftcord
from liftcord.ext import commands
bot = liftcord.Bot(command_prefix="?")
# Example command
@bot.command()
async def ping(ctx):
await ctx.send("Pong!")
bot.login("token")
