激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

腳本之家,腳本語言編程技術及教程分享平臺!
分類導航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服務器之家 - 腳本之家 - Python - Python在線運行代碼助手

Python在線運行代碼助手

2020-09-02 09:17廖雪峰 Python

Python代碼運行助手可以讓你在線輸入Python代碼,然后通過本機運行的一個Python腳本來執行代碼

Python代碼運行助手可以讓你在線輸入Python代碼,然后通過本機運行的一個Python腳本來執行代碼。原理如下:

在網頁輸入代碼:

Python在線運行代碼助手

點擊Run按鈕,代碼被發送到本機正在運行的Python代碼運行助手;

Python代碼運行助手將代碼保存為臨時文件,然后調用Python解釋器執行代碼;

網頁顯示代碼執行結果:

Python在線運行代碼助手

下載

點擊右鍵,目標另存為:learning.py

備用下載地址:learning.py

完整代碼:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/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, tempfile
from urllib import parse
from wsgiref.simple_server import make_server
 
EXEC = sys.executable
PORT = 39093
HOST = 'local.liaoxuefeng.com:%d' % PORT
TEMP = 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'<html><head><title>Learning Python</title></head><body><form method="post" action="/run"><textarea name="code" style="width:90%;height: 600px"></textarea><p><button type="submit">Run</button></p></form></body></html>']
 if method == 'GET' and path == '/env':
  start_response('200 OK', [('Content-Type', 'text/html')])
  L = [b'<html><head><title>ENV</title></head><body>']
  for k, v in environ.items():
   p = '<p>%s = %s' % (k, str(v))
   L.append(p.encode('utf-8'))
  L.append(b'</html>')
  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()

運行

在存放learning.py的目錄下運行命令:

復制代碼 代碼如下:

C:\Users\michael\Downloads> python learning.py

如果看到Ready for Python code on port 39093...表示運行成功,不要關閉命令行窗口,最小化放到后臺運行即可:

Python在線運行代碼助手

試試效果

需要支持HTML5的瀏覽器:

IE >= 9
Firefox
Chrome
Sarafi

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国产精品久久久久久影院8一贰佰 | 亚洲欧美日韩中文在线 | 日本视频在线免费观看 | 经典三级在线视频 | 一级免费a | 999久久久精品视频 欧美日韩网站在线观看 | 欧美城网站地址 | 久章草影院 | 欧美三级美国一级 | 色日本视频 | 99亚洲国产精品 | av免费入口| 91懂色| 羞羞的视频在线免费观看 | 国产一级一国产一级毛片 | 免费黄色免费 | 学霸趴下被打肿光屁股小说 | avav在线播放 | 欧美精品色精品一区二区三区 | 亚洲成人福利在线观看 | 羞羞的视频免费 | 石原莉奈日韩一区二区三区 | 免费在线中文字幕 | 97久久人人超碰caoprom | 日韩av影片在线观看 | 毛片免费视频网站 | 男女一边摸一边做羞羞视频免费 | 婷婷久久影院 | 日韩欧美视频一区二区三区 | 成人在线视频播放 | 国产一区二区三区黄 | 91网站免费在线观看 | 深夜福利视频免费观看 | 成人免费乱码大片a毛片视频网站 | 看个毛片| 欧洲精品久久 | 亚洲第一激情网 | 蜜桃视频日韩 | 午夜视频久久久 | 欧美日韩一区三区 | 久久精品国产99久久6动漫亮点 |