PHP前端开发

如何使用 Python 将您的设备变成简单的服务器

百变鹏仔 4天前 #Python
文章标签 您的

作者:特里克斯·赛勒斯

让我们创建一个从您的设备托管的 python 服务器。

开始..

创建一个名为server的目录

mkdir server

创建一个名为 server.py 的文件

nano server.py

粘贴以下代码。

import http.serverimport socketserverimport loggingimport osimport threadingfrom urllib.parse import urlparse, parse_qsport = 8080directory = "www"  logging.basicconfig(level=logging.info, format='%(asctime)s - %(message)s', datefmt='%y-%m-%d %h:%m:%s')class myhandler(http.server.simplehttprequesthandler):    def __init__(self, *args, **kwargs):        super().__init__(*args, directory=directory, **kwargs)    def log_message(self, format, *args):        logging.info("%s - %s" % (self.client_address[0], format % args))    def do_get(self):        parsed_path = urlparse(self.path)        query = parse_qs(parsed_path.query)        # custom logic for different routes        if parsed_path.path == '/':            self.serve_file("index.html")        elif parsed_path.path == '/about':            self.respond_with_text("<h1>about us</h1><p>this is a custom python server.</p><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/00968c3c2c15" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">Python免费学习笔记(深入)</a>”;</p>")        elif parsed_path.path == '/greet':            name = query.get('name', ['stranger'])[0]            self.respond_with_text(f"<h1>hello, {name}!</h1>")        else:            self.send_error(404, "file not found")    def do_post(self):        content_length = int(self.headers['content-length'])        post_data = self.rfile.read(content_length)        logging.info("received post data: %s", post_data.decode('utf-8'))        self.respond_with_text("<h1>post request received</h1>")    def serve_file(self, filename):        if os.path.exists(os.path.join(directory, filename)):            self.send_response(200)            self.send_header("content-type", "text/html")            self.end_headers()            with open(os.path.join(directory, filename), 'rb') as file:                self.wfile.write(file.read())        else:            self.send_error(404, "file not found")    def respond_with_text(self, content):        self.send_response(200)        self.send_header("content-type", "text/html")        self.end_headers()        self.wfile.write(content.encode('utf-8'))class threadedhttpserver(socketserver.threadingmixin, http.server.httpserver):    daemon_threads = true  # handle requests in separate threadsdef run_server():    try:        with threadedhttpserver(("", port), myhandler) as httpd:            logging.info(f"serving http on port {port}")            logging.info(f"serving files from directory: {directory}")            httpd.serve_forever()    except exception as e:        logging.error(f"error starting server: {e}")    except keyboardinterrupt:        logging.info("server stopped by user")if __name__ == "__main__":    server_thread = threading.thread(target=run_server)    server_thread.start()    server_thread.join()

创建一个名为www的目录

mkdir www

现在导航到 www 目录

cd www

创建一个名为index.html的文件

nano index.html

将以下代码粘贴到其中

<!doctype html><html lang="en"><head>    <meta charset="utf-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>python simple server</title></head><body>    <h1>welcome to my python server!</h1>    <p>this is a simple web server running on your local device.</p></body></html>

第 2 步:测试路由

运行修改后的脚本后,转到:

http://localhost:8080/ 查看主页。
http://localhost:8080/about 查看关于页面。
http://localhost:8080/greet?name=trix
对于任何其他路径,服务器将返回 404 错误。

下面是目录结构

server/├── server.py└── www/    └── index.html

在远程设备上运行服务器

如果您想从同一网络上的另一台设备访问您的 python 服务器怎么办?您可以通过查找运行服务器的计算机的本地 ip 地址并使用它而不是 localhost 来轻松完成此操作。

第 1 步:查找您的 ip 地址

使用类似
的命令

ipconfig
ifconfig

查找您的 ipv4 地址(例如 192.168.x.x)。

步骤 2. 修改您的服务器脚本

在您的服务器脚本中,替换启动服务器的行:

with threadedhttpserver(("", port), myhandler) as httpd:

更改为:

with ThreadedHTTPServer(("0.0.0.0", PORT), MyHandler) as httpd:

第 3 步:从另一台设备访问服务器

现在,使用您之前找到的 ip 地址,您可以通过浏览器中访问 http://:8080 从同一网络上的任何设备访问服务器。

一切就绪

~trixsec