首页  >  文章  >  后端开发  >  如何使用 Python 将您的设备变成简单的服务器。

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

DDD
DDD原创
2024-09-23 18:15:32334浏览

How to Turn Your Device Into a Simple Server Using Python.

作者:Trix Cyrus

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

开始使用..

创建一个名为server的目录

mkdir server

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

nano server.py

粘贴以下代码。

import http.server
import socketserver
import logging
import os
import threading
from urllib.parse import urlparse, parse_qs

PORT = 8080
DIRECTORY = "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>")
        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 threads

def 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

以上是如何使用 Python 将您的设备变成简单的服务器。的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn