python 用于Python 3的简单Web服务器,带有针对单行Web服务的注释说明。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 用于Python 3的简单Web服务器,带有针对单行Web服务的注释说明。相关的知识,希望对你有一定的参考价值。

# Python 2:
# python -m SimpleHTTPServer
#
# Python 3:
# python -m http.server

import http.server

def start_server(port=8000, bind="", cgi=False):
    if cgi==True:
        http.server.test(HandlerClass=http.server.CGIHTTPRequestHandler, port=port, bind=bind)
    else:
        http.server.test(HandlerClass=http.server.SimpleHTTPRequestHandler,port=port,bind=bind)

start_server() #If you want cgi, set cgi to True e.g. start_server(cgi=True)

以上是关于python 用于Python 3的简单Web服务器,带有针对单行Web服务的注释说明。的主要内容,如果未能解决你的问题,请参考以下文章

python 一个简单的echo服务器,用于检查http Web请求

python 一个简单的echo服务器,用于检查http Web请求

python 启动简单web服务器

python可以开发啥项目呀?

Python实现简单Web服务器

Python Socket 编程 简单的 Web 服务器