Python代碼運行助手

來源:互聯網
上載者:User
#!/usr/bin/env python3# -*- coding: utf-8 -*-  r'''learning.py  A Python 3 tutorial from http://www.liaoxuefeng.com  Usage:  python3 learning.py'''  import sys  def check_version():    v = sys.version_info    if v.major == 3 and v.minor >= 4:        return True    print('Your current python is %d.%d. Please use Python 3.4.' % (v.major, v.minor))    return False  if not check_version():    exit(1)  import os, io, json, subprocess, tempfilefrom urllib import parsefrom wsgiref.simple_server import make_server  EXEC = sys.executablePORT = 39093HOST = 'local.liaoxuefeng.com:%d' % PORTTEMP = tempfile.mkdtemp(suffix='_py', prefix='learn_python_')INDEX = 0  def main():    httpd = make_server('127.0.0.1', PORT, application)    print('Ready for Python code on port %d...' % PORT)    httpd.serve_forever()  def get_name():    global INDEX    INDEX = INDEX + 1    return 'test_%d' % INDEX  def write_py(name, code):    fpath = os.path.join(TEMP, '%s.py' % name)    with open(fpath, 'w', encoding='utf-8') as f:        f.write(code)    print('Code wrote to: %s' % fpath)    return fpath  def decode(s):    try:        return s.decode('utf-8')    except UnicodeDecodeError:        return s.decode('gbk')  def application(environ, start_response):    host = environ.get('HTTP_HOST')    method = environ.get('REQUEST_METHOD')    path = environ.get('PATH_INFO')    if method == 'GET' and path == '/':        start_response('200 OK', [('Content-Type', 'text/html')])        return [b'Learning Python']    if method == 'GET' and path == '/env':        start_response('200 OK', [('Content-Type', 'text/html')])        L = [b'ENV']        for k, v in environ.items():            p = '

%s = %s' % (k, str(v)) L.append(p.encode('utf-8')) L.append(b'') return L if host != HOST or method != 'POST' or path != '/run' or not environ.get('CONTENT_TYPE', '').lower().startswith('application/x-www-form-urlencoded'): start_response('400 Bad Request', [('Content-Type', 'application/json')]) return [b'{"error":"bad_request"}'] s = environ['wsgi.input'].read(int(environ['CONTENT_LENGTH'])) qs = parse.parse_qs(s.decode('utf-8')) if not 'code' in qs: start_response('400 Bad Request', [('Content-Type', 'application/json')]) return [b'{"error":"invalid_params"}'] name = qs['name'][0] if 'name' in qs else get_name() code = qs['code'][0] headers = [('Content-Type', 'application/json')] origin = environ.get('HTTP_ORIGIN', '') if origin.find('.liaoxuefeng.com') == -1: start_response('400 Bad Request', [('Content-Type', 'application/json')]) return [b'{"error":"invalid_origin"}'] headers.append(('Access-Control-Allow-Origin', origin)) start_response('200 OK', headers) r = dict() try: fpath = write_py(name, code) print('Execute: %s %s' % (EXEC, fpath)) r['output'] = decode(subprocess.check_output([EXEC, fpath], stderr=subprocess.STDOUT, timeout=5)) except subprocess.CalledProcessError as e: r = dict(error='Exception', output=decode(e.output)) except subprocess.TimeoutExpired as e: r = dict(error='Timeout', output='執行逾時') except subprocess.CalledProcessError as e: r = dict(error='Error', output='執行錯誤') print('Execute done.') return [json.dumps(r).encode('utf-8')] if __name__ == '__main__': main()

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.