摘要: 安装依赖库mysql-connector-python pip install mysql-connector-python 执行创建数据库的sql脚本代码 import mysql.connector from mysql.connector import Error def create_dat 阅读全文
posted @ 2024-12-03 09:21 二月雪 阅读(7) 评论(0) 推荐(0) 编辑
摘要: import os import shutil def copy_file(src_file, dst_file): # 如果是文件,进行复制 if os.path.isfile(src_file): _dir = os.path.dirname(dst_file) os.makedirs(_dir 阅读全文
posted @ 2024-12-02 14:19 二月雪 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 不用启动运行django项目直接获取django项目的所有mode名称 1、cd到django项目的根目录下 2、终端输入python命令获取django的所有model名称 # 获取django的所有model的指令 python manage.py shell -c "from django.a 阅读全文
posted @ 2024-11-30 10:52 二月雪 阅读(2) 评论(0) 推荐(0) 编辑
摘要: pip install openpyxl import openpyxl def code_main(): xlsx_file_name = r'D:\ljh\work_info\test.xlsx' # excel文件路径 xlsx_data = openpyxl.load_workbook(xl 阅读全文
posted @ 2024-11-25 14:25 二月雪 阅读(42) 评论(0) 推荐(0) 编辑
摘要: # 递归检测文件文件是否存在,存在则重命名文件 def check_file_exists(check_file, original_file=None, num=1): if os.path.exists(check_file): original_file = original_file if 阅读全文
posted @ 2024-11-22 17:32 二月雪 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 压缩 1、自定义公共函数zip_files_and_dirs import os import zipfile # 递归检测文件文件是否存在,存在则重命名文件 def check_file_exists(check_file, original_file=None, num=1): if os.pa 阅读全文
posted @ 2024-11-22 16:38 二月雪 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 共享服务器-配置电脑网络 1、右键网络,选择属性 2、更改高级共享设置 3、专用网络设置 4、公用网络设置 5、所有网络设置 共享服务器-创建共享文件夹 1、创建共享文件夹(可自定义文件夹名称) 2、右键文件夹属性 3、文件属性-共享 4、添加everyone共享用户,选择"读写"权限 5、文件属性 阅读全文
posted @ 2024-11-21 09:42 二月雪 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 自定义数据分页 def paginate_data(data_list, size_page, current_page): """ 数据分页函数 :param data_list: list, 数据列表 :param size_page: int, 每页的数量 :param current_pag 阅读全文
posted @ 2024-11-20 14:26 二月雪 阅读(5) 评论(0) 推荐(0) 编辑
摘要: from reportlab.lib.pagesizes import letter from reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph from reportlab.lib import co 阅读全文
posted @ 2024-11-19 17:50 二月雪 阅读(6) 评论(0) 推荐(0) 编辑