Untitled

 avatar
unknown
python
a year ago
348 B
4
Indexable
async def ascii_command(message, text):
    print(f'Command used: ascii by: {message.author.name} ({message.author.id}) at {message.created_at}')
    if text:
        ascii_art = pyfiglet.figlet_format(text)
        await message.reply(content=f"```{ascii_art}```")
    else:
        await message.reply(content="Need to provide text to use ASCII")
Editor is loading...
Leave a Comment