上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 205 下一页
摘要: 一,报错信息: ERROR [flask_migrate] Error: Target database is not up to date. 二,原因: heads和current不一致 $ flask db heads 81c8f6bda7e0 (head) $ flask db current 阅读全文
posted @ 2025-12-01 12:44 刘宏缔的架构森林 阅读(51) 评论(0) 推荐(0)
摘要: 一,代码: print("接收到的参数:") all_data = request.values.to_dict() print(all_data) print("接收到的参数1:") form_data = request.form.to_dict() print(form_data) 二,测试效 阅读全文
posted @ 2025-11-26 15:19 刘宏缔的架构森林 阅读(23) 评论(0) 推荐(0)
摘要: 一,创建脚本: $ flask db migrate -m "测试subjects表" 输出信息中显示了migrate脚本的位置 NFO [alembic.autogenerate.compare] Detected added table 'subjects' INFO [alembic.auto 阅读全文
posted @ 2025-11-26 12:56 刘宏缔的架构森林 阅读(20) 评论(0) 推荐(0)
摘要: 一,单个字段创建主键索引 id = db.Column(db.Integer, primary_key=True, autoincrement=True) 二,单个字段创建唯一索引 serial_no = db.Column(db.String(20), unique=True, nullable= 阅读全文
posted @ 2025-11-26 10:05 刘宏缔的架构森林 阅读(12) 评论(0) 推荐(0)
摘要: 一,代码: from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from 阅读全文
posted @ 2025-11-24 19:00 刘宏缔的架构森林 阅读(20) 评论(0) 推荐(0)
摘要: 一,代码: from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from 阅读全文
posted @ 2025-11-24 18:22 刘宏缔的架构森林 阅读(68) 评论(0) 推荐(0)
摘要: 一,代码: import base64 from ddddocr import DdddOcr import numpy as np from PIL import Image import io from PIL import Image, ImageFilter from io import B 阅读全文
posted @ 2025-11-24 15:07 刘宏缔的架构森林 阅读(97) 评论(0) 推荐(0)
摘要: 一,安装用到的库: linux # apt install python3-tk python3-dev # apt-get install xclip # apt-get install xselect # apt-get install wl-clipboard pip $ pip instal 阅读全文
posted @ 2025-11-24 13:45 刘宏缔的架构森林 阅读(29) 评论(0) 推荐(0)
摘要: 一,安装所需的linux库 # apt install python3-tk python3-dev 二,安装pyautogui $ pip install pyautogui 阅读全文
posted @ 2025-11-24 13:04 刘宏缔的架构森林 阅读(9) 评论(0) 推荐(0)
摘要: 一,代码: from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from 阅读全文
posted @ 2025-11-24 11:55 刘宏缔的架构森林 阅读(38) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 205 下一页