python 实现指定目录的web server
2022/1/3 14:08:04
本文主要是介绍python 实现指定目录的web server,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#!/usr/bin/env python3 import os from http.server import HTTPServer as BaseHTTPServer, SimpleHTTPRequestHandler class HTTPHandler(SimpleHTTPRequestHandler): """This handler uses server.base_path instead of always using os.getcwd()""" def translate_path(self, path): path = SimpleHTTPRequestHandler.translate_path(self, path) # # getcwd() returns current working directory of a process # # method in Python is used to get a relative filepath to the given path either from the current working directory or from the given directory. relpath = os.path.relpath(path, os.getcwd()) fullpath = os.path.join(self.server.base_path, relpath) return fullpath def end_headers(self): self.send_header('Access-Control-Allow-Origin', '*') SimpleHTTPRequestHandler.end_headers(self) class HTTPServer(BaseHTTPServer): """The main server, you pass in base_path which is the path you want to serve requests from""" def __init__(self, base_path, server_address, RequestHandlerClass=HTTPHandler): self.base_path = base_path BaseHTTPServer.__init__(self, server_address, RequestHandlerClass) if __name__ == '__main__': PORT = 8008 web_dir = "/speed/data/pdf_transed" httpd = HTTPServer(web_dir, ("", PORT)) httpd.serve_forever()
这篇关于python 实现指定目录的web server的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型