How to make a command case insensitive in discord.py

Dextication picture Dextication · Jan 5, 2018 · Viewed 7.8k times · Source

How would one make a command case-insensitive without adding many aliases for different capitalizations like this:

@bot.command(pass_context = True, name = 'test', aliases=['Test', 'tEst', 'teSt', 'tesT', 'TEst', 'TeSt', 'TesT', 'tESt', 'tEsT'])
async def test(self, ctx):
    #do stuff      

Answer

Patrick Haugh picture Patrick Haugh · Aug 2, 2018

On the rewrite branch, commands.Bot accepts a case_insensitive parameter

bot = commands.Bot(command_prefix='!', case_insensitive=True)

Note that there is a performance loss when using this feature.