How would one make a command case-insensitive without adding many aliases for different capitalizations like this:
@bot.command(pass_context = True, name = \
you could also use if message.content.lower().startswith('command'): doesnt necessarily have to be startswith
if message.content.lower().startswith('command'):