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

10 lines
172 B
Python
Raw Normal View History

from util import hook
from util.execute import eval_py
2011-11-20 10:23:31 +01:00
2011-11-20 10:23:31 +01:00
@hook.command
def python(inp):
"""python <prog> -- Executes <prog> as Python code."""
2011-11-20 10:23:31 +01:00
return eval_py(inp)