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/util/exec.py

28 lines
739 B
Python

import http
import json, urllib2, sys
def haste(data):
URL = "http://paste.dmptr.com"
request = urllib2.Request(URL + "/documents", data)
response = urllib2.urlopen(request)
return("%s/%s" % (URL, json.loads(response.read())['key']))
def execute_eval(code, paste_multiline=True):
while True:
output = http.get("http://eval.appspot.com/eval", statement=code).rstrip('\n')
if output:
break
else:
pass
if "Traceback (most recent call last):" in output:
status = "Python error: "
else:
status = "Code executed sucessfully: "
if "\n" in output and paste_multiline:
return status + haste(output)
else:
return output