This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/pyexec.py

11 lines
184 B
Python
Raw Normal View History

2011-11-20 10:23:31 +01:00
import re
from util import hook, http
from util.execute import eval_py
2011-11-20 10:23:31 +01:00
@hook.command
def python(inp):
2012-05-16 05:07:27 +02:00
"python <prog> -- Executes <prog> as Python code."
2011-11-20 10:23:31 +01:00
return eval_py(inp)