当前位置:

首页 > 编程开发 > 使用Python开发自定义Web框架的步骤和方法

使用Python开发自定义Web框架的步骤和方法

开发自定义Web框架接收web服务器的动态资源请求,给web服务器提供处理动态资源请求的服务。根据请求资源路径的后缀名进行判断:如果请求资源路径的后缀名是.html则是动态资源请求,让web框架程序进行处理。否则是静态资源请求,让web服务器程序进行处理。1.开发Web服务器主体程序1、接受客户端HTTP请求(底层是TCP)#-*-coding:utf-8-*-#@File:My_Web_Server.py#@author:Flymeawei#@email:1071505897@qq.com#@Time:

开发自定义Web框架

接收web服务器的动态资源请求,给web服务器提供处理动态资源请求的服务。根据请求资源路径的后缀名进行判断:

如果请求资源路径的后缀名是.html则是动态资源请求, 让web框架程序进行处理。

否则是静态资源请求,让web服务器程序进行处理。

1.开发Web服务器主体程序

1、接受客户端HTTP请求(底层是TCP)

# -*- coding: utf-8 -*-
# @File  : My_Web_Server.py
# @author: Flyme awei 
# @email : 1071505897@qq.com
# @Time  : 2022/7/24 21:28


from socket import *
import threading


# 开发自己的Web服务器主类
class MyHttpWebServer(object):

    def __init__(self, port):
        # 创建 HTTP服务的 TCP套接字
        server_socket = socket(AF_INET, SOCK_STREAM)
        # 设置端口号互用,程序退出之后不需要等待,直接释放端口
        server_socket.setsockopt(SOL_SOCKET, SO_REUSEADDR, True)
        # 绑定 ip和 port
        server_socket.bind(('', port))
        # listen使套接字变为了被动连接
        server_socket.listen(128)
        self.server_socket = server_socket

    # 处理请求函数
    @staticmethod  # 静态方法
    def handle_browser_request(new_socket):
        # 接受客户端发来的数据
        recv_data = new_socket.recv(4096)
        # 如果没有数据,那么请求无效,关闭套接字,直接退出
        if len(recv_data) == 0:
            new_socket.close()
            return
            
# 启动服务器,并接受客户端请求
    def start(self):
        # 循环并多线程来接收客户端请求
        while True:
            # accept等待客户端连接
            new_socket, ip_port = self.server_socket.accept()
            print("客户端ip和端口", ip_port)
            # 一个客户端的请求交给一个线程来处理
            sub_thread = threading.Thread(target=MyHttpWebServer.handle_browser_request, args=(new_socket, ))
            # 设置当前线程为守护线程
            sub_thread.setDaemon(True)
            sub_thread.start()  # 启动子线程


# Web 服务器程序的入口
def main():
    web_server = MyHttpWebServer(8080)
    web_server.start()


if __name__ == '__main__':
    main()

2、判断请求是否是静态资源还是动态资源

 # 对接收的字节数据进行转换为字符数据
        request_data = recv_data.decode('utf-8')
        print("浏览器请求的数据:", request_data)
        request_array = request_data.split(' ', maxsplit=2)

        # 得到请求路径
        request_path = request_array[1]
        print("请求的路径是:", request_path)
        if request_path == "/":
            # 如果请求路径为根目录,自动设置为:/index.html
            request_path = "/index.html"
        # 判断是否为:.html 结尾
        if request_path.endswith(".html"):
            "动态资源请求"
           pass
        else:
            "静态资源请求"
            pass

 3、如果静态资源怎么处理?

使用Python开发自定义Web框架的步骤和方法

