0%

启动小巧python-web服务

启动小巧python-web服务

Python2

python 自带的web服务器模块

  • BaseHTTPServer

    提供基本的Web服务和处理器类,分别是HTTPServer和BaseHTTPRequestHandler

  • SimpleHTTPServer

    包含执行GET和HEAD请求的SimpleHTTPRequestHandler类。

  • CGIHTTPServer

    包含处理POST请求和执行CGIHTTPRequestHandler类。

使用方法

1
python2.7 -m CGIHTTPServer 8888
脚本一:

在上方服务启动脚本所在的目录中创建 cgi-bin 目录,并新建 hello.py 文件,文件内容:

1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
import cgi

fs=cgi.FieldStorage()

inputs = {}
for key in fs.keys():
inputs[key] = fs[key].value

# get
print(inputs)

测试请求

1
curl 127.0.0.1:8888/cgi-bin/hello.py -d "a=codezm" -v
脚本二:
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

import cgi
reshtml='''Content-Type:text/html\n
<html>
<head><title>hello world CGI</title></head>
<body>
your input is :<B>%s</B>
</body>
</html>'''
form=cgi.FieldStorage()
a=form['a'].value
print(reshtml%(a))

发起网络请求:

1
2
3
4
5
6
7
8
$ curl -v 127.0.0.1:8000/hello.py?a=1

<html>
<head><title>hello world CGI</title></head>
<body>
your input is :<B>1</B>
</body>
</html>

Python3

1
2
# 默认打开8000端口
python -m http.server --cgi

更多

更多详情见:https://gitee.com/codezm/ruoyi-deploy

参考