python server搭建==

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python server搭建==相关的知识,希望对你有一定的参考价值。

1.代码:

from http.server import HTTPServer, BaseHTTPRequestHandler

class Handler(BaseHTTPRequestHandler):
        """docstring fos Handler"""
        def do_sth_for_GET(self):
            self.send_response(200)
            self.send_header(\'Content_type\',\'text/plain;charset=utf-8\')
            self.end_header()

            self.wfile.write(\'Hello everyone,I am William,I am a AI server~\\n\'.encode())

if __name__==\'__main__\':
    server_address=(\'\',9999)
    httpd=HTTPServer(server_address,Handler)
    httpd.serve_forever()

 

2.网址中输入:127.0.0.1:9999(或者localhost:9999)

 

3.报错:

 

 

 4.解决:将do_sth_for_GET改成do_GET就好了

(base) localhost:html ligaijiang$ python3 python_server.py #然后网页中输入:http://localhost:9995
127.0.0.1 - - [09/Apr/2020 11:26:16] "GET / HTTP/1.1" 200 -

 

 

以上是关于python server搭建==的主要内容,如果未能解决你的问题,请参考以下文章

缺少 SQL SERVER 2014 代码片段

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

在PaddlePaddle中的Notebook代码片段

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段

python搭建简易Web Server

Python+Flask搭建mock api server