import discord from discord.ext import commands BOT_NAME = "Cupido" client = discord.Client() bot = commands.Bot(command_prefix='!<3') @client.event async def on_ready(): print('{0} is logged in as {1.user}'.format(BOT_NAME, client)) @bot.command() async def init(ctx): pass client.run('token')