摘要: 安装依赖 pip install python-docx 写入文档函数 def write_to_docx(text, docx_path): os.makedirs(os.path.dirname(docx_path), exist_ok=True) # 创建一个新的Document对象 docu 阅读全文
posted @ 2024-12-28 11:46 二月雪 阅读(31) 评论(0) 推荐(0)
摘要: 安装依赖 pip install mysql-connector-python 自定义公共管理类 import mysql.connector from mysql.connector import Error class MySQLDatabase: def __init__(self, host 阅读全文
posted @ 2024-12-28 10:00 二月雪 阅读(70) 评论(0) 推荐(0)