# -*- coding: utf-8 -*-
import http.server
import socketserver
from datetime import datetime
PORT = 8000
import sys
# ...
class MyHandler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
if self.path == '/':
# 如果路径是根路径,返回页面内容
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
try:
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
response_content = "我的第一个Python网页<br>当前时间:{}".format(now)
self.wfile.write(response_content.encode())
self.send_header('Content-type', 'text/html; charset=utf-8')
# 添加打印语句
print(f"GET request received. Path: {self.path}, Time: {now}")
sys.stdout.flush() # 刷新输出缓冲区
except Exception as e:
# 捕获并打印异常
print(f"Error processing GET request: {e}")
sys.stdout.flush() # 刷新输出缓冲区
else:
# 否则按照默认的 SimpleHTTPRequestHandler 处理
super().do_GET()
with socketserver.TCPServer(("0.0.0.0", PORT), MyHandler) as httpd:
print("Serving at port", PORT)
sys.stdout.flush() # 刷新输出缓冲区
httpd.serve_forever()
我的第一个python web 网站
温正实2024-03-06 8:54
相关推荐
230万光年的思念8 分钟前
【无标题】shengli72214 分钟前
机器学习与人工智能2301_7657031422 分钟前
Python迭代器(Iterator)揭秘:for循环背后的故事追风少年ii42 分钟前
多组学扩展---分子对接pyrosetta2301_821369611 小时前
使用Python进行图像识别:CNN卷积神经网络实战m0_561359671 小时前
使用Kivy开发跨平台的移动应用编程火箭车1 小时前
04.第一个 Python 程序:Hello World 从编写到运行全解析qq_423233902 小时前
如何用FastAPI构建高性能的现代API疯狂踩坑人2 小时前
【Python版 2026 从零学Langchain 1.x】(二)结构化输出和工具调用HDO清风2 小时前
CASIA-HWDB2.x 数据集DGRL文件解析(python)