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
Executable file

import re
from util import hook, http
from util.execute import eval_py
@hook.command
def python(inp):
"python <prog> -- Executes <prog> as Python code."
return eval_py(inp)