myircbot/plugins/ascii.py
2025-05-29 22:58:53 +02:00

14 lines
356 B
Python

import pyfiglet
def run(*text):
"""Convierte texto en arte ASCII."""
try:
ascii_art = pyfiglet.figlet_format(" ".join(text))
return f" **ASCII Art:**\n```{ascii_art}```"
except Exception as e:
return f" Error generando ASCII: {str(e)}"
def help():
return "Uso: .ascii <texto> - Convierte el texto en arte ASCII."