"静态资源请求"
            # 根据请求路径读取/static 目录中的文件数据,相应给客户端
            response_body = None  # 响应主体
            response_header = None  # 响应头的第一行
            response_first_line = None  # 响应头内容
            response_type = 'test/html'  # 默认响应类型
            try:
                # 读取 static目录中相对应的文件数据,rb模式是一种兼容模式,可以打开图片,也可以打开js
                with open('static'+request_path, 'rb') as f:
                    response_body = f.read()
                if request_path.endswith('.jpg'):
                    response_type = 'image/webp'

                response_first_line = 'HTTP/1.1 200 OK'
                response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \
                                  'Content-Type: ' + response_type + '; charset=utf-8\r\n' + \
                                  'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \
                                  'Server: Flyme awei Server\r\n'

            # 浏览器读取的文件可能不存在
            except Exception as e:
                with open('static/404.html', 'rb') as f:
                    response_body = f.read()  # 响应的主体页面内容
                # 响应头
                response_first_line = 'HTTP/1.1 404 Not Found\r\n'
                response_header = 'Content-Length:'+str(len(response_body))+'\r\n' + \
                                  'Content-Type: text/html; charset=utf-8\r\n' + \
                                  'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \
                                  'Server: Flyme awei Server\r\n'
            # 最后都会执行的代码
            finally:
                # 组成响应数据发送给(客户端)浏览器
                response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body
                new_socket.send(response)
                # 关闭套接字
                new_socket.close()

使用Python开发自定义Web框架的步骤和方法

静态资源请求验证:

使用Python开发自定义Web框架的步骤和方法

4、如果动态资源又怎么处理

if request_path.endswith(".html"):
            "动态资源请求"
            # 动态资源的处理交给Web框架来处理,需要把请求参数交给Web框架,可能会有多个参数,采用字典结构
            params = {
                'request_path': request_path
            }
            # Web框架处理动态资源请求后,返回一个响应
            response = MyFramework.handle_request(params)
            new_socket.send(response)
            new_socket.close()

5、关闭Web服务器

new_socket.close()

Web服务器主体框架总代码展示:

# -*- coding: utf-8 -*-
# @File  : My_Web_Server.py
# @author: Flyme awei 
# @email : 1071505897@qq.com
# @Time  : 2022/7/24 21:28


import sys
import time
from socket import *
import threading
import MyFramework


# 开发自己的Web服务器主类
class MyHttpWebServer(object):

    def __init__(self, port):
        # 创建 HTTP服务的 TCP套接字
        server_socket = socket(AF_INET, SOCK_STREAM)
        # 设置端口号互用,程序退出之后不需要等待,直接释放端口
        server_socket.setsockopt(SOL_SOCKET, SO_REUSEADDR, True)
        # 绑定 ip和 port
        server_socket.bind(('', port))
        # listen使套接字变为了被动连接
        server_socket.listen(128)
        self.server_socket = server_socket

    # 处理请求函数
    @staticmethod  # 静态方法
    def handle_browser_request(new_socket):
        # 接受客户端发来的数据
        recv_data = new_socket.recv(4096)
        # 如果没有数据,那么请求无效,关闭套接字,直接退出
        if len(recv_data) == 0:
            new_socket.close()
            return

        # 对接收的字节数据进行转换为字符数据
        request_data = recv_data.decode('utf-8')
        print("浏览器请求的数据:", request_data)
        request_array = request_data.split(' ', maxsplit=2)

        # 得到请求路径
        request_path = request_array[1]
        print("请求的路径是:", request_path)
        if request_path == "/":
            # 如果请求路径为根目录,自动设置为:/index.html
            request_path = "/index.html"
        # 判断是否为:.html 结尾
        if request_path.endswith(".html"):
            "动态资源请求"
            # 动态资源的处理交给Web框架来处理,需要把请求参数交给Web框架,可能会有多个参数,采用字典结构
            params = {
                'request_path': request_path
            }
            # Web框架处理动态资源请求后,返回一个响应
            response = MyFramework.handle_request(params)
            new_socket.send(response)
            new_socket.close()
        else:
            "静态资源请求"
            # 根据请求路径读取/static 目录中的文件数据,相应给客户端
            response_body = None  # 响应主体
            response_header = None  # 响应头的第一行
            response_first_line = None  # 响应头内容
            response_type = 'test/html'  # 默认响应类型
            try:
                # 读取 static目录中相对应的文件数据,rb模式是一种兼容模式,可以打开图片,也可以打开js
                with open('static'+request_path, 'rb') as f:
                    response_body = f.read()
                if request_path.endswith('.jpg'):
                    response_type = 'image/webp'

                response_first_line = 'HTTP/1.1 200 OK'
                response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \
                                  'Content-Type: ' + response_type + '; charset=utf-8\r\n' + \
                                  'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \
                                  'Server: Flyme awei Server\r\n'

            # 浏览器读取的文件可能不存在
            except Exception as e:
                with open('static/404.html', 'rb') as f:
                    response_body = f.read()  # 响应的主体页面内容
                # 响应头
                response_first_line = 'HTTP/1.1 404 Not Found\r\n'
                response_header = 'Content-Length:'+str(len(response_body))+'\r\n' + \
                                  'Content-Type: text/html; charset=utf-8\r\n' + \
                                  'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \
                                  'Server: Flyme awei Server\r\n'
            # 最后都会执行的代码
            finally:
                # 组成响应数据发送给(客户端)浏览器
                response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body
                new_socket.send(response)
                # 关闭套接字
                new_socket.close()

    # 启动服务器,并接受客户端请求
    def start(self):
        # 循环并多线程来接收客户端请求
        while True:
            # accept等待客户端连接
            new_socket, ip_port = self.server_socket.accept()
            print("客户端ip和端口", ip_port)
            # 一个客户端的请求交给一个线程来处理
            sub_thread = threading.Thread(target=MyHttpWebServer.handle_browser_request, args=(new_socket, ))
            # 设置当前线程为守护线程
            sub_thread.setDaemon(True)
            sub_thread.start()  # 启动子线程


