PYTHON微型静态服务器miniserve


python写个微型服务器,把当前目录作为根目录,可以使用9527端口,主要用来渲染index.html和js、css图片等静态资源的,运行脚本的时候,把在什么时候访问了什么文件打印在控制台。

创建一个serve.py在静态目录下:

import http.server
import socketserver
import os
from datetime import datetime

PORT = 9527

class LoggingHTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
    def do_GET(self):
        # 获取当前时间
        current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
        # 获取请求的文件路径
        requested_file = self.path
        # 转换为绝对路径
        full_path = os.path.abspath(os.path.join(os.getcwd(), requested_file.lstrip('/')))
        
        # 打印访问日志
        print(f"[{current_time}] 请求文件: {requested_file}")
        #print(f"[{current_time}] 完整路径: {full_path}")
        
        # 调用父类的处理方法来实际处理请求
        super().do_GET()

# 设置服务器
Handler = LoggingHTTPRequestHandler

# 确保使用当前目录作为根目录
os.chdir(os.getcwd())

# 创建并启动服务器
with socketserver.TCPServer(("", PORT), Handler) as httpd:
    print(f"服务器启动: http://localhost:{PORT}")
    print(f"服务目录: {os.getcwd()}")
    print("按 Ctrl+C 停止服务器")
    try:
        httpd.serve_forever()
    except KeyboardInterrupt:
        print("\n服务器已停止")
        httpd.server_close()

原文链接:https://blog.yongit.com/note/1573146.html