编写简易Web服务器教程
在本教程中,我们将学习如何使用Python编写一个简单的Web服务器,我们将使用Python的内置库http.server来实现这个目标,以下是详细的步骤:
1、准备工作
在开始之前,请确保您已经安装了Python,如果没有安装,可以从官方网站下载并安装:https://www.python.org/downloads/
2、创建一个新的Python文件
打开一个文本编辑器,如Notepad++或Visual Studio Code,然后创建一个新的Python文件,将其命名为simple_web_server.py
。
3、编写代码
将以下代码复制到simple_web_server.py
文件中:
import http.server import socketserver 定义端口号 PORT = 8000 创建一个请求处理器类,继承自http.server.SimpleHTTPRequestHandler class MyRequestHandler(http.server.SimpleHTTPRequestHandler): def do_GET(self): # 如果访问的是根目录(即URL为"/"),则返回index.html文件的内容 if self.path == "/": self.send_response(200) self.send_header("Contenttype", "text/html") with open("index.html", "r") as f: self.end_headers() self.wfile.write(f.read()) else: # 否则,返回404错误 self.send_response(404) self.send_header("Contenttype", "text/html") self.end_headers() response = "<html><body><h1>404 Not Found</h1></body></html>" self.wfile.write(response.encode()) 创建一个socket服务器对象,绑定到指定端口,并使用自定义的请求处理器类处理请求 with socketserver.TCPServer(("", PORT), MyRequestHandler) as httpd: print("serving at port", PORT) httpd.serve_forever()
4、准备HTML文件
在与simple_web_server.py
相同的目录下,创建一个名为index.html
的文件,将以下HTML代码复制到index.html
文件中:
<!DOCTYPE html> <html> <head> <title>我的简易Web服务器</title> </head> <body> <h1>欢迎来到我的简易Web服务器!</h1> </body> </html>
5、运行Web服务器
在命令行中,切换到包含simple_web_server.py
文件的目录,然后运行以下命令启动Web服务器:
python simple_web_server.py
6、访问Web服务器
在浏览器中输入http://localhost:8000
,您应该能看到显示“欢迎来到我的简易Web服务器!”的页面,如果您访问的是根目录(即URL为"/"),则会看到index.html
文件的内容,如果尝试访问其他路径,您将收到404错误。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/480006.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复