# Web 服务器程序的入口
def main():
    web_server = MyHttpWebServer(8080)
    web_server.start()


if __name__ == '__main__':
    main()

2.开发Web框架主体程序

1、根据请求路径,动态的响应对应的数据

# -*- coding: utf-8 -*-
# @File  : MyFramework.py
# @author: Flyme awei 
# @email : 1071505897@qq.com
# @Time  : 2022/7/25 14:05

import time

# 自定义Web框架


# 处理动态资源请求的函数
def handle_request(parm):
    request_path = parm['request_path']

    if request_path == '/index.html':  # 当前请求路径有与之对应的动态响应,当前框架只开发了 index.html的功能
        response = index()
        return response
    else:
        # 没有动态资源的数据,返回404页面
        return page_not_found()


# 当前 index函数,专门处理index.html的请求
def index():
    # 需求,在页面中动态显示当前系统时间
    data = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())
    response_body = data
    response_first_line = 'HTTP/1.1 200 OK\r\n'
    response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \
                      'Content-Type: text/html; charset=utf-8\r\n' + \
                      'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \
                      'Server: Flyme awei Server\r\n'
    response = (response_first_line + response_header + '\r\n' + response_body).encode('utf-8')
    return response


def page_not_found():
    with open('static/404.html', 'rb') as f:
        response_body = f.read()  # 响应的主体页面内容
    # 响应头
    response_first_line = 'HTTP/1.1 404 Not Found\r\n'
    response_header = 'Content-Length:' + str(len(response_body)) + '\r\n' + \
                      'Content-Type: text/html; charset=utf-8\r\n' + \
                      'Date:' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + '\r\n' + \
                      'Server: Flyme awei Server\r\n'

    response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body
    return response

2、如果请求路径,没有对应的响应数据也需要返回404页面

使用Python开发自定义Web框架的步骤和方法

3.使用模板来展示响应内容

