python一个命令开启http服务器

Posted 爱吃醋的工程师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python一个命令开启http服务器相关的知识,希望对你有一定的参考价值。

 

1、python开启http服务器

python -m SimpleHTTPServer 8080
如果提示错误:
python.exe: No module named SimpleHTTPServer

则试一下命令:
python -m http.server

 

2、执行py脚本文件,开启cgi映射

python -m http.server --cgi 8000

 

py代码里添加

header = ‘Content-Type: text/html\n‘
print(header)

比如/cgi-bin/1.py文件代码:

header = ‘Content-Type: text/html\n‘
html = ‘abc‘
print(header)
print(html)

访问http://127.0.0.1:8000/cgi-bin/1.py

可以正常输出abc

 

Ps:

py代码文件默认目录在cgi-bin或者htbin

http.server官方文档 https://docs.python.org/3/library/http.server.html

以上是关于python一个命令开启http服务器的主要内容,如果未能解决你的问题,请参考以下文章

Python命令开启http.server服务器

Python一个命令开启http下载服务器(可以局域网内共享文件)

python -m http.server 搭建一个简易web下载服务器

python 开启http服务并下载文件

使用http-server开启一个本地服务器

window下,nodejs 安装 http-server,开启命令行HTTP服务器