1、自己设计一个模板 index.html ,中有一些地方采用动态的数据来替代




    
    
    
    首页 - 电影列表
    
    
    




        
        
                
                        
                        
                        
                 
                 电影列表
        
                                                  电影信息                         
  • 个人中心
  •                          
            
                                                   序号                     名称                     导演                     上映时间                     票房                     电影时长                     类型                     备注                     删除电影                          {%datas%}              

    2、怎么替代,替代什么数据

    response_body = response_body.replace('{%datas%}', data)

    使用Python开发自定义Web框架的步骤和方法

    4.开发框架的路由列表功能

    1、以后开发新的动作资源的功能,只需要:

    a、增加一个条件判断分支

    b、增加一个专门处理的函数

    2、路由: 就是请求的URL路径和处理函数直接的映射。

    3、路由表

    请求路径处理函数
    /index.htmlindex函数
    /user_info.htmluser_info函数
    # 定义路由表
    route_list = {
        ('/index.html', index),
        ('/user_info.html', user_info)
    }
    
    
    for path, func in route_list:
        if request_path == path:
            return func()
        else:
            # 没有动态资源的数据,返回404页面
            return page_not_found()

    注意:用户的动态资源请求,通过遍历路由表找到对应的处理函数来完成的。

    5.采用装饰器的方式添加路由

    1、采用带参数的装饰器

    # -*- coding: utf-8 -*-
    # @File  : My_Web_Server.py
    # @author: Flyme awei 
    # @email : 1071505897@qq.com
    # @Time  : 2022/7/24 21:28
    
    
    # 定义路由表
    route_list = []
    # route_list = {
    # ('/index.html', index),
    # ('/user_info.html', user_info)
    # }
    
    
    # 定义一个带参数的装饰器
    def route(request_path):  # 参数就是URL请求
        def add_route(func):
            # 添加路由表
            route_list.append((request_path, func))
    
            @wraps(func)
            def invoke(*args, **kwargs):
                # 调用指定的处理函数,并返回结果
                return func()
            return invoke
        return add_route
    
    
    # 处理动态资源请求的函数
    def handle_request(parm):
        request_path = parm['request_path']
    
        # if request_path == '/index.html':  # 当前请求路径有与之对应的动态响应,当前框架只开发了 index.html的功能
        #     response = index()
        #     return response
        # elif request_path == '/user_info.html':  # 个人中心的功能
        #     return user_info()
        # else:
        #     # 没有动态资源的数据,返回404页面
        #     return page_not_found()
        for path, func in route_list:
            if request_path == path:
                return func()
            else:
                # 没有动态资源的数据,返回404页面
                return page_not_found()

    2、在任何一个处理函数的基础上增加一个添加路由的功能

    @route('/user_info.html')

    小结:使用带参数的装饰器,可以把我们的路由自动的,添加到路由表中。

    6.电影列表页面的开发案例

    使用Python开发自定义Web框架的步骤和方法

    1、查询数据

    my_web.py

    # -*- coding: utf-8 -*-
    # @File  : My_Web_Server.py
    # @author: Flyme awei 
    # @email : 1071505897@qq.com
    # @Time  : 2022/7/24 21:28
    
    
    import socket
    import sys
    import threading
    import time
    import MyFramework
    
    
    # 开发自己的Web服务器主类
    class MyHttpWebServer(object):
    
        def __init__(self, port):
            # 创建HTTP服务器的套接字
            server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
            # 设置端口号复用,程序退出之后不需要等待几分钟,直接释放端口
            server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, True)
            server_socket.bind(('', port))
            server_socket.listen(128)
            self.server_socket = server_socket
    
        # 处理浏览器请求的函数
        @staticmethod
        def handle_browser_request(new_socket):
            # 接受客户端发送过来的数据
            recv_data = new_socket.recv(4096)
            # 如果没有收到数据,那么请求无效,关闭套接字,直接退出
            if len(recv_data) == 0:
                new_socket.close()
                return
    
            # 对接受的字节数据,转换成字符
            request_data = recv_data.decode('utf-8')
            print("浏览器请求的数据:", request_data)
            request_array = request_data.split(' ', maxsplit=2)
            # 得到请求路径
            request_path = request_array[1]
            print('请求路径是:', request_path)
    
            if request_path == '/':  # 如果请求路径为跟目录,自动设置为/index.html
                request_path = '/index.html'
    
            # 根据请求路径来判断是否是动态资源还是静态资源
            if request_path.endswith('.html'):
                '''动态资源的请求'''
                # 动态资源的处理交给Web框架来处理,需要把请求参数传给Web框架,可能会有多个参数,所有采用字典机构
                params = {
                    'request_path': request_path,
                }
                # Web框架处理动态资源请求之后,返回一个响应
                response = MyFramework.handle_request(params)
                new_socket.send(response)
                new_socket.close()
    
    
            else:
                '''静态资源的请求'''
                response_body = None  # 响应主体
                response_header = None  # 响应头
                response_first_line = None  # 响应头的第一行
                # 其实就是:根据请求路径读取/static目录中静态的文件数据,响应给客户端
                try:
                    # 读取static目录中对应的文件数据,rb模式:是一种兼容模式,可以打开图片,也可以打开js
                    with open('static' + request_path, 'rb') as f:
                        response_body = f.read()
                    if request_path.endswith('.jpg'):
                        response_type = 'image/webp'
                    response_first_line = 'HTTP/1.1 200 OK'
                    response_header = 'Server: Laoxiao_Server\r\n'
    
                except Exception as e:  # 浏览器想读取的文件可能不存在
                    with open('static/404.html', 'rb') as f:
                        response_body = f.read()  # 响应的主体页面内容(字节)
                    # 响应头 (字符数据)
                    response_first_line = 'HTTP/1.1 404 Not Found\r\n'
                    response_header = 'Server: Laoxiao_Server\r\n'
                finally:
                    # 组成响应数据,发送给客户端(浏览器)
                    response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body
                    new_socket.send(response)
                    new_socket.close()  # 关闭套接字
    
        # 启动服务器,并且接受客户端的请求
        def start(self):
            # 循环并且多线程来接受客户端的请求
            while True:
                new_socket, ip_port = self.server_socket.accept()
                print("客户端的ip和端口", ip_port)
                # 一个客户端请求交给一个线程来处理
                sub_thread = threading.Thread(target=MyHttpWebServer.handle_browser_request, args=(new_socket,))
                sub_thread.setDaemon(True)  # 设置当前线程为守护线程
                sub_thread.start()  # 子线程要启动
    
    
    # web服务器程序的入口
    def main():
        web_server = MyHttpWebServer(8080)
        web_server.start()
    
    
    if __name__ == '__main__':
        main()

    MyFramework.py

    # -*- coding: utf-8 -*-
    # @File  : My_Web_Server.py
    # @author: Flyme awei 
    # @email : 1071505897@qq.com
    # @Time  : 2022/7/24 21:28
    
    
    import time
    from functools import wraps
    import pymysql
    
    # 定义路由表
    route_list = []
    
    
    # route_list = {
    #     # ('/index.html',index),
    #     # ('/userinfo.html',user_info)
    # }
    
    # 定义一个带参数装饰器
    def route(request_path):  # 参数就是URL请求
        def add_route(func):
            # 添加路由到路由表
            route_list.append((request_path, func))
    
            @wraps(func)
            def invoke(*arg, **kwargs):
                # 调用我们指定的处理函数,并且返回结果
                return func()
    
            return invoke
    
        return add_route
    
    
    # 处理动态资源请求的函数
    def handle_request(params):
        request_path = params['request_path']
    
        for path, func in route_list:
            if request_path == path:
                return func()
        else:
            # 没有动态资源的数据,返回404页面
            return page_not_found()
        # if request_path =='/index.html': # 当前的请求路径有与之对应的动态响应,当前框架,我只开发了index.html的功能
        #     response = index()
        #     return response
        #
        # elif request_path =='/userinfo.html': # 个人中心的功能,user_info.html
        #     return user_info()
        # else:
        #     # 没有动态资源的数据,返回404页面
        #     return page_not_found()
    
    
    # 当前user_info函数,专门处理userinfo.html的动态请求
    @route('/userinfo.html')
    def user_info():
        # 需求:在页面中动态显示当前系统时间
        date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())
        # response_body =data
    
        with open('template/user_info.html', 'r', encoding='utf-8') as f:
            response_body = f.read()
    
        response_body = response_body.replace('{%datas%}', date)
    
        response_first_line = 'HTTP/1.1 200 OK\r\n'
        response_header = 'Server: Laoxiao_Server\r\n'
    
        response = (response_first_line + response_header + '\r\n' + response_body).encode('utf-8')
        return response
    
    
    # 当前index函数,专门处理index.html的请求
    @route('/index.html')
    def index():
        # 需求:从数据库中取得所有的电影数据,并且动态展示
        # date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())
        # response_body =data
        # 1、从MySQL中查询数据
        conn = pymysql.connect(host='localhost', port=3306, user='root', password='******', database='test', charset='utf8')
        cursor = conn.cursor()
        cursor.execute('select * from t_movies')
        result = cursor.fetchall()
        # print(result)
    
        datas = ""
        for row in result:
            datas += '''
                    %s
                    %s
                    %s
                    %s
                    %s 亿人民币
                    %s
                    %s
                    %s
                      
                    
                    ''' % row
        print(datas)
    
        # 把查询的数据,转换成动态内容
        with open('template/index.html', 'r', encoding='utf-8') as f:
            response_body = f.read()
    
        response_body = response_body.replace('{%datas%}', datas)
    
        response_first_line = 'HTTP/1.1 200 OK\r\n'
        response_header = 'Server: Laoxiao_Server\r\n'
    
        response = (response_first_line + response_header + '\r\n' + response_body).encode('utf-8')
        return response
    
    
    # 处理没有找到对应的动态资源
    def page_not_found():
        with open('static/404.html', 'rb') as f:
            response_body = f.read()  # 响应的主体页面内容(字节)
        # 响应头 (字符数据)
        response_first_line = 'HTTP/1.1 404 Not Found\r\n'
        response_header = 'Server: Laoxiao_Server\r\n'
        response = (response_first_line + response_header + '\r\n').encode('utf-8') + response_body
        return response

    2、根据查询的数据得到动态的内容

    使用Python开发自定义Web框架的步骤和方法

    本文内容来源于互联网,如有侵权请联系删除。
    作者最新文章
    编程开发 Python
    相关文章 更多
    C++动态数组初始化怎么写?常用语句与代码示例
    C++动态数组初始化怎么写?常用语句与代码示例

    深入解析C++中动态数组的初始化机制,涵盖new操作符的不同用法、基本类型与类对象的初始化差异,以及为何在现代C++开发中应优先使用std::vector。

    Python安装后怎么打开:使用IDLE或命令行启动解释器
    Python安装后怎么打开:使用IDLE或命令行启动解释器

    刚在Windows安装好Python却不知道如何启动?本文详细演示如何通过开始菜单找到并打开IDLE集成开发环境,以及如何在PowerShell或命令提示符中使用python和py命令启动交互式解释器、运行.py脚本文件。包含退出解释器的方法及常见启动问题排查,帮助初学者快速验证安装成功并开始编写代码。

    Windows系统Python安装教程:下载、勾选PATH及环境变量配置
    Windows系统Python安装教程:下载、勾选PATH及环境变量配置

    针对Windows初学者的Python安装实战指南。详细讲解如何从Python官网下载匹配架构的安装包,重点演示安装首屏勾选“Add python.exe to PATH”的关键操作,并提供使用python --version和py命令验证环境变量的具体步骤,帮助新手快速搭建开发环境并排查路径问题。

    Mapbox GL JS 3.18.1 发布,WEB GIS 开发框架
    Mapbox GL JS 3.18.1 发布,WEB GIS 开发框架

    MapboxGLJS3.18.1上线,新增clip图层visibility属性,优化raster-color小数值区间色彩插值精度。修复颜色插值异常、未设置icon-size导致图标渲染异常,以及符号图层与抬升型栅格图层共存时符号消失的问题。

    麒麟OS如何查看Python进程的运行状态
    麒麟OS如何查看Python进程的运行状态

    要想确认麒麟OS中Python程序的运行状态以及资源占用情况,我们可以这样做:用ps -ef | grep python来筛选进程;通过top命令,按P键排序查看实时负载;使用pgrep -f "script.py"精准获取PID;借助lsof -p PID验证文件打开状态。另外,还可以结合syst

    Python在Debian上如何配置SSL证书
    Python在Debian上如何配置SSL证书

    在Debian系统上配置SSL证书通常涉及以下几个步骤:安装Web服务器:首先,你需要一个Web服务器,比如Apache或Nginx。这里以Apache为例。sudo apt updatesudo apt install apache2获取SSL证书:你可以从Let’s Encrypt免费获取SSL

    统信UOS怎么安装Python开发环境
    统信UOS怎么安装Python开发环境

    要想让Python项目在统信UOS上正常运行,得先安装python3、python3-pip、python3-venv、python3-dev以及build-essential等组件。具体操作就是执行sudo apt install命令来一步到位完成安装,同时别忘了配置清华镜像源来给pip加速哦。在

    纯Python方案实现中英文全文搜索
    纯Python方案实现中英文全文搜索

    在互联网上的各类网站中,无论大小,基本上都会有一个搜索框,用来给用户对内容进行搜索,小到站点搜索,大到搜索引擎搜索。从简单的来说,搜索功能确实很简单,一个简单的select语句就可以实现数据的搜索。而从复杂的来看,无论是搜索的精度还是搜索的效率,都是有很深的研究范围的。对于简单的搜索功能来说,一个s

    Mac如何取消通过Python脚本运行的关机程序
    Mac如何取消通过Python脚本运行的关机程序

    立即在终端输入sudo shutdown -c取消倒计时关机,成功后显示“Shutdown cancelled”;若存在pmset重复任务,需再执行sudo pmset repeat cancel清除。Mac因Python脚本执行了os.system("sudo shutdown -h +10")或

    Pythonasyncio异步并发与多固定出口IP调度实战
    Pythonasyncio异步并发与多固定出口IP调度实战

    之前写过一篇同步场景下用 Python 管理多个固定出口 IP 的实践(ExitPool + requests/httpx),覆盖了健康检查、故障转移和连接池复用。但在实际业务中,越来越多的场景用 asyncio 做高并发采集或批量接口调用——异步事件循环下多出口的管理方式和同步场景完全不同:单线程

    查看更多
    精品专题 更多
    装机必备
    装机必备

    正软商城装机必备专区,精选办公、浏览器、安全防护、影音播放、压缩解压、设计创作和系统工具等电脑常用正版软件,帮助用户快速完成新电脑软件配置。

    Windows
    Windows

    正软商城Windows软件专区,汇集适用于Windows电脑的办公、设计、安全防护、影音播放、开发工具和系统优化软件,提供软件介绍、系统要求、正版授权及购买下载服务。

    macOS软件
    macOS软件

    正软商城macOS软件专区,精选适用于Mac电脑的办公、设计、影音、效率、开发和系统工具,提供软件功能介绍、macOS兼容版本、正版授权及购买下载服务。

    Mac软件 更多
    灵活计算器
    灵活计算器
    macOS/iOS/Android

    灵活计算器是一款笔记式算数应用,支持实时计算、动态关联和云端同步功能。记录、整理和输出之间的过渡会更自然,适合长期写作、做笔记或持续沉淀个人内容。

    赤友清理大师
    赤友清理大师
    macOS

    赤友清理大师是一款为 Mac 设计的智能清理优化工具,可精准扫描垃圾、大文件、重复文件等,释放磁盘空间。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。

    极度公式
    极度公式
    Windows/macOS/Linux

    极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。

    WINDOWS 更多
    Windows 10
    Windows 10
    Windows

    Windows 10 是一款微软推出的经典操作系统,拥有硬件兼容性与多任务处理能力。它更偏向把系统状态查看和常用调节动作放在一起,适合需要持续观察和微调设备状态的场景。

    极度公式
    极度公式
    Windows/macOS/Linux

    极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。

    密码键盘
    密码键盘
    Windows/macOS/iOS/Android

    密码键盘是一款兼具安全性与便捷性的高效密码管理器。日常使用里的持续防护和信息管理会更突出,适合把安全控制放进长期使用流程中的